@tencent-ai/codebuddy-code 2.114.0 → 2.114.1-dev.6b2a001.202606301500
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 +10 -0
- package/dist/codebuddy-headless.js +16 -16
- package/dist/codebuddy.js +18 -18
- 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.114.
|
|
3
|
+
"version": "2.114.1-dev.6b2a001.202606301500",
|
|
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",
|
|
@@ -42,7 +42,8 @@
|
|
|
42
42
|
"url": "https://cnb.cool/codebuddy/codebuddy-code/-/issues"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
|
-
"access": "public"
|
|
45
|
+
"access": "public",
|
|
46
|
+
"tag": "dev"
|
|
46
47
|
},
|
|
47
48
|
"scripts": {},
|
|
48
49
|
"devDependencies": {}
|
package/product.cloudhosted.json
CHANGED
|
@@ -824,6 +824,6 @@
|
|
|
824
824
|
"SelectImage": true,
|
|
825
825
|
"SkipToolCallSupportCheck": true
|
|
826
826
|
},
|
|
827
|
-
"commit": "
|
|
828
|
-
"date": "2026-06-
|
|
827
|
+
"commit": "6b2a0017fbbc5ced706626d36f545cf6f356e07f",
|
|
828
|
+
"date": "2026-06-30T06:59:14.103Z"
|
|
829
829
|
}
|
package/product.internal.json
CHANGED
package/product.ioa.json
CHANGED
package/product.json
CHANGED
package/product.selfhosted.json
CHANGED
|
@@ -339,6 +339,6 @@
|
|
|
339
339
|
"ScheduledTasks": true,
|
|
340
340
|
"SkipToolCallSupportCheck": true
|
|
341
341
|
},
|
|
342
|
-
"commit": "
|
|
343
|
-
"date": "2026-06-
|
|
342
|
+
"commit": "6b2a0017fbbc5ced706626d36f545cf6f356e07f",
|
|
343
|
+
"date": "2026-06-30T06:59:14.082Z"
|
|
344
344
|
}
|
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
|