@seemseam/ccb 8.0.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 +45 -11
- package/README_zh.md +44 -10
- 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-8.0.
|
|
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>
|
|
@@ -126,7 +126,7 @@ current Android APK download link plus pairing steps.
|
|
|
126
126
|
<details>
|
|
127
127
|
<summary><b>GitHub release package and source install fallbacks</b></summary>
|
|
128
128
|
|
|
129
|
-
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):
|
|
130
130
|
|
|
131
131
|
```bash
|
|
132
132
|
tar -xzf ccb-*.tar.gz
|
|
@@ -137,8 +137,8 @@ cd ccb-*
|
|
|
137
137
|
Source install is for development or temporary fallback use:
|
|
138
138
|
|
|
139
139
|
```bash
|
|
140
|
-
git clone https://github.com/
|
|
141
|
-
cd
|
|
140
|
+
git clone https://github.com/bfly123/claude_code_bridge.git
|
|
141
|
+
cd claude_code_bridge
|
|
142
142
|
./install.sh install
|
|
143
143
|
```
|
|
144
144
|
|
|
@@ -222,10 +222,10 @@ Run `ccb update rich` to install the optional rich workbench; it bundles Yazi wh
|
|
|
222
222
|
|
|
223
223
|
### Mobile App (Android Alpha)
|
|
224
224
|
|
|
225
|
-
CCB 8.0.
|
|
225
|
+
CCB 8.0.3 includes the Flutter CCB Mobile source under [`mobile/`](mobile/)
|
|
226
226
|
and publishes an Android APK as a GitHub Release asset:
|
|
227
227
|
|
|
228
|
-
- [Download CCB Mobile v8.0.
|
|
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
229
|
- App source: [`mobile/app`](mobile/app)
|
|
230
230
|
- Server/gateway source: [`lib/mobile_gateway`](lib/mobile_gateway)
|
|
231
231
|
|
|
@@ -244,10 +244,9 @@ ccb update mobile
|
|
|
244
244
|
Then follow the printed steps:
|
|
245
245
|
|
|
246
246
|
1. Install and sign in to Tailscale on the desktop/server and the phone.
|
|
247
|
-
2.
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
4. Open CCB Mobile and scan the pairing QR.
|
|
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.
|
|
251
250
|
|
|
252
251
|
Security boundaries:
|
|
253
252
|
|
|
@@ -706,7 +705,7 @@ For later updates:
|
|
|
706
705
|
ccb update
|
|
707
706
|
```
|
|
708
707
|
|
|
709
|
-
[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.
|
|
710
709
|
|
|
711
710
|
#### Uninstall
|
|
712
711
|
|
|
@@ -771,6 +770,41 @@ v7 highlights:
|
|
|
771
770
|
- Hardened tmux, Ghostty, release helper, Codex trust, and provider session restore paths.
|
|
772
771
|
|
|
773
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>
|
|
774
808
|
<summary><b>v8.0.0</b> - CCB Mobile Monorepo Release</summary>
|
|
775
809
|
|
|
776
810
|
- Ships the Flutter CCB Mobile source inside this repository and publishes the
|
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-8.0.
|
|
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>
|
|
@@ -113,7 +113,7 @@ ccb update mobile
|
|
|
113
113
|
<details>
|
|
114
114
|
<summary><b>GitHub release 包和源码安装兜底</b></summary>
|
|
115
115
|
|
|
116
|
-
如果当前环境不方便使用 npm,可以到 [Releases](https://github.com/
|
|
116
|
+
如果当前环境不方便使用 npm,可以到 [Releases](https://github.com/bfly123/claude_code_bridge/releases) 下载与你的平台匹配的包,解压后安装:
|
|
117
117
|
|
|
118
118
|
```bash
|
|
119
119
|
tar -xzf ccb-*.tar.gz
|
|
@@ -124,8 +124,8 @@ cd ccb-*
|
|
|
124
124
|
源码安装只建议开发或临时兜底使用:
|
|
125
125
|
|
|
126
126
|
```bash
|
|
127
|
-
git clone https://github.com/
|
|
128
|
-
cd
|
|
127
|
+
git clone https://github.com/bfly123/claude_code_bridge.git
|
|
128
|
+
cd claude_code_bridge
|
|
129
129
|
./install.sh install
|
|
130
130
|
```
|
|
131
131
|
|
|
@@ -210,10 +210,10 @@ ccb
|
|
|
210
210
|
|
|
211
211
|
### Mobile App(Android Alpha)
|
|
212
212
|
|
|
213
|
-
CCB 8.0.
|
|
213
|
+
CCB 8.0.3 已把 Flutter 版 CCB Mobile 源码放入 [`mobile/`](mobile/),
|
|
214
214
|
并在 GitHub Release 中发布 Android APK:
|
|
215
215
|
|
|
216
|
-
- [下载 CCB Mobile v8.0.
|
|
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
217
|
- App 源码:[`mobile/app`](mobile/app)
|
|
218
218
|
- 服务端 gateway 源码:[`lib/mobile_gateway`](lib/mobile_gateway)
|
|
219
219
|
|
|
@@ -231,9 +231,9 @@ ccb update mobile
|
|
|
231
231
|
然后按终端提示:
|
|
232
232
|
|
|
233
233
|
1. 在桌面/服务器和手机上安装并登录同一个 Tailscale tailnet。
|
|
234
|
-
2.
|
|
235
|
-
3.
|
|
236
|
-
4. 打开 CCB Mobile
|
|
234
|
+
2. 在 Android 手机上安装 APK。
|
|
235
|
+
3. 在桌面/服务器运行 `ccb update mobile`。
|
|
236
|
+
4. 打开 CCB Mobile,扫描终端打印的配对二维码。
|
|
237
237
|
|
|
238
238
|
安全边界:
|
|
239
239
|
|
|
@@ -677,7 +677,7 @@ npm install -g @seemseam/ccb
|
|
|
677
677
|
ccb update
|
|
678
678
|
```
|
|
679
679
|
|
|
680
|
-
[GitHub Releases](https://github.com/
|
|
680
|
+
[GitHub Releases](https://github.com/bfly123/claude_code_bridge/releases) 仍作为不方便使用 npm 时的备选路径。源码 checkout 安装只适合开发、验证修复或临时兜底。
|
|
681
681
|
|
|
682
682
|
#### 卸载
|
|
683
683
|
|
|
@@ -742,6 +742,40 @@ v7 线重点:
|
|
|
742
742
|
- 加固 tmux、Ghostty、release helper、Codex trust 和 provider 会话恢复路径。
|
|
743
743
|
|
|
744
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>
|
|
745
779
|
<summary><b>v8.0.0</b> - CCB Mobile Monorepo 发布</summary>
|
|
746
780
|
|
|
747
781
|
- Flutter 版 CCB Mobile 源码正式进入本仓库,并在 GitHub Release 中发布
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
8.0.
|
|
1
|
+
8.0.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seemseam/ccb",
|
|
3
|
-
"version": "8.0.
|
|
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",
|