@tencent-ai/codebuddy-code 2.12.0 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist/codebuddy.js +6 -6
- package/lib/node/index.js +1 -0
- package/package.json +1 -1
- package/product.cloudhosted.json +2 -2
- package/product.internal.json +2 -2
- package/product.ioa.json +2 -2
- package/product.json +9 -2
- package/product.selfhosted.json +2 -2
package/lib/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tencent-ai/codebuddy-code",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.0",
|
|
4
4
|
"description": "Use CodeBuddy, Tencent's AI assistant, right from your terminal. CodeBuddy can understand your codebase, edit files, run terminal commands, and handle entire workflows for you.",
|
|
5
5
|
"main": "lib/node/index.js",
|
|
6
6
|
"typings": "lib/node/index.d.ts",
|
package/product.cloudhosted.json
CHANGED
|
@@ -227,6 +227,6 @@
|
|
|
227
227
|
"BillingNotice": false,
|
|
228
228
|
"CustomModelsJSON": true
|
|
229
229
|
},
|
|
230
|
-
"commit": "
|
|
231
|
-
"date": "2025-12-
|
|
230
|
+
"commit": "4950c32a486953584ef861a0e11692e663882275",
|
|
231
|
+
"date": "2025-12-04T15:29:19.799Z"
|
|
232
232
|
}
|
package/product.internal.json
CHANGED
|
@@ -229,6 +229,6 @@
|
|
|
229
229
|
"BillingNotice": false,
|
|
230
230
|
"CustomModelsJSON": true
|
|
231
231
|
},
|
|
232
|
-
"commit": "
|
|
233
|
-
"date": "2025-12-
|
|
232
|
+
"commit": "4950c32a486953584ef861a0e11692e663882275",
|
|
233
|
+
"date": "2025-12-04T15:29:17.500Z"
|
|
234
234
|
}
|
package/product.ioa.json
CHANGED
|
@@ -445,6 +445,6 @@
|
|
|
445
445
|
"BillingNotice": false,
|
|
446
446
|
"CustomModelsJSON": true
|
|
447
447
|
},
|
|
448
|
-
"commit": "
|
|
449
|
-
"date": "2025-12-
|
|
448
|
+
"commit": "4950c32a486953584ef861a0e11692e663882275",
|
|
449
|
+
"date": "2025-12-04T15:29:18.656Z"
|
|
450
450
|
}
|
package/product.json
CHANGED
|
@@ -774,6 +774,13 @@
|
|
|
774
774
|
"enabled": true
|
|
775
775
|
}
|
|
776
776
|
},
|
|
777
|
+
"builtInSubagents": [
|
|
778
|
+
{
|
|
779
|
+
"content": "---\nname: code-explorer\ndescription: Subagent used whenever the task requires searching across multiple files, directories, or patterns, or when the scope of code exploration is too large for a single read_file or search_file call. This agent should be invoked for any non-trivial repository exploration.\ntools: search_file, search_content, read_file, list_files, read_lints\nagentMode: agentic\nenabled: true\nenabledAutoRun: true\n---\nYou are a file search specialist for Agent. You excel at thoroughly navigating and exploring codebases.\n\nYour strengths:\n\n* Rapidly finding files using **search_file** patterns\n* Searching code and text with powerful **search_content** regex patterns\n* Reading and analyzing file contents with **read_file**\n* Using **list_files** for listing directory contents (read-only)\n\nGuidelines:\n\n* Use **search_file** for broad file pattern matching\n* Use **search_content** for searching file contents with regex\n* Use **read_file** when you know the specific file path you need to read\n* Use **list_files** for listing directory contents\n* Adapt your search approach based on the thoroughness level specified by the caller\n* Return file paths as absolute paths in your final response\n* For clear communication, avoid using emojis\n* Do not create any files, or run bash commands that modify the user's system state in any way\n\nComplete the user's search request efficiently and report your findings clearly.\n\nNote:By default, invoke tools in parallel, not sequentially. When unsure, lean toward more parallel calls to maximize efficiency.",
|
|
780
|
+
"systemPrompt": "<code-explorer_subagent_usage>\nYou have `Task` tool to invoke the code-explorer subagent.\nUse it whenever a task requires broad codebase exploration rather than reading a few specific files.\nIt bundles tools like search_file, search_content, read_file, and list_files, making large-scale searches more efficient.\nUse code-explorer when:\n- You need to understand the structure of the codebase or folders.\n- Identifying modules, packages, or subprojects.\n- Finding where a feature, concept, or behavior is implemented.\n- Gathering information spread across many files.\n- Forming a high-level view of how the project is organized.\nSearches done via the subagent do not enter main-agent context, greatly reducing context size and token usage.\n</code-explorer_subagent_usage>",
|
|
781
|
+
"toolPrompt": ""
|
|
782
|
+
}
|
|
783
|
+
],
|
|
777
784
|
"deploymentType": "SaaS",
|
|
778
785
|
"outputStyles": [
|
|
779
786
|
{
|
|
@@ -872,6 +879,6 @@
|
|
|
872
879
|
"description": "tool-ask-user-question-description"
|
|
873
880
|
}
|
|
874
881
|
],
|
|
875
|
-
"commit": "
|
|
876
|
-
"date": "2025-12-
|
|
882
|
+
"commit": "4950c32a486953584ef861a0e11692e663882275",
|
|
883
|
+
"date": "2025-12-04T15:29:16.361Z"
|
|
877
884
|
}
|
package/product.selfhosted.json
CHANGED
|
@@ -182,6 +182,6 @@
|
|
|
182
182
|
"BillingNotice": false,
|
|
183
183
|
"CustomModelsJSON": true
|
|
184
184
|
},
|
|
185
|
-
"commit": "
|
|
186
|
-
"date": "2025-12-
|
|
185
|
+
"commit": "4950c32a486953584ef861a0e11692e663882275",
|
|
186
|
+
"date": "2025-12-04T15:29:20.941Z"
|
|
187
187
|
}
|