@tencent-ai/codebuddy-code 1.12.0 → 1.14.0-next.bb57cef.20251017

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tencent-ai/codebuddy-code",
3
- "version": "1.12.0",
3
+ "version": "1.14.0-next.bb57cef.20251017",
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",
@@ -30,7 +30,8 @@
30
30
  "url": "https://cnb.cool/codebuddy/codebuddy-code/-/issues"
31
31
  },
32
32
  "publishConfig": {
33
- "access": "public"
33
+ "access": "public",
34
+ "tag": "next"
34
35
  },
35
36
  "scripts": {},
36
37
  "devDependencies": {}
@@ -156,6 +156,6 @@
156
156
  "productFeatures": {
157
157
  "BillingNotice": false
158
158
  },
159
- "commit": "89fbe616fdec4c4a834f849dfe92000d11736c5b",
160
- "date": "2025-10-14T09:39:28.083Z"
159
+ "commit": "bb57cef9419ef2c3598789e96e1fd21cc458904b",
160
+ "date": "2025-10-16T16:05:28.106Z"
161
161
  }
package/product.ioa.json CHANGED
@@ -287,6 +287,6 @@
287
287
  "productFeatures": {
288
288
  "BillingNotice": false
289
289
  },
290
- "commit": "89fbe616fdec4c4a834f849dfe92000d11736c5b",
291
- "date": "2025-10-14T09:39:29.323Z"
290
+ "commit": "bb57cef9419ef2c3598789e96e1fd21cc458904b",
291
+ "date": "2025-10-16T16:05:29.350Z"
292
292
  }
package/product.json CHANGED
@@ -10,6 +10,12 @@
10
10
  "platform": "CLI",
11
11
  "endpoint": "https://www.codebuddy.ai",
12
12
  "stagingEndpoint": "https://staging-codebuddy.tencent.com",
13
+ "officialEndpoints": [
14
+ "https://copilot.tencent.com",
15
+ "https://staging-copilot.tencent.com",
16
+ "https://www.codebuddy.ai",
17
+ "https://staging-codebuddy.tencent.com"
18
+ ],
13
19
  "authentication": {
14
20
  "id": "Tencent-Cloud.coding-copilot",
15
21
  "type": "cli-external-link",
@@ -25,9 +31,17 @@
25
31
  "copilot.tencent.com",
26
32
  "staging-copilot.tencent.com"
27
33
  ],
34
+ "externalDomain": [
35
+ "www.codebuddy.ai",
36
+ "staging-codebuddy.tencent.com"
37
+ ],
28
38
  "iOADomain": [
29
39
  "tencent.sso.copilot.tencent.com",
30
40
  "tencent.sso.copilot-staging.tencent.com"
41
+ ],
42
+ "cloudHostedDomain": [
43
+ "*.sso.copilot.tencent.com",
44
+ "*.sso.copilot-staging.tencent.com"
31
45
  ]
32
46
  }
33
47
  },
@@ -208,7 +222,7 @@
208
222
  },
209
223
  {
210
224
  "name": "init-prompt",
211
- "template": "Please analyze this codebase and create a CODEBUDDY.md file, which will be given to future instances of Terminal Assistant Agent to operate in this repository.\n \nWhat to add:\n1. Commands that will be commonly used, such as how to build, lint, and run tests. Include the necessary commands to develop in this codebase, such as how to run a single test.\n2. High-level code architecture and structure so that future instances can be productive more quickly. Focus on the \"big picture\" architecture that requires reading multiple files to understand\n\nUsage notes:\n- If there's already a CODEBUDDY.md, suggest improvements to it.\n- When you make the initial CODEBUDDY.md, do not repeat yourself and do not include obvious instructions like \"Provide helpful error messages to users\", \"Write unit tests for all new utilities\", \"Never include sensitive information (API keys, tokens) in code or commits\" \n- Avoid listing every component or file structure that can be easily discovered\n- Don't include generic development practices\n- If there are Claude Code rules (in ./CLAUDE.md) or Cursor rules (in .cursor/rules/ or .cursorrules) or Copilot rules (in .github/copilot-instructions.md) or ./AGENTS.md, make sure to include the important parts.\n- If there is a README.md, make sure to include the important parts. \n- Do not make up information such as \"Common Development Tasks\", \"Tips for Development\", \"Support and Documentation\" unless this is expressly included in other files that you read.\n- Be sure to prefix the file with the following text:\n```\n# CODEBUDDY.md This file provides guidance to CodeBuddy Code when working with code in this repository.\n```\n"
225
+ "template": "Please analyze this codebase and create a CODEBUDDY.md file, which will be given to future instances of Terminal Assistant Agent to operate in this repository.\n \nWhat to add:\n1. Commands that will be commonly used, such as how to build, lint, and run tests. Include the necessary commands to develop in this codebase, such as how to run a single test.\n2. High-level code architecture and structure so that future instances can be productive more quickly. Focus on the \"big picture\" architecture that requires reading multiple files to understand\n\nUsage notes:\n- First check if there's already an AGENTS.md file in the current directory. If it exists, DO NOT create a new CODEBUDDY.md file. Instead, suggest improvements to the existing AGENTS.md file.\n- If there's already a CODEBUDDY.md but no AGENTS.md, suggest improvements to the existing CODEBUDDY.md.\n- If there's already a AGENTS.md but no CODEBUDDY.md, suggest improvements to the existing AGENTS.md.\n- When creating a new file, create CODEBUDDY.md (not AGENTS.md) if neither exists.\n- When you make the initial file, do not repeat yourself and do not include obvious instructions like \"Provide helpful error messages to users\", \"Write unit tests for all new utilities\", \"Never include sensitive information (API keys, tokens) in code or commits\" \n- Avoid listing every component or file structure that can be easily discovered\n- Don't include generic development practices\n- If there are Claude Code rules (in ./CLAUDE.md) or Cursor rules (in .cursor/rules/ or .cursorrules) or Copilot rules (in .github/copilot-instructions.md) or ./AGENTS.md, make sure to include the important parts.\n- If there is a README.md, make sure to include the important parts. \n- Do not make up information such as \"Common Development Tasks\", \"Tips for Development\", \"Support and Documentation\" unless this is expressly included in other files that you read.\n- Be sure to prefix the file with the following text:\n```\n# CODEBUDDY.md This file provides guidance to CodeBuddy Code when working with code in this repository.\n```\n"
212
226
  },
213
227
  {
214
228
  "name": "compact-agent-prompt",
@@ -264,7 +278,7 @@
264
278
  },
265
279
  {
266
280
  "name": "tool-read-description",
267
- "template": "Reads a file from the local filesystem. You can access any file directly by using this tool.\nAssume this tool is able to read all files on the machine. If the User provides a path to a file assume that path is valid. It is okay to read a file that does not exist; an error will be returned.\n\nUsage:\n- The file_path parameter must be an absolute path, not a relative path\n- By default, it reads up to 2000 lines starting from the beginning of the file\n- You can optionally specify a line offset and limit (especially handy for long files), but it's recommended to read the whole file by not providing these parameters\n- Any lines longer than 2000 characters will be truncated\n- Results are returned using cat -n format, with line numbers starting at 1\n- This tool allows Terminal Assistant Agent to read images (eg PNG, JPG, etc). When reading an image file the contents are presented visually as Terminal Assistant Agent is a multimodal LLM.\n- This tool can read PDF files (.pdf). PDFs are processed page by page, extracting both text and visual content for analysis.\n- For Jupyter notebooks (.ipynb files), use the NotebookRead instead\n- You have the capability to call multiple tools in a single response. It is always better to speculatively read multiple files as a batch that are potentially useful.\n- You will regularly be asked to read screenshots. If the user provides a path to a screenshot ALWAYS use this tool to view the file at the path. This tool will work with all temporary file paths like /var/folders/123/abc/T/TemporaryItems/NSIRD_screencaptureui_ZfB1tD/Screenshot.png\n- If you read a file that exists but has empty contents you will receive a system reminder warning in place of file contents.\n"
281
+ "template": "Reads a file from the local filesystem. You can access any file directly by using this tool.\nAssume this tool is able to read all files on the machine. If the User provides a path to a file assume that path is valid. It is okay to read a file that does not exist; an error will be returned.\n\nUsage:\n- The file_path parameter must be an absolute path, not a relative path\n- By default, it reads up to 2000 lines starting from the beginning of the file\n- You can optionally specify a line offset and limit (especially handy for long files), but it's recommended to read the whole file by not providing these parameters\n- Any lines longer than 2000 characters will be truncated\n- Results are returned using cat -n format, with line numbers starting at 1\n- This tool allows Terminal Assistant Agent to read images (eg PNG, JPG, etc). When reading an image file the contents are presented visually as Terminal Assistant Agent is a multimodal LLM.\n- This tool can read PDF files (.pdf). PDFs are processed page by page, extracting both text and visual content for analysis.\n- This tool can read Jupyter notebooks (.ipynb files) and returns all cells with their outputs, combining code, text, and visualizations.\n- This tool can only read files, not directories. To read a directory, use an ls command via the Bash tool.\n- You have the capability to call multiple tools in a single response. It is always better to speculatively read multiple files as a batch that are potentially useful.\n- You will regularly be asked to read screenshots. If the user provides a path to a screenshot ALWAYS use this tool to view the file at the path. This tool will work with all temporary file paths like /var/folders/123/abc/T/TemporaryItems/NSIRD_screencaptureui_ZfB1tD/Screenshot.png\n- If you read a file that exists but has empty contents you will receive a system reminder warning in place of file contents.\n"
268
282
  },
269
283
  {
270
284
  "name": "tool-edit-description",
@@ -625,6 +639,6 @@
625
639
  "description": "tool-slashcommand-description"
626
640
  }
627
641
  ],
628
- "commit": "89fbe616fdec4c4a834f849dfe92000d11736c5b",
629
- "date": "2025-10-14T09:39:26.834Z"
642
+ "commit": "bb57cef9419ef2c3598789e96e1fd21cc458904b",
643
+ "date": "2025-10-16T16:05:26.873Z"
630
644
  }