@tencent-ai/codebuddy-code 1.15.0-next.d16baeb.20251019 → 1.16.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/lib/node/index.js CHANGED
@@ -34,4 +34,5 @@ export * from './doctor';
34
34
  export * from './resume';
35
35
  export * from './tips';
36
36
  export * from './debug';
37
+ export * from './sandbox';
37
38
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tencent-ai/codebuddy-code",
3
- "version": "1.15.0-next.d16baeb.20251019",
3
+ "version": "1.16.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",
@@ -22,16 +22,14 @@
22
22
  "vendor",
23
23
  "CHANGELOG.md",
24
24
  "product.json",
25
- "product.internal.json",
26
- "product.ioa.json"
25
+ "product.*.json"
27
26
  ],
28
27
  "homepage": "https://cnb.cool/codebuddy/codebuddy-code",
29
28
  "bugs": {
30
29
  "url": "https://cnb.cool/codebuddy/codebuddy-code/-/issues"
31
30
  },
32
31
  "publishConfig": {
33
- "access": "public",
34
- "tag": "next"
32
+ "access": "public"
35
33
  },
36
34
  "scripts": {},
37
35
  "devDependencies": {}
@@ -0,0 +1,161 @@
1
+ {
2
+ "endpoint": "https://copilot.tencent.com",
3
+ "stagingEndpoint": "https://staging-copilot.tencent.com",
4
+ "agents": [
5
+ {
6
+ "name": "cli",
7
+ "instructions": "cli-agent-prompt",
8
+ "description": "cli agent",
9
+ "models": [
10
+ "deepseek-v3.1",
11
+ "deepseek-v3-0324"
12
+ ],
13
+ "commands": [
14
+ "init",
15
+ "compact"
16
+ ],
17
+ "tools": [
18
+ "Task",
19
+ "Read",
20
+ "Write",
21
+ "Edit",
22
+ "MultiEdit",
23
+ "Bash",
24
+ "Glob",
25
+ "Grep",
26
+ "ExitPlanMode",
27
+ "TodoWrite",
28
+ "WebFetch",
29
+ "WebSearch",
30
+ "NotebookEdit",
31
+ "BashOutput",
32
+ "KillShell",
33
+ "SlashCommand"
34
+ ],
35
+ "tags": [
36
+ "cli",
37
+ "default"
38
+ ]
39
+ },
40
+ {
41
+ "name": "general-purpose",
42
+ "instructions": "cli-agent-prompt",
43
+ "description": "taskgeneral-purpose agent",
44
+ "tools": [
45
+ "Read",
46
+ "Write",
47
+ "Edit",
48
+ "MultiEdit",
49
+ "Bash",
50
+ "Glob",
51
+ "Grep",
52
+ "TodoWrite",
53
+ "WebFetch",
54
+ "WebSearch",
55
+ "NotebookEdit",
56
+ "BashOutput",
57
+ "KillShell",
58
+ "SlashCommand"
59
+ ],
60
+ "tags": [
61
+ "cli",
62
+ "general-purpose"
63
+ ]
64
+ },
65
+ {
66
+ "name": "compact",
67
+ "instructions": "compact-agent-prompt",
68
+ "description": "compact agent",
69
+ "tools": [
70
+ "Read",
71
+ "Write",
72
+ "Edit",
73
+ "MultiEdit",
74
+ "Bash",
75
+ "Glob",
76
+ "Grep",
77
+ "TodoWrite",
78
+ "WebFetch",
79
+ "WebSearch",
80
+ "NotebookEdit",
81
+ "Task",
82
+ "SlashCommand"
83
+ ],
84
+ "tags": [
85
+ "cli",
86
+ "compact"
87
+ ]
88
+ },
89
+ {
90
+ "name": "contentAnalyzer",
91
+ "instructions": "content-analyzer-agent-instructions",
92
+ "description": "content analyzer agent",
93
+ "tags": [
94
+ "cli",
95
+ "content-analyzer"
96
+ ]
97
+ },
98
+ {
99
+ "name": "agentInstructions",
100
+ "instructions": "agent-instructions",
101
+ "description": "generating agent instructions",
102
+ "tags": [
103
+ "cli",
104
+ "agent-instructions"
105
+ ]
106
+ }
107
+ ],
108
+ "models": [
109
+ {
110
+ "id": "default",
111
+ "name": "Default",
112
+ "vendor": "v",
113
+ "maxOutputTokens": 24000,
114
+ "maxInputTokens": 200000,
115
+ "supportsToolCall": true,
116
+ "supportsImages": false,
117
+ "maxAllowedSize": 56000
118
+ },
119
+ {
120
+ "id": "deepseek-v3.1",
121
+ "name": "DeepSeek-V3.1-Terminus",
122
+ "vendor": "f",
123
+ "maxOutputTokens": 8192,
124
+ "maxInputTokens": 128000,
125
+ "supportsToolCall": true,
126
+ "supportsImages": false,
127
+ "disabledMultimodal": true,
128
+ "maxAllowedSize": 56000
129
+ },
130
+ {
131
+ "id": "hunyuan-chat",
132
+ "name": "Hunyuan-Turbos",
133
+ "vendor": "j",
134
+ "maxOutputTokens": 8192,
135
+ "maxInputTokens": 200000,
136
+ "supportsToolCall": true,
137
+ "supportsImages": false,
138
+ "disabledMultimodal": true
139
+ },
140
+ {
141
+ "id": "deepseek-v3-0324",
142
+ "name": "DeepSeek-V3",
143
+ "vendor": "tencent",
144
+ "maxOutputTokens": 8192,
145
+ "maxInputTokens": 128000,
146
+ "supportsToolCall": true,
147
+ "supportsImages": false,
148
+ "disabledMultimodal": true,
149
+ "maxAllowedSize": 56000
150
+ }
151
+ ],
152
+ "links": {
153
+ "officialWebsite": "https://copilot.tencent.com/cli",
154
+ "upgradeUrl": ""
155
+ },
156
+ "productFeatures": {
157
+ "BillingNotice": false
158
+ },
159
+ "commit": "2384ef79061722f86dee33efdf0826f4c65a41a2",
160
+ "date": "2025-10-20T09:03:17.422Z"
161
+ }
@@ -156,6 +156,6 @@
156
156
  "productFeatures": {
157
157
  "BillingNotice": false
158
158
  },
159
- "commit": "d16baeba0a5b207a2780ce51e9afbb9d9464828d",
160
- "date": "2025-10-18T16:04:59.255Z"
159
+ "commit": "2384ef79061722f86dee33efdf0826f4c65a41a2",
160
+ "date": "2025-10-20T09:03:14.868Z"
161
161
  }
package/product.ioa.json CHANGED
@@ -287,6 +287,6 @@
287
287
  "productFeatures": {
288
288
  "BillingNotice": false
289
289
  },
290
- "commit": "d16baeba0a5b207a2780ce51e9afbb9d9464828d",
291
- "date": "2025-10-18T16:05:00.492Z"
290
+ "commit": "2384ef79061722f86dee33efdf0826f4c65a41a2",
291
+ "date": "2025-10-20T09:03:16.145Z"
292
292
  }
package/product.json CHANGED
@@ -41,7 +41,8 @@
41
41
  ],
42
42
  "cloudHostedDomain": [
43
43
  "*.sso.copilot.tencent.com",
44
- "*.sso.copilot-staging.tencent.com"
44
+ "*.sso.copilot-staging.tencent.com",
45
+ "*.copilot-staging.qq.com"
45
46
  ]
46
47
  }
47
48
  },
@@ -639,6 +640,6 @@
639
640
  "description": "tool-slashcommand-description"
640
641
  }
641
642
  ],
642
- "commit": "d16baeba0a5b207a2780ce51e9afbb9d9464828d",
643
- "date": "2025-10-18T16:04:58.007Z"
643
+ "commit": "2384ef79061722f86dee33efdf0826f4c65a41a2",
644
+ "date": "2025-10-20T09:03:13.595Z"
644
645
  }
@@ -0,0 +1,131 @@
1
+ {
2
+ "agents": [
3
+ {
4
+ "name": "cli",
5
+ "instructions": "cli-agent-prompt",
6
+ "description": "cli agent",
7
+ "models": [
8
+ "codewise-chat"
9
+ ],
10
+ "commands": [
11
+ "init",
12
+ "compact"
13
+ ],
14
+ "tools": [
15
+ "Task",
16
+ "Read",
17
+ "Write",
18
+ "Edit",
19
+ "MultiEdit",
20
+ "Bash",
21
+ "Glob",
22
+ "Grep",
23
+ "ExitPlanMode",
24
+ "TodoWrite",
25
+ "WebFetch",
26
+ "WebSearch",
27
+ "NotebookEdit",
28
+ "BashOutput",
29
+ "KillShell",
30
+ "SlashCommand"
31
+ ],
32
+ "tags": [
33
+ "cli",
34
+ "default"
35
+ ]
36
+ },
37
+ {
38
+ "name": "general-purpose",
39
+ "instructions": "cli-agent-prompt",
40
+ "description": "general-purpose agent",
41
+ "tools": [
42
+ "Read",
43
+ "Write",
44
+ "Edit",
45
+ "MultiEdit",
46
+ "Bash",
47
+ "Glob",
48
+ "Grep",
49
+ "TodoWrite",
50
+ "SaveMemory",
51
+ "WebFetch",
52
+ "WebSearch",
53
+ "NotebookRead",
54
+ "NotebookEdit",
55
+ "NotebookWrite",
56
+ "BashOutput",
57
+ "KillShell",
58
+ "SlashCommand"
59
+ ],
60
+ "tags": [
61
+ "cli",
62
+ "general-purpose"
63
+ ]
64
+ },
65
+ {
66
+ "name": "compact",
67
+ "instructions": "compact-agent-prompt",
68
+ "description": "compact agent",
69
+ "tools": [
70
+ "Read",
71
+ "Write",
72
+ "Edit",
73
+ "MultiEdit",
74
+ "Bash",
75
+ "Glob",
76
+ "Grep",
77
+ "TodoWrite",
78
+ "WebFetch",
79
+ "WebSearch",
80
+ "NotebookEdit",
81
+ "Task",
82
+ "SlashCommand"
83
+ ],
84
+ "tags": [
85
+ "cli",
86
+ "compact"
87
+ ]
88
+ },
89
+ {
90
+ "name": "contentAnalyzer",
91
+ "instructions": "content-analyzer-agent-instructions",
92
+ "description": "content analyzer agent",
93
+ "tags": [
94
+ "cli",
95
+ "content-analyzer"
96
+ ]
97
+ },
98
+ {
99
+ "name": "agentInstructions",
100
+ "instructions": "agent-instructions",
101
+ "description": "generating agent instructions",
102
+ "tags": [
103
+ "cli",
104
+ "agent-instructions"
105
+ ]
106
+ }
107
+ ],
108
+ "models": [
109
+ {
110
+ "credits": "x0.01 credits",
111
+ "id": "codewise-chat",
112
+ "name": "Codewise-Chat",
113
+ "vendor": "tencent",
114
+ "maxOutputTokens": 8192,
115
+ "maxInputTokens": 128000,
116
+ "supportsToolCall": true,
117
+ "supportsImages": false,
118
+ "disabledMultimodal": true,
119
+ "maxAllowedSize": 56000
120
+ }
121
+ ],
122
+ "links": {
123
+ "officialWebsite": "https://copilot.tencent.com/cli",
124
+ "upgradeUrl": ""
125
+ },
126
+ "productFeatures": {
127
+ "BillingNotice": false
128
+ },
129
+ "commit": "2384ef79061722f86dee33efdf0826f4c65a41a2",
130
+ "date": "2025-10-20T09:03:18.649Z"
131
+ }