@seemseam/ccb 7.7.0 → 8.0.3
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/README.md +116 -6
- package/README_zh.md +100 -6
- package/VERSION +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
**Visible, controllable multi-agent cooperative TUI workspace**
|
|
7
7
|
|
|
8
8
|
<p>
|
|
9
|
-
<img src="https://img.shields.io/badge/version-
|
|
9
|
+
<img src="https://img.shields.io/badge/version-8.0.3-orange.svg" alt="version">
|
|
10
10
|
<img src="https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20WSL-lightgrey.svg" alt="platform">
|
|
11
11
|
<img src="https://img.shields.io/badge/providers-15%20CLI%20families-0B7285.svg" alt="providers">
|
|
12
12
|
</p>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
**English** | [中文](README_zh.md)
|
|
33
33
|
|
|
34
|
-
[Quick Start](#quick-start) · [v7 UI](#v7-ui-tour) · [Rich Mode](#rich-mode-new) · [
|
|
34
|
+
[Quick Start](#quick-start) · [v7 UI](#v7-ui-tour) · [Rich Mode](#rich-mode-new) · [Mobile App](#mobile-app) · [Configure Agents](#configure-your-agent-team) · [User Guide](docs/manuals/user-guide/) · [Developer Guide](docs/manuals/developer-guide/)
|
|
35
35
|
|
|
36
36
|
<p align="center">
|
|
37
37
|
<img src="assets/readme_v7/ccb-hero-en.png" alt="CCB v7 visible multi-agent CLI workspace" width="960">
|
|
@@ -79,6 +79,18 @@ Mix CLIs per agent in `.ccb/ccb.config`; actual availability depends on the loca
|
|
|
79
79
|
|
|
80
80
|
## Quick Start
|
|
81
81
|
|
|
82
|
+
## Repository Layout
|
|
83
|
+
|
|
84
|
+
This repository now carries both the CCB core and the mobile controller source:
|
|
85
|
+
|
|
86
|
+
- core CLI, ccbd, mobile gateway, and Python tests live at the repository root;
|
|
87
|
+
- Flutter mobile app source, mobile tools, and mobile planning docs live under
|
|
88
|
+
[`mobile/`](mobile/).
|
|
89
|
+
|
|
90
|
+
The mobile app remains a separate build surface inside the monorepo. Core
|
|
91
|
+
commands such as `ccb update mobile` should consume released mobile artifacts
|
|
92
|
+
or the mobile release manifest, not Android build outputs checked into source.
|
|
93
|
+
|
|
82
94
|
### 1. Install or update
|
|
83
95
|
|
|
84
96
|
New installs should use the npm package:
|
|
@@ -101,10 +113,20 @@ ccb update rich
|
|
|
101
113
|
|
|
102
114
|
After rich is enabled, plain `ccb` opens the rich WezTerm launcher unless it is already running inside a CCB-managed rich WezTerm; use `ccb uninstall rich` to return to the normal terminal startup.
|
|
103
115
|
|
|
116
|
+
Install or refresh the optional mobile controller setup:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
ccb update mobile
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
This command checks the local mobile gateway prerequisites, guides Tailscale
|
|
123
|
+
login/Serve setup when needed, keeps the gateway loopback-only, and prints the
|
|
124
|
+
current Android APK download link plus pairing steps.
|
|
125
|
+
|
|
104
126
|
<details>
|
|
105
127
|
<summary><b>GitHub release package and source install fallbacks</b></summary>
|
|
106
128
|
|
|
107
|
-
If npm is not available in your environment, download the matching package from [Releases](https://github.com/
|
|
129
|
+
If npm is not available in your environment, download the matching package from [Releases](https://github.com/bfly123/claude_code_bridge/releases):
|
|
108
130
|
|
|
109
131
|
```bash
|
|
110
132
|
tar -xzf ccb-*.tar.gz
|
|
@@ -115,8 +137,8 @@ cd ccb-*
|
|
|
115
137
|
Source install is for development or temporary fallback use:
|
|
116
138
|
|
|
117
139
|
```bash
|
|
118
|
-
git clone https://github.com/
|
|
119
|
-
cd
|
|
140
|
+
git clone https://github.com/bfly123/claude_code_bridge.git
|
|
141
|
+
cd claude_code_bridge
|
|
120
142
|
./install.sh install
|
|
121
143
|
```
|
|
122
144
|
|
|
@@ -196,6 +218,45 @@ Run `ccb update rich` to install the optional rich workbench; it bundles Yazi wh
|
|
|
196
218
|
<img src="assets/readme_v7/rich-workbench.png" alt="CCB rich workbench with Yazi preview in WezTerm" width="860">
|
|
197
219
|
</p>
|
|
198
220
|
|
|
221
|
+
<a id="mobile-app"></a>
|
|
222
|
+
|
|
223
|
+
### Mobile App (Android Alpha)
|
|
224
|
+
|
|
225
|
+
CCB 8.0.3 includes the Flutter CCB Mobile source under [`mobile/`](mobile/)
|
|
226
|
+
and publishes an Android APK as a GitHub Release asset:
|
|
227
|
+
|
|
228
|
+
- [Download CCB Mobile v8.0.3 APK](https://github.com/bfly123/claude_code_bridge/releases/download/v8.0.3/ccb-mobile-v8.0.3.apk)
|
|
229
|
+
- App source: [`mobile/app`](mobile/app)
|
|
230
|
+
- Server/gateway source: [`lib/mobile_gateway`](lib/mobile_gateway)
|
|
231
|
+
|
|
232
|
+
The mobile app is a remote controller for real server-side CCB projects. It can
|
|
233
|
+
discover all mounted CCB projects exposed by the server-wide mobile gateway,
|
|
234
|
+
switch windows and agents, render the agent transcript, send text as pane-native
|
|
235
|
+
input, open terminal views, and upload/download image or document attachments
|
|
236
|
+
through the authenticated gateway.
|
|
237
|
+
|
|
238
|
+
Recommended first-time setup:
|
|
239
|
+
|
|
240
|
+
```bash
|
|
241
|
+
ccb update mobile
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
Then follow the printed steps:
|
|
245
|
+
|
|
246
|
+
1. Install and sign in to Tailscale on the desktop/server and the phone.
|
|
247
|
+
2. Install the APK on Android.
|
|
248
|
+
3. Run `ccb update mobile` on the desktop/server.
|
|
249
|
+
4. Open CCB Mobile and scan the QR printed by the terminal.
|
|
250
|
+
|
|
251
|
+
Security boundaries:
|
|
252
|
+
|
|
253
|
+
- The CCB gateway remains bound to loopback, such as `127.0.0.1:8787`.
|
|
254
|
+
- Tailscale Serve is used for tailnet access; Tailscale Funnel is not enabled.
|
|
255
|
+
- CCB does not store Tailscale passwords, OAuth tokens, admin API tokens, or
|
|
256
|
+
alter tailnet ACLs/grants.
|
|
257
|
+
- The phone only receives the scopes granted by the pairing profile, such as
|
|
258
|
+
view, content, terminal, file upload, and file download.
|
|
259
|
+
|
|
199
260
|
### Agent Roles Spec And Role Catalog
|
|
200
261
|
|
|
201
262
|
CCB supports the [Agent Roles Spec](https://github.com/SeemSeam/agent-roles-spec), a host-neutral way to package specialist agents as portable Role Packs. The same repository also acts as the public role catalog.
|
|
@@ -644,7 +705,7 @@ For later updates:
|
|
|
644
705
|
ccb update
|
|
645
706
|
```
|
|
646
707
|
|
|
647
|
-
[GitHub Releases](https://github.com/
|
|
708
|
+
[GitHub Releases](https://github.com/bfly123/claude_code_bridge/releases) remain available for environments where npm is unavailable. Source checkout install is for development, fix validation, or temporary fallback.
|
|
648
709
|
|
|
649
710
|
#### Uninstall
|
|
650
711
|
|
|
@@ -709,6 +770,55 @@ v7 highlights:
|
|
|
709
770
|
- Hardened tmux, Ghostty, release helper, Codex trust, and provider session restore paths.
|
|
710
771
|
|
|
711
772
|
<details open>
|
|
773
|
+
<summary><b>v8.0.3</b> - npm Release Metadata Fix</summary>
|
|
774
|
+
|
|
775
|
+
- Fixes npm provenance metadata so `@seemseam/ccb` publishes from the canonical
|
|
776
|
+
GitHub repository used by GitHub Actions.
|
|
777
|
+
- Synchronizes VERSION, package metadata, mobile app version metadata, README
|
|
778
|
+
links, workflow defaults, and APK download URLs for 8.0.3.
|
|
779
|
+
|
|
780
|
+
</details>
|
|
781
|
+
|
|
782
|
+
<details>
|
|
783
|
+
<summary><b>v8.0.2</b> - Mobile Tailnet Onboarding Fixes</summary>
|
|
784
|
+
|
|
785
|
+
- Handles the Tailscale Serve one-time approval flow without exposing raw
|
|
786
|
+
timeout errors.
|
|
787
|
+
- Reuses an existing correct Tailscale Serve proxy for `:8787`, so users who
|
|
788
|
+
already approved or started Serve can immediately get the pairing QR.
|
|
789
|
+
- Fixes source worktree installs so installed `ccb` is not mistaken for a source
|
|
790
|
+
checkout.
|
|
791
|
+
|
|
792
|
+
</details>
|
|
793
|
+
|
|
794
|
+
<details>
|
|
795
|
+
<summary><b>v8.0.1</b> - Simplified CCB Mobile Pairing</summary>
|
|
796
|
+
|
|
797
|
+
- Makes `ccb update mobile` the single user-facing setup command: it checks
|
|
798
|
+
Tailscale, guides login/install, starts the server-wide loopback gateway plus
|
|
799
|
+
Tailscale Serve, and prints a pairing QR directly in the terminal.
|
|
800
|
+
- Updates CCB Mobile first launch to show pairing instructions, Tailscale
|
|
801
|
+
download guidance, and a scan button instead of opening the fake/demo project.
|
|
802
|
+
- Automatically opens the server-wide mounted project list after a stored
|
|
803
|
+
pairing profile is found, reducing setup friction for normal phone use.
|
|
804
|
+
|
|
805
|
+
</details>
|
|
806
|
+
|
|
807
|
+
<details>
|
|
808
|
+
<summary><b>v8.0.0</b> - CCB Mobile Monorepo Release</summary>
|
|
809
|
+
|
|
810
|
+
- Ships the Flutter CCB Mobile source inside this repository and publishes the
|
|
811
|
+
Android APK as a GitHub Release asset.
|
|
812
|
+
- Adds server-wide mobile project discovery, pairing, authenticated gateway
|
|
813
|
+
routes, pane-native message input, transcript rendering, terminal access, and
|
|
814
|
+
image/document upload and download support.
|
|
815
|
+
- Promotes `ccb update mobile` as the guided setup entry for Tailscale Tailnet
|
|
816
|
+
onboarding while preserving loopback-only gateway binding and avoiding Funnel,
|
|
817
|
+
token storage, or ACL/grant automation.
|
|
818
|
+
|
|
819
|
+
</details>
|
|
820
|
+
|
|
821
|
+
<details>
|
|
712
822
|
<summary><b>v7.7.0</b> - Runtime Accelerator Release Hardening</summary>
|
|
713
823
|
|
|
714
824
|
- Ships the optional Rust `ccb-runtime-accelerator` in release artifacts, so
|
package/README_zh.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
**可见、可控的多 Agent 合作TUI工作台**
|
|
7
7
|
|
|
8
8
|
<p>
|
|
9
|
-
<img src="https://img.shields.io/badge/version-
|
|
9
|
+
<img src="https://img.shields.io/badge/version-8.0.3-orange.svg" alt="version">
|
|
10
10
|
<img src="https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20WSL-lightgrey.svg" alt="platform">
|
|
11
11
|
<img src="https://img.shields.io/badge/providers-15%20CLI%20families-0B7285.svg" alt="providers">
|
|
12
12
|
</p>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
**中文** | [English](README.md)
|
|
33
33
|
|
|
34
|
-
[快速开始](#快速开始) · [v7 界面](#v7-界面速览) · [Rich 模式](#rich-mode-new) · [
|
|
34
|
+
[快速开始](#快速开始) · [v7 界面](#v7-界面速览) · [Rich 模式](#rich-mode-new) · [Mobile App](#mobile-app) · [配置团队](#配置-agent-团队) · [使用文档](docs/manuals/user-guide/) · [开发文档](docs/manuals/developer-guide/)
|
|
35
35
|
|
|
36
36
|
<p align="center">
|
|
37
37
|
<img src="assets/readme_v7/ccb-hero-zh.png" alt="CCB v7 可见多 Agent CLI 工作台" width="960">
|
|
@@ -101,10 +101,19 @@ ccb update rich
|
|
|
101
101
|
|
|
102
102
|
rich 启用后,普通 `ccb` 会自动打开 rich WezTerm launcher,只有当当前已经处于 CCB 自己拉起的 rich WezTerm 中时才不会再次跳转;运行 `ccb uninstall rich` 可退回普通终端启动。
|
|
103
103
|
|
|
104
|
+
可选手机控制端用下面的入口安装或刷新本机侧配置:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
ccb update mobile
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
该命令会检查 mobile gateway 依赖,按需引导 Tailscale 登录/Serve 配置,
|
|
111
|
+
保持 gateway 仅监听 loopback,并打印当前 Android APK 下载链接和扫码配对步骤。
|
|
112
|
+
|
|
104
113
|
<details>
|
|
105
114
|
<summary><b>GitHub release 包和源码安装兜底</b></summary>
|
|
106
115
|
|
|
107
|
-
如果当前环境不方便使用 npm,可以到 [Releases](https://github.com/
|
|
116
|
+
如果当前环境不方便使用 npm,可以到 [Releases](https://github.com/bfly123/claude_code_bridge/releases) 下载与你的平台匹配的包,解压后安装:
|
|
108
117
|
|
|
109
118
|
```bash
|
|
110
119
|
tar -xzf ccb-*.tar.gz
|
|
@@ -115,8 +124,8 @@ cd ccb-*
|
|
|
115
124
|
源码安装只建议开发或临时兜底使用:
|
|
116
125
|
|
|
117
126
|
```bash
|
|
118
|
-
git clone https://github.com/
|
|
119
|
-
cd
|
|
127
|
+
git clone https://github.com/bfly123/claude_code_bridge.git
|
|
128
|
+
cd claude_code_bridge
|
|
120
129
|
./install.sh install
|
|
121
130
|
```
|
|
122
131
|
|
|
@@ -197,6 +206,44 @@ ccb
|
|
|
197
206
|
<img src="assets/readme_v7/rich-workbench.png" alt="CCB rich 富媒体工作台在 WezTerm 中使用 Yazi 预览" width="860">
|
|
198
207
|
</p>
|
|
199
208
|
|
|
209
|
+
<a id="mobile-app"></a>
|
|
210
|
+
|
|
211
|
+
### Mobile App(Android Alpha)
|
|
212
|
+
|
|
213
|
+
CCB 8.0.3 已把 Flutter 版 CCB Mobile 源码放入 [`mobile/`](mobile/),
|
|
214
|
+
并在 GitHub Release 中发布 Android APK:
|
|
215
|
+
|
|
216
|
+
- [下载 CCB Mobile v8.0.3 APK](https://github.com/bfly123/claude_code_bridge/releases/download/v8.0.3/ccb-mobile-v8.0.3.apk)
|
|
217
|
+
- App 源码:[`mobile/app`](mobile/app)
|
|
218
|
+
- 服务端 gateway 源码:[`lib/mobile_gateway`](lib/mobile_gateway)
|
|
219
|
+
|
|
220
|
+
手机端定位是远程控制真实服务器上的 CCB 项目。它可以从 server-wide
|
|
221
|
+
mobile gateway 获取所有已挂载项目,切换 window/agent,渲染 agent
|
|
222
|
+
对话上下文,以 pane-native 输入方式发送文本,打开 terminal 视图,并通过
|
|
223
|
+
认证 gateway 上传/下载图片和文档附件。
|
|
224
|
+
|
|
225
|
+
首次配置建议:
|
|
226
|
+
|
|
227
|
+
```bash
|
|
228
|
+
ccb update mobile
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
然后按终端提示:
|
|
232
|
+
|
|
233
|
+
1. 在桌面/服务器和手机上安装并登录同一个 Tailscale tailnet。
|
|
234
|
+
2. 在 Android 手机上安装 APK。
|
|
235
|
+
3. 在桌面/服务器运行 `ccb update mobile`。
|
|
236
|
+
4. 打开 CCB Mobile,扫描终端打印的配对二维码。
|
|
237
|
+
|
|
238
|
+
安全边界:
|
|
239
|
+
|
|
240
|
+
- CCB gateway 只绑定 loopback,例如 `127.0.0.1:8787`。
|
|
241
|
+
- 远程访问使用 Tailscale Serve,不启用 Tailscale Funnel。
|
|
242
|
+
- CCB 不保存 Tailscale 密码、OAuth token、admin API token,也不会自动修改
|
|
243
|
+
tailnet ACL/grants。
|
|
244
|
+
- 手机只获得 pairing profile 授权的 scope,例如 view、content、terminal、
|
|
245
|
+
file upload 和 file download。
|
|
246
|
+
|
|
200
247
|
### Agent Roles Spec 规范和角色库
|
|
201
248
|
|
|
202
249
|
CCB 支持 [Agent Roles Spec](https://github.com/SeemSeam/agent-roles-spec):这是一个 host-neutral 的专业 agent 封装规范,可把专业角色打包成可安装、可挂载、可卸载的 Role Pack。该仓库同时也是公开角色库。
|
|
@@ -630,7 +677,7 @@ npm install -g @seemseam/ccb
|
|
|
630
677
|
ccb update
|
|
631
678
|
```
|
|
632
679
|
|
|
633
|
-
[GitHub Releases](https://github.com/
|
|
680
|
+
[GitHub Releases](https://github.com/bfly123/claude_code_bridge/releases) 仍作为不方便使用 npm 时的备选路径。源码 checkout 安装只适合开发、验证修复或临时兜底。
|
|
634
681
|
|
|
635
682
|
#### 卸载
|
|
636
683
|
|
|
@@ -695,6 +742,53 @@ v7 线重点:
|
|
|
695
742
|
- 加固 tmux、Ghostty、release helper、Codex trust 和 provider 会话恢复路径。
|
|
696
743
|
|
|
697
744
|
<details open>
|
|
745
|
+
<summary><b>v8.0.3</b> - npm Release Metadata 修复</summary>
|
|
746
|
+
|
|
747
|
+
- 修复 npm provenance metadata,使 `@seemseam/ccb` 的发布仓库与 GitHub
|
|
748
|
+
Actions 使用的 canonical 仓库一致。
|
|
749
|
+
- 同步 VERSION、package metadata、mobile app version metadata、README 链接、
|
|
750
|
+
workflow 默认值和 APK 下载链接到 8.0.3。
|
|
751
|
+
|
|
752
|
+
</details>
|
|
753
|
+
|
|
754
|
+
<details>
|
|
755
|
+
<summary><b>v8.0.2</b> - Mobile Tailnet Onboarding 修复</summary>
|
|
756
|
+
|
|
757
|
+
- 正确识别 Tailscale Serve 一次性授权链接,不再把原始 timeout 暴露给用户。
|
|
758
|
+
- 如果 `:8787` 的 Tailscale Serve 代理已经正确指向 loopback mobile gateway,
|
|
759
|
+
`ccb update mobile` 会直接复用并进入配对二维码流程。
|
|
760
|
+
- 修复 source worktree 安装时误复制 `.git` worktree 标记的问题,避免安装版
|
|
761
|
+
`ccb` 被误判为源码 checkout。
|
|
762
|
+
|
|
763
|
+
</details>
|
|
764
|
+
|
|
765
|
+
<details>
|
|
766
|
+
<summary><b>v8.0.1</b> - CCB Mobile 极简配对</summary>
|
|
767
|
+
|
|
768
|
+
- 将 `ccb update mobile` 收敛为唯一面向普通用户的设置入口:检测
|
|
769
|
+
Tailscale、引导登录/安装、启动 server-wide loopback gateway 和 Tailscale
|
|
770
|
+
Serve,并直接在终端打印配对二维码。
|
|
771
|
+
- 手机端首次启动不再进入 fake/demo 项目,而是显示配对说明、Tailscale 下载提示
|
|
772
|
+
和扫码按钮。
|
|
773
|
+
- 检测到已保存 pairing profile 后,手机端会自动进入 server-wide 已挂载项目列表,
|
|
774
|
+
降低普通手机使用的配置压力。
|
|
775
|
+
|
|
776
|
+
</details>
|
|
777
|
+
|
|
778
|
+
<details>
|
|
779
|
+
<summary><b>v8.0.0</b> - CCB Mobile Monorepo 发布</summary>
|
|
780
|
+
|
|
781
|
+
- Flutter 版 CCB Mobile 源码正式进入本仓库,并在 GitHub Release 中发布
|
|
782
|
+
Android APK。
|
|
783
|
+
- 新增 server-wide mobile 项目发现、配对、认证 gateway 路由、pane-native
|
|
784
|
+
消息输入、对话上下文渲染、terminal 访问,以及图片/文档上传下载能力。
|
|
785
|
+
- 将 `ccb update mobile` 提升为 Tailscale Tailnet onboarding 的统一入口,
|
|
786
|
+
同时保持 gateway 仅监听 loopback,不启用 Funnel、不保存 token、不自动修改
|
|
787
|
+
ACL/grants。
|
|
788
|
+
|
|
789
|
+
</details>
|
|
790
|
+
|
|
791
|
+
<details>
|
|
698
792
|
<summary><b>v7.7.0</b> - Runtime Accelerator 发布加固</summary>
|
|
699
793
|
|
|
700
794
|
- Release artifacts 现在会携带可选 Rust `ccb-runtime-accelerator`,安装版
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
8.0.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seemseam/ccb",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.3",
|
|
4
4
|
"description": "Visible, controllable multi-agent CLI workspace for Codex, Claude, Gemini, Kimi, MiMo, Qwen, Cursor, Copilot, Crush, Kiro, Pi, Z.ai, OpenCode, Antigravity, and Droid.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"homepage": "https://github.com/SeemSeam/claude_codex_bridge#readme",
|