@tencent-ai/codebuddy-code 2.103.2 → 2.103.4-dev.e3066bb.202606081523
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 +14 -0
- package/dist/codebuddy-headless.js +13 -13
- package/dist/codebuddy.js +31 -31
- package/package.json +3 -2
- package/product.cloudhosted.json +2 -2
- package/product.internal.json +2 -2
- package/product.ioa.json +2 -2
- package/product.json +2 -2
- package/product.selfhosted.json +2 -2
- package/lib/node/index.js +0 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tencent-ai/codebuddy-code",
|
|
3
|
-
"version": "2.103.
|
|
3
|
+
"version": "2.103.4-dev.e3066bb.202606081523",
|
|
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",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"url": "https://cnb.cool/codebuddy/codebuddy-code/-/issues"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
|
-
"access": "public"
|
|
32
|
+
"access": "public",
|
|
33
|
+
"tag": "dev"
|
|
33
34
|
},
|
|
34
35
|
"scripts": {},
|
|
35
36
|
"devDependencies": {},
|
package/product.cloudhosted.json
CHANGED
|
@@ -802,6 +802,6 @@
|
|
|
802
802
|
"SelectImage": true,
|
|
803
803
|
"SkipToolCallSupportCheck": true
|
|
804
804
|
},
|
|
805
|
-
"commit": "
|
|
806
|
-
"date": "2026-06-
|
|
805
|
+
"commit": "e3066bbaf17069b3881d61adb8a1f4ffaa42373f",
|
|
806
|
+
"date": "2026-06-08T07:22:40.027Z"
|
|
807
807
|
}
|
package/product.internal.json
CHANGED
package/product.ioa.json
CHANGED
package/product.json
CHANGED
|
@@ -1656,6 +1656,6 @@
|
|
|
1656
1656
|
"description": "Send a reply to a WeCom (企业微信) user. For text: pass text (markdown supported)."
|
|
1657
1657
|
}
|
|
1658
1658
|
],
|
|
1659
|
-
"commit": "
|
|
1660
|
-
"date": "2026-06-
|
|
1659
|
+
"commit": "e3066bbaf17069b3881d61adb8a1f4ffaa42373f",
|
|
1660
|
+
"date": "2026-06-08T07:22:40.036Z"
|
|
1661
1661
|
}
|
package/product.selfhosted.json
CHANGED
|
@@ -317,6 +317,6 @@
|
|
|
317
317
|
"ScheduledTasks": true,
|
|
318
318
|
"SkipToolCallSupportCheck": true
|
|
319
319
|
},
|
|
320
|
-
"commit": "
|
|
321
|
-
"date": "2026-06-
|
|
320
|
+
"commit": "e3066bbaf17069b3881d61adb8a1f4ffaa42373f",
|
|
321
|
+
"date": "2026-06-08T07:22:40.028Z"
|
|
322
322
|
}
|
package/lib/node/index.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* TUI mode entry point — full module set.
|
|
3
|
-
*
|
|
4
|
-
* Re-exports all shared modules from index-shared.ts, then adds TUI-only modules.
|
|
5
|
-
* The shared file is the DEFAULT place to add new modules.
|
|
6
|
-
* Only add exports here if the module has hard TUI dependencies
|
|
7
|
-
* (e.g., imports from ./ui, ink, react, TUI panels).
|
|
8
|
-
*
|
|
9
|
-
* See also: index-headless.ts (headless/SDK entry point)
|
|
10
|
-
*/
|
|
11
|
-
import './process';
|
|
12
|
-
export * from './index-shared';
|
|
13
|
-
// ── TUI-only modules ─────────────────────────────────────────────────
|
|
14
|
-
// These modules are excluded from headless builds because they depend on
|
|
15
|
-
// TUI rendering (ink/react), heavy optional deps, or interactive-only features.
|
|
16
|
-
export * from './doctor'; // CLI diagnostics wizard
|
|
17
|
-
export * from './install'; // CLI install / shell-setup
|
|
18
|
-
export * from './navigation'; // TUI page routing
|
|
19
|
-
export * from './remote-control'; // Remote control via WeChat etc.
|
|
20
|
-
export * from './remote-gateway'; // Remote gateway (local + cloud)
|
|
21
|
-
export * from './resume'; // ResumeMiddleware (imports TUI panel)
|
|
22
|
-
export * from './sandbox'; // e2b sandbox (heavy deps ~1250 modules)
|
|
23
|
-
export * from './shortcut'; // TUI keyboard shortcuts
|
|
24
|
-
export * from './tips'; // TUI tips / user state tracking
|
|
25
|
-
export * from './worktree'; // Git worktree management
|
|
26
|
-
export * from './ui'; // TUI UI components
|
|
27
|
-
export * from './feedback-survey'; // TUI feedback survey
|
|
28
|
-
export * from './undo-redo'; // TUI undo/redo
|
|
29
|
-
export * from './prompt-suggestion'; // TUI prompt suggestions
|
|
30
|
-
//# sourceMappingURL=index.js.map
|