@tunnelbox/core 0.1.27 → 0.1.28

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/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @tunnelbox/core —— 共享核心。
3
- * 供各智能体适配器(opencode 插件 / dsh / claude-code / codex / …)复用:
3
+ * 供各智能体适配器(opencode 插件 / dsh / claude-code / codex / cursor / codebuddy / kimi / trae / …)复用:
4
4
  * 统一协议类型、中继客户端(静默重连)、状态持久化、二维码配对。
5
5
  */
6
6
  export * from "./types";
@@ -12,3 +12,4 @@ export * from "./i18n";
12
12
  export * from "./messages";
13
13
  export * from "./cli";
14
14
  export * from "./terminal";
15
+ export * from "./acp";
package/src/types.ts CHANGED
@@ -23,7 +23,7 @@ export interface AgentInfo {
23
23
  version: string;
24
24
  platform?: string;
25
25
  directory?: string;
26
- /** 智能体类型:opencode | claude-code | codex | dsh | openclaw | hermes | cursor */
26
+ /** 智能体类型:opencode | claude-code | codex | dsh | openclaw | hermes | cursor | codebuddy | kimi | trae */
27
27
  type?: string;
28
28
  /** IANA 时区名(如 Asia/Shanghai),仅用于"电脑本地时间"展示 */
29
29
  timezone?: string;