@tencent-ai/codebuddy-code 2.127.3-dev.0a05362.202607281440 → 2.127.3-next.5a079f0.202607281443
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/dist/codebuddy-headless.js +88 -88
- package/dist/codebuddy.js +103 -103
- package/package.json +2 -2
- package/product.cloudhosted.json +4 -2
- package/product.internal.json +4 -2
- package/product.ioa.json +4 -2
- package/product.json +15 -3
- package/product.selfhosted.json +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tencent-ai/codebuddy-code",
|
|
3
|
-
"version": "2.127.3-
|
|
3
|
+
"version": "2.127.3-next.5a079f0.202607281443",
|
|
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",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public",
|
|
47
|
-
"tag": "
|
|
47
|
+
"tag": "next"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {},
|
|
50
50
|
"devDependencies": {}
|
package/product.cloudhosted.json
CHANGED
|
@@ -60,6 +60,8 @@
|
|
|
60
60
|
"DelegateTool",
|
|
61
61
|
"WeChatReply",
|
|
62
62
|
"WeComReply",
|
|
63
|
+
"PushNotification",
|
|
64
|
+
"ReportFindings",
|
|
63
65
|
"ComputerUse",
|
|
64
66
|
"ListMcpResources",
|
|
65
67
|
"ReadMcpResource",
|
|
@@ -830,6 +832,6 @@
|
|
|
830
832
|
"SelectImage": true,
|
|
831
833
|
"SkipToolCallSupportCheck": true
|
|
832
834
|
},
|
|
833
|
-
"commit": "
|
|
834
|
-
"date": "2026-07-28T06:
|
|
835
|
+
"commit": "5a079f00d748c1ecd2a52c42e27591b79e2487ae",
|
|
836
|
+
"date": "2026-07-28T06:43:00.979Z"
|
|
835
837
|
}
|
package/product.internal.json
CHANGED
|
@@ -74,6 +74,8 @@
|
|
|
74
74
|
"DelegateTool",
|
|
75
75
|
"WeChatReply",
|
|
76
76
|
"WeComReply",
|
|
77
|
+
"PushNotification",
|
|
78
|
+
"ReportFindings",
|
|
77
79
|
"ComputerUse",
|
|
78
80
|
"ListMcpResources",
|
|
79
81
|
"ReadMcpResource",
|
|
@@ -813,6 +815,6 @@
|
|
|
813
815
|
}
|
|
814
816
|
}
|
|
815
817
|
},
|
|
816
|
-
"commit": "
|
|
817
|
-
"date": "2026-07-28T06:
|
|
818
|
+
"commit": "5a079f00d748c1ecd2a52c42e27591b79e2487ae",
|
|
819
|
+
"date": "2026-07-28T06:43:00.995Z"
|
|
818
820
|
}
|
package/product.ioa.json
CHANGED
|
@@ -96,6 +96,8 @@
|
|
|
96
96
|
"DelegateTool",
|
|
97
97
|
"WeChatReply",
|
|
98
98
|
"WeComReply",
|
|
99
|
+
"PushNotification",
|
|
100
|
+
"ReportFindings",
|
|
99
101
|
"ComputerUse",
|
|
100
102
|
"ListMcpResources",
|
|
101
103
|
"ReadMcpResource",
|
|
@@ -1309,6 +1311,6 @@
|
|
|
1309
1311
|
}
|
|
1310
1312
|
}
|
|
1311
1313
|
},
|
|
1312
|
-
"commit": "
|
|
1313
|
-
"date": "2026-07-28T06:
|
|
1314
|
+
"commit": "5a079f00d748c1ecd2a52c42e27591b79e2487ae",
|
|
1315
|
+
"date": "2026-07-28T06:43:00.976Z"
|
|
1314
1316
|
}
|
package/product.json
CHANGED
|
@@ -951,7 +951,7 @@
|
|
|
951
951
|
},
|
|
952
952
|
{
|
|
953
953
|
"name": "code-review-trigger-reminder",
|
|
954
|
-
"template": "<system-reminder data-role=\"code-review-trigger\">\nThe user invoked `/code-review`{{target}} to review code for bugs and quality issues.\n{%- if fix %}\nThe user requested --fix: after the review, apply the findings to the working tree.\n{%- endif %}\n{%- if comment %}\nThe user requested --comment: after the review, post findings as inline PR comments.\n{%- endif %}\n\nReview the current diff for correctness bugs and reuse/simplification/efficiency cleanups.\n\n## Steps\n\n1. Run `git diff` (or `git diff HEAD` if there are staged changes) to see what changed. If a specific PR number or target is provided, run `gh pr diff <number>` instead.\n\n2. Analyze the changes thoroughly, looking for:\n - **Correctness bugs**: logic errors, off-by-one, null/undefined handling, race conditions, missing error handling\n - **Security issues**: injection vulnerabilities, improper input validation, exposed secrets\n - **Performance problems**: unnecessary work, N+1 patterns, missing concurrency, hot-path bloat\n - **Code quality**: duplicated code, leaky abstractions, parameter sprawl, stringly-typed code\n - **Test coverage gaps**: untested edge cases, missing error path tests\n\n3. For each finding,
|
|
954
|
+
"template": "<system-reminder data-role=\"code-review-trigger\">\nThe user invoked `/code-review`{{target}} to review code for bugs and quality issues.\n{%- if fix %}\nThe user requested --fix: after the review, apply the findings to the working tree.\n{%- endif %}\n{%- if comment %}\nThe user requested --comment: after the review, post findings as inline PR comments.\n{%- endif %}\n\nReview the current diff for correctness bugs and reuse/simplification/efficiency cleanups.\n\n## Steps\n\n1. Run `git diff` (or `git diff HEAD` if there are staged changes) to see what changed. If a specific PR number or target is provided, run `gh pr diff <number>` instead.\n\n2. Analyze the changes thoroughly, looking for:\n - **Correctness bugs**: logic errors, off-by-one, null/undefined handling, race conditions, missing error handling\n - **Security issues**: injection vulnerabilities, improper input validation, exposed secrets\n - **Performance problems**: unnecessary work, N+1 patterns, missing concurrency, hot-path bloat\n - **Code quality**: duplicated code, leaky abstractions, parameter sprawl, stringly-typed code\n - **Test coverage gaps**: untested edge cases, missing error path tests\n\n3. For each finding, determine:\n - File and line number\n - Severity (critical / warning / suggestion)\n - One-line summary of the issue\n - A concrete failure scenario (how/when this would actually break or cause harm)\n - Suggested fix\n\n4. Call the `ReportFindings` tool once with all findings (most-severe first), mapping each to\n `file` (path + line), `summary` (one-line issue + suggested fix), and `failureScenario`\n (the concrete scenario from step 3). If `ReportFindings` is not available, present findings\n ranked most-severe first in prose instead, grouped by file when multiple findings share a file.\n{%- if fix %}\n\nAfter the review, apply all fixable findings to the working tree directly.\n{%- endif %}\n{%- if comment %}\n\nAfter the review, post each finding as an inline PR comment using `gh api` or `gh pr review`.\n{%- endif %}\n</system-reminder>\n"
|
|
955
955
|
},
|
|
956
956
|
{
|
|
957
957
|
"name": "verify-trigger-reminder",
|
|
@@ -1069,6 +1069,8 @@
|
|
|
1069
1069
|
"DelegateTool",
|
|
1070
1070
|
"WeChatReply",
|
|
1071
1071
|
"WeComReply",
|
|
1072
|
+
"PushNotification",
|
|
1073
|
+
"ReportFindings",
|
|
1072
1074
|
"ComputerUse",
|
|
1073
1075
|
"ListMcpResources",
|
|
1074
1076
|
"ReadMcpResource",
|
|
@@ -1772,12 +1774,22 @@
|
|
|
1772
1774
|
"name": "WeComReply",
|
|
1773
1775
|
"description": "Send a reply to a WeCom (企业微信) user. For text: pass text (markdown supported)."
|
|
1774
1776
|
},
|
|
1777
|
+
{
|
|
1778
|
+
"name": "PushNotification",
|
|
1779
|
+
"description": "tool-pushnotification-description",
|
|
1780
|
+
"deferLoading": true
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
"name": "ReportFindings",
|
|
1784
|
+
"description": "tool-reportfindings-description",
|
|
1785
|
+
"deferLoading": true
|
|
1786
|
+
},
|
|
1775
1787
|
{
|
|
1776
1788
|
"name": "Workflow",
|
|
1777
1789
|
"description": "workflow-tool-description",
|
|
1778
1790
|
"deferLoading": true
|
|
1779
1791
|
}
|
|
1780
1792
|
],
|
|
1781
|
-
"commit": "
|
|
1782
|
-
"date": "2026-07-28T06:
|
|
1793
|
+
"commit": "5a079f00d748c1ecd2a52c42e27591b79e2487ae",
|
|
1794
|
+
"date": "2026-07-28T06:43:00.979Z"
|
|
1783
1795
|
}
|
package/product.selfhosted.json
CHANGED
|
@@ -53,6 +53,8 @@
|
|
|
53
53
|
"DelegateTool",
|
|
54
54
|
"WeChatReply",
|
|
55
55
|
"WeComReply",
|
|
56
|
+
"PushNotification",
|
|
57
|
+
"ReportFindings",
|
|
56
58
|
"ComputerUse",
|
|
57
59
|
"ListMcpResources",
|
|
58
60
|
"ReadMcpResource",
|
|
@@ -344,6 +346,6 @@
|
|
|
344
346
|
"ScheduledTasks": true,
|
|
345
347
|
"SkipToolCallSupportCheck": true
|
|
346
348
|
},
|
|
347
|
-
"commit": "
|
|
348
|
-
"date": "2026-07-28T06:
|
|
349
|
+
"commit": "5a079f00d748c1ecd2a52c42e27591b79e2487ae",
|
|
350
|
+
"date": "2026-07-28T06:43:01.020Z"
|
|
349
351
|
}
|