@tencent-ai/codebuddy-code 2.103.3 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tencent-ai/codebuddy-code",
3
- "version": "2.103.3",
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": {},
@@ -802,6 +802,6 @@
802
802
  "SelectImage": true,
803
803
  "SkipToolCallSupportCheck": true
804
804
  },
805
- "commit": "07b12a484ffb4ea1a60bfb375dbc5f8717618808",
806
- "date": "2026-06-07T17:57:08.090Z"
805
+ "commit": "e3066bbaf17069b3881d61adb8a1f4ffaa42373f",
806
+ "date": "2026-06-08T07:22:40.027Z"
807
807
  }
@@ -658,6 +658,6 @@
658
658
  }
659
659
  }
660
660
  },
661
- "commit": "07b12a484ffb4ea1a60bfb375dbc5f8717618808",
662
- "date": "2026-06-07T17:57:08.150Z"
661
+ "commit": "e3066bbaf17069b3881d61adb8a1f4ffaa42373f",
662
+ "date": "2026-06-08T07:22:40.027Z"
663
663
  }
package/product.ioa.json CHANGED
@@ -1021,6 +1021,6 @@
1021
1021
  }
1022
1022
  }
1023
1023
  },
1024
- "commit": "07b12a484ffb4ea1a60bfb375dbc5f8717618808",
1025
- "date": "2026-06-07T17:57:08.091Z"
1024
+ "commit": "e3066bbaf17069b3881d61adb8a1f4ffaa42373f",
1025
+ "date": "2026-06-08T07:22:40.029Z"
1026
1026
  }
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": "07b12a484ffb4ea1a60bfb375dbc5f8717618808",
1660
- "date": "2026-06-07T17:57:08.152Z"
1659
+ "commit": "e3066bbaf17069b3881d61adb8a1f4ffaa42373f",
1660
+ "date": "2026-06-08T07:22:40.036Z"
1661
1661
  }
@@ -317,6 +317,6 @@
317
317
  "ScheduledTasks": true,
318
318
  "SkipToolCallSupportCheck": true
319
319
  },
320
- "commit": "07b12a484ffb4ea1a60bfb375dbc5f8717618808",
321
- "date": "2026-06-07T17:57:08.135Z"
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