Skip to content

Commit f227dae

Browse files
committed
Update 3.23.X
1 parent 379c670 commit f227dae

File tree

317 files changed

+7406
-4396
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+7406
-4396
lines changed

.env.sample

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ POSTHOG_API_KEY=key-goes-here
33
# Roo Code Cloud / Local Development
44
CLERK_BASE_URL=https://epic-chamois-85.clerk.accounts.dev
55
ROO_CODE_API_URL=http://localhost:3000
6+

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ contact_links:
44
url: https://github.com/RooCodeInc/Roo-Code/discussions/categories/feature-requests
55
about: Share and vote on feature requests for Roo Code
66
- name: Leave a Review
7-
url: https://marketplace.visualstudio.com/items?itemName=RooVeterinaryInc.roo-cline&ssr=false#review-details
7+
url: https://marketplace.visualstudio.com/items?itemName=modelharbor.modelharbor-agent&ssr=false#review-details
88
about: Enjoying Roo Code? Leave a review here!

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ node_modules
66
package-lock.json
77
coverage/
88
mock/
9-
9+
.upstream
1010
.DS_Store
1111

1212
# IDEs
@@ -46,3 +46,6 @@ logs
4646
.qodo/
4747
.vercel
4848
.roo/mcp.json
49+
50+
# YoYo AI version control directory
51+
.yoyo/

.vscode/settings.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
// Place your settings in this file to overwrite default and user settings.
22
{
33
"files.exclude": {
4-
"out": false, // set this to true to hide the "out" folder with the compiled JS files
5-
"dist": false // set this to true to hide the "dist" folder with the compiled JS files
4+
"**/.git": true,
5+
"**/.svn": true,
6+
"**/.hg": true,
7+
"**/.DS_Store": true,
8+
"**/Thumbs.db": true,
9+
"out": false,
10+
"dist": false,
11+
".yoyo": true
612
},
713
"search.exclude": {
814
"out": true, // set this to false to include "out" folder in search results

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2025 Roo Code, Inc.
189+
Copyright 2025 New Information Technology Co. Ltd..
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 57 additions & 216 deletions
Large diffs are not rendered by default.

apps/vscode-e2e/.vscode-test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ export default defineConfig({
1212
ui: "tdd",
1313
timeout: 60000,
1414
},
15-
launchArgs: ["--enable-proposed-api=RooVeterinaryInc.roo-cline", "--disable-extensions"],
15+
launchArgs: ["--enable-proposed-api=modelharbor.modelharbor-agent", "--disable-extensions"],
1616
})

apps/vscode-e2e/src/suite/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { RooCodeAPI } from "@roo-code/types"
88
import { waitFor } from "./utils"
99

1010
export async function run() {
11-
const extension = vscode.extensions.getExtension<RooCodeAPI>("RooVeterinaryInc.roo-cline")
11+
const extension = vscode.extensions.getExtension<RooCodeAPI>("modelharbor.modelharbor-agent")
1212

1313
if (!extension) {
1414
throw new Error("Extension not found")

apps/vscode-nightly/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roo-code/vscode-nightly",
3-
"description": "Nightly build for the Roo Code VSCode extension.",
3+
"description": "Nightly build for the ModelHarbor Agent VSCode extension.",
44
"private": true,
55
"packageManager": "[email protected]",
66
"scripts": {
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"extension.displayName": "Roo Code Nightly",
3-
"views.contextMenu.label": "Roo Code Nightly",
4-
"views.terminalMenu.label": "Roo Code Nightly",
5-
"views.activitybar.title": "Roo Code Nightly",
6-
"configuration.title": "Roo Code Nightly"
2+
"extension.displayName": "ModelHarbor Agent Nightly",
3+
"views.contextMenu.label": "ModelHarbor Agent Nightly",
4+
"views.terminalMenu.label": "ModelHarbor Agent Nightly",
5+
"views.activitybar.title": "ModelHarbor Agent Nightly",
6+
"configuration.title": "ModelHarbor Agent Nightly"
77
}

0 commit comments

Comments
 (0)