@tencent-ai/agent-sdk 0.1.15 → 0.1.16
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/cli/CHANGELOG.md +26 -0
- package/cli/dist/codebuddy.js +3 -3
- package/cli/package.json +1 -1
- package/cli/product.cloudhosted.json +2 -2
- package/cli/product.internal.json +2 -2
- package/cli/product.ioa.json +2 -2
- package/cli/product.json +11 -5
- package/cli/product.selfhosted.json +2 -2
- package/package.json +1 -1
package/cli/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tencent-ai/codebuddy-code",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.30.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",
|
|
@@ -297,6 +297,6 @@
|
|
|
297
297
|
"BillingNotice": false,
|
|
298
298
|
"CustomModelsJSON": true
|
|
299
299
|
},
|
|
300
|
-
"commit": "
|
|
301
|
-
"date": "2026-01-
|
|
300
|
+
"commit": "5cc98bc04f26af9f4148e3afd75fe18a932da945",
|
|
301
|
+
"date": "2026-01-07T15:31:05.139Z"
|
|
302
302
|
}
|
|
@@ -299,6 +299,6 @@
|
|
|
299
299
|
"BillingNotice": false,
|
|
300
300
|
"CustomModelsJSON": true
|
|
301
301
|
},
|
|
302
|
-
"commit": "
|
|
303
|
-
"date": "2026-01-
|
|
302
|
+
"commit": "5cc98bc04f26af9f4148e3afd75fe18a932da945",
|
|
303
|
+
"date": "2026-01-07T15:31:02.409Z"
|
|
304
304
|
}
|
package/cli/product.ioa.json
CHANGED
|
@@ -506,6 +506,6 @@
|
|
|
506
506
|
"BillingNotice": false,
|
|
507
507
|
"CustomModelsJSON": true
|
|
508
508
|
},
|
|
509
|
-
"commit": "
|
|
510
|
-
"date": "2026-01-
|
|
509
|
+
"commit": "5cc98bc04f26af9f4148e3afd75fe18a932da945",
|
|
510
|
+
"date": "2026-01-07T15:31:03.774Z"
|
|
511
511
|
}
|
package/cli/product.json
CHANGED
|
@@ -409,11 +409,11 @@
|
|
|
409
409
|
},
|
|
410
410
|
{
|
|
411
411
|
"name": "tool-glob-description",
|
|
412
|
-
"template": "- Fast file pattern matching tool that works with any codebase size\n- Supports glob patterns like \"**/*.js\" or \"src/**/*.ts\"\n- Returns matching file paths sorted by modification time\n- Use this tool when you need to find files by name patterns\n- When you are doing an open ended search that may require multiple rounds of globbing and grepping, use the Agent tool instead\n- You can call multiple tools in a single response. It is always better to speculatively perform multiple searches in parallel if they are potentially useful.\n"
|
|
412
|
+
"template": "- Fast file pattern matching tool that works with any codebase size\n- Supports glob patterns like \"**/*.js\" or \"src/**/*.ts\"\n- Returns matching file paths sorted by modification time\n- Supports pagination with `limit` (max results, default 100) and `offset` (skip N results, default 0) parameters\n- Use this tool when you need to find files by name patterns\n- When you are doing an open ended search that may require multiple rounds of globbing and grepping, use the Agent tool instead\n- You can call multiple tools in a single response. It is always better to speculatively perform multiple searches in parallel if they are potentially useful.\n"
|
|
413
413
|
},
|
|
414
414
|
{
|
|
415
415
|
"name": "tool-grep-description",
|
|
416
|
-
"template": "A powerful search tool built on ripgrep\n\n Usage:\n - ALWAYS use Grep for search tasks. NEVER invoke `grep` or `rg` as a Bash command. The Grep tool has been optimized for correct permissions and access.\n - Supports full regex syntax (e.g., \"log.*Error\", \"function\\\\s+\\\\w+\")\n - Filter files with glob parameter (e.g., \"*.js\", \"**/*.tsx\") or type parameter (e.g., \"js\", \"py\", \"rust\")\n - Output modes: \"content\" shows matching lines, \"files_with_matches\" shows only file paths (default), \"count\" shows match counts\n - Use Task tool for open-ended searches requiring multiple rounds\n - Pattern syntax: Uses ripgrep (not grep) - literal braces need escaping (use `interface\\\\{\\\\}` to find `interface{}` in Go code)\n - Multiline matching: By default patterns match within single lines only. For cross-line patterns like `struct \\\\{[\\\\s\\\\S]*?field`, use `multiline: true`\n"
|
|
416
|
+
"template": "A powerful search tool built on ripgrep\n\n Usage:\n - ALWAYS use Grep for search tasks. NEVER invoke `grep` or `rg` as a Bash command. The Grep tool has been optimized for correct permissions and access.\n - Supports full regex syntax (e.g., \"log.*Error\", \"function\\\\s+\\\\w+\")\n - Filter files with glob parameter (e.g., \"*.js\", \"**/*.tsx\") or type parameter (e.g., \"js\", \"py\", \"rust\")\n - Output modes: \"content\" shows matching lines, \"files_with_matches\" shows only file paths (default), \"count\" shows match counts\n - Pagination support: Use `head_limit` to limit output (default unlimited) and `offset` to skip first N results (default 0)\n - Use Task tool for open-ended searches requiring multiple rounds\n - Pattern syntax: Uses ripgrep (not grep) - literal braces need escaping (use `interface\\\\{\\\\}` to find `interface{}` in Go code)\n - Multiline matching: By default patterns match within single lines only. For cross-line patterns like `struct \\\\{[\\\\s\\\\S]*?field`, use `multiline: true`\n"
|
|
417
417
|
},
|
|
418
418
|
{
|
|
419
419
|
"name": "tool-ls-description",
|
|
@@ -858,7 +858,7 @@
|
|
|
858
858
|
"Task": true,
|
|
859
859
|
"EnhancedCompletionRequest": false,
|
|
860
860
|
"ReportAfterCancel": false,
|
|
861
|
-
"RequestBodyGzip":
|
|
861
|
+
"RequestBodyGzip": true,
|
|
862
862
|
"StandaloneTerminal": true,
|
|
863
863
|
"DisablePlugin": true,
|
|
864
864
|
"Skills": true,
|
|
@@ -896,6 +896,12 @@
|
|
|
896
896
|
"plan",
|
|
897
897
|
"code-explorer"
|
|
898
898
|
],
|
|
899
|
+
"builtInMarketplaces": {
|
|
900
|
+
"codebuddy-plugins-official": {
|
|
901
|
+
"source": "git",
|
|
902
|
+
"url": "https://cnb.cool/codebuddy/marketplace"
|
|
903
|
+
}
|
|
904
|
+
},
|
|
899
905
|
"deploymentType": "SaaS",
|
|
900
906
|
"outputStyles": [
|
|
901
907
|
{
|
|
@@ -1006,6 +1012,6 @@
|
|
|
1006
1012
|
"description": "tool-lsp-description"
|
|
1007
1013
|
}
|
|
1008
1014
|
],
|
|
1009
|
-
"commit": "
|
|
1010
|
-
"date": "2026-01-
|
|
1015
|
+
"commit": "5cc98bc04f26af9f4148e3afd75fe18a932da945",
|
|
1016
|
+
"date": "2026-01-07T15:31:01.027Z"
|
|
1011
1017
|
}
|
|
@@ -198,6 +198,6 @@
|
|
|
198
198
|
"BillingNotice": false,
|
|
199
199
|
"CustomModelsJSON": true
|
|
200
200
|
},
|
|
201
|
-
"commit": "
|
|
202
|
-
"date": "2026-01-
|
|
201
|
+
"commit": "5cc98bc04f26af9f4148e3afd75fe18a932da945",
|
|
202
|
+
"date": "2026-01-07T15:31:06.517Z"
|
|
203
203
|
}
|