@seemseam/ccb 7.5.3 → 7.6.1
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 +53 -14
- package/README_zh.md +49 -14
- 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-7.
|
|
9
|
+
<img src="https://img.shields.io/badge/version-7.6.1-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-14%20CLI%20families-0B7285.svg" alt="providers">
|
|
12
12
|
</p>
|
|
@@ -83,6 +83,12 @@ After CCB is installed, use CCB's updater:
|
|
|
83
83
|
ccb update
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
+
Install or refresh the optional rich media workbench; it bundles verified binaries where possible and installs only the required terminal/media/font dependencies through the platform package manager:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
ccb update rich
|
|
90
|
+
```
|
|
91
|
+
|
|
86
92
|
<details>
|
|
87
93
|
<summary><b>GitHub release package and source install fallbacks</b></summary>
|
|
88
94
|
|
|
@@ -170,6 +176,16 @@ Agents can also call `/ask` from workflow orchestration to delegate and hand off
|
|
|
170
176
|
| Workspace | Every pane is a real CLI. Switch by mouse or tmux shortcuts. |
|
|
171
177
|
| Useful shortcuts | `Ctrl-b h/j/k/l` switches adjacent panes; `Ctrl-b z` zooms or restores the current CLI pane. |
|
|
172
178
|
|
|
179
|
+
<a id="rich-mode-new"></a>
|
|
180
|
+
|
|
181
|
+
### Rich Mode (NEW!)
|
|
182
|
+
|
|
183
|
+
Run `ccb update rich` to install the optional rich workbench; it bundles Yazi where possible, uses WezTerm for the rich terminal surface, and opens WezTerm + Yazi + LazyVim with Markdown rendering and image/PDF/video previews via `ccb rich`.
|
|
184
|
+
|
|
185
|
+
<p align="center">
|
|
186
|
+
<img src="assets/readme_v7/rich-workbench.png" alt="CCB rich workbench with Yazi PDF preview in WezTerm" width="860">
|
|
187
|
+
</p>
|
|
188
|
+
|
|
173
189
|
### Contact
|
|
174
190
|
|
|
175
191
|
- Email: `bfly123@126.com`
|
|
@@ -312,7 +328,7 @@ CCB resolves config in three layers, from lowest to highest priority:
|
|
|
312
328
|
3. Project config at `.ccb/ccb.config`.
|
|
313
329
|
|
|
314
330
|
Higher layers replace lower layers as a whole; they are not merged. The project authority file is `.ccb/ccb.config`. The old `.ccb_config/ccb.config` path is legacy migration evidence only.
|
|
315
|
-
The built-in default is a v2 `[windows]` config with `agent1`, `agent2`, `agent3`,
|
|
331
|
+
The built-in default is a v2 `[windows]` config with `agent1`, `agent2`, `agent3`, and `ccb_self`. The default `ccb_self` agent uses `codex` and is bound to `agentroles.ccb_self`.
|
|
316
332
|
|
|
317
333
|
`.ccb/ccb.config` mainly controls:
|
|
318
334
|
|
|
@@ -440,10 +456,12 @@ command = "ccb-nvim"
|
|
|
440
456
|
label = "neovim"
|
|
441
457
|
```
|
|
442
458
|
|
|
443
|
-
`ccb
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
459
|
+
`ccb update rich` prepares the optional workbench bundle under CCB-owned XDG paths, downloads and validates bundled binaries where available, and uses the platform package manager only for required rich dependencies such as WezTerm, Markdown/PDF/image/video helpers, and recommended fonts. Under WSL, CCB can launch Windows-native `wezterm.exe` while running the rich tools inside the current Linux distro. Normal `ccb update` keeps this bundle untouched; rerun `ccb update rich` to install, repair, or refresh it, then use `ccb rich` or mount the tool window above. Set `CCB_RICH_DOWNLOAD_BINARIES=0` to skip bundled binary downloads, or `CCB_RICH_INSTALL_DEPS=0` to skip system package installation.
|
|
460
|
+
|
|
461
|
+
Rich workbench tools, including the managed Neovim profile, are installed and updated explicitly with `ccb update rich`. Ordinary `install.sh install`, `ccb update`, and `ccb tools ... neovim` do not provision standalone Neovim; the public Neovim tool route now directs users to `ccb update rich`.
|
|
462
|
+
If `nvim` is not already on `PATH`, rich provisioning may download the official Neovim release tarball for Linux/macOS and verifies the release sha256 before activating it. It does not write `~/.config/nvim`.
|
|
463
|
+
The managed profile defaults to ASCII icons so terminals without Nerd Font support do not show unreadable boxes. To opt back into LazyVim glyph icons, launch the rich workbench with `CCB_LAZYVIM_ICON_STYLE=glyph ccb rich`.
|
|
464
|
+
Use `ccb tools doctor workbench --profile rich` to verify the installed rich bundle. `ccb rich` launches only an already installed and enabled rich bundle; run `ccb update rich` first if the bundle is missing or disabled.
|
|
447
465
|
|
|
448
466
|
#### Per-agent model, API key, or base URL
|
|
449
467
|
|
|
@@ -533,14 +551,6 @@ If agent A is handling a user-originated CCB task and needs agent B's result to
|
|
|
533
551
|
|
|
534
552
|
</details>
|
|
535
553
|
|
|
536
|
-
### Editor Workflow
|
|
537
|
-
|
|
538
|
-
<p align="center">
|
|
539
|
-
<img src="assets/nvim.png" alt="Neovim integration with multi-model code review" width="860">
|
|
540
|
-
</p>
|
|
541
|
-
|
|
542
|
-
CCB does not require leaving your editor. A common setup is: editor for code, CCB terminal for multi-agent planning, implementation, review, testing, and handoff.
|
|
543
|
-
|
|
544
554
|
### Install And Update
|
|
545
555
|
|
|
546
556
|
#### Requirements
|
|
@@ -631,6 +641,35 @@ v7 highlights:
|
|
|
631
641
|
- Hardened tmux, Ghostty, release helper, Codex trust, and provider session restore paths.
|
|
632
642
|
|
|
633
643
|
<details open>
|
|
644
|
+
<summary><b>v7.6.1</b> - Rich Workbench Binary Packaging</summary>
|
|
645
|
+
|
|
646
|
+
- `ccb update rich` now bundles verified Yazi/ya binaries where possible before
|
|
647
|
+
falling back to package managers.
|
|
648
|
+
- Linux rich installs prefer official Yazi musl builds before GNU builds to
|
|
649
|
+
avoid newer glibc requirements on older stable distributions.
|
|
650
|
+
- Downloaded Yazi binaries must pass `--version` validation before activation,
|
|
651
|
+
and invalid managed binaries are removed so fallback paths remain available.
|
|
652
|
+
- Under WSL, rich launchers can use Windows-native `wezterm.exe` while keeping
|
|
653
|
+
CCB, Yazi, and preview helpers inside the current Linux distro.
|
|
654
|
+
|
|
655
|
+
</details>
|
|
656
|
+
|
|
657
|
+
<details>
|
|
658
|
+
<summary><b>v7.6.0</b> - Rich Workbench Lifecycle</summary>
|
|
659
|
+
|
|
660
|
+
- Makes rich workbench an explicit optional bundle installed with
|
|
661
|
+
`ccb update rich`.
|
|
662
|
+
- Keeps ordinary `install.sh install` and `ccb update` focused on CCB itself;
|
|
663
|
+
they no longer auto-provision standalone Neovim.
|
|
664
|
+
- Public `ccb tools ... neovim` routes now refuse standalone provisioning and
|
|
665
|
+
point users to `ccb update rich`; `ccb rich` launches only an installed and
|
|
666
|
+
enabled rich bundle.
|
|
667
|
+
- Restores the CCB tmux status bar to one line by removing the old second-line
|
|
668
|
+
copy hint.
|
|
669
|
+
|
|
670
|
+
</details>
|
|
671
|
+
|
|
672
|
+
<details>
|
|
634
673
|
<summary><b>v7.5.3</b> - Kimi Runtime Reliability And Hindsight Compatibility</summary>
|
|
635
674
|
|
|
636
675
|
- Adds Kimi runtime hardening without changing other provider execution paths:
|
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-7.
|
|
9
|
+
<img src="https://img.shields.io/badge/version-7.6.1-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-14%20CLI%20families-0B7285.svg" alt="providers">
|
|
12
12
|
</p>
|
|
@@ -83,6 +83,12 @@ npm install -g @seemseam/ccb
|
|
|
83
83
|
ccb update
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
+
可选富媒体工作台用 `ccb update rich` 安装或刷新;它会优先下载并验证可封装的二进制,只把必要的终端、媒体和字体依赖交给平台包管理器安装:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
ccb update rich
|
|
90
|
+
```
|
|
91
|
+
|
|
86
92
|
<details>
|
|
87
93
|
<summary><b>GitHub release 包和源码安装兜底</b></summary>
|
|
88
94
|
|
|
@@ -171,6 +177,16 @@ ccb
|
|
|
171
177
|
| 工作区 | 每个 pane 都是真实 CLI;可以鼠标点击切换,也可以用 tmux 快捷键切换。 |
|
|
172
178
|
| 常用技巧 | `Ctrl-b h/j/k/l` 切换相邻 pane,`Ctrl-b z` 放大或还原当前 CLI pane。 |
|
|
173
179
|
|
|
180
|
+
<a id="rich-mode-new"></a>
|
|
181
|
+
|
|
182
|
+
### Rich 模式(NEW!)
|
|
183
|
+
|
|
184
|
+
运行 `ccb update rich` 安装可选富媒体工作台;它会尽量封装 Yazi 等二进制,并用 WezTerm 承载富媒体终端界面,再通过 `ccb rich` 打开 WezTerm + Yazi + LazyVim,支持 Markdown 渲染和图片/PDF/视频预览。
|
|
185
|
+
|
|
186
|
+
<p align="center">
|
|
187
|
+
<img src="assets/readme_v7/rich-workbench.png" alt="CCB rich 富媒体工作台在 WezTerm 中使用 Yazi 预览 PDF" width="860">
|
|
188
|
+
</p>
|
|
189
|
+
|
|
174
190
|
### 联系方式
|
|
175
191
|
|
|
176
192
|
- Email: `bfly123@126.com`
|
|
@@ -308,7 +324,7 @@ CCB 配置有三层,优先级从低到高:
|
|
|
308
324
|
3. 项目配置 `.ccb/ccb.config`。
|
|
309
325
|
|
|
310
326
|
更高层会整体替换低层,不做局部合并。当前项目的权威配置文件是 `.ccb/ccb.config`;旧路径 `.ccb_config/ccb.config` 只应作为迁移参考。
|
|
311
|
-
内置默认配置是 v2 `[windows]` 拓扑,包含 `agent1`、`agent2`、`agent3
|
|
327
|
+
内置默认配置是 v2 `[windows]` 拓扑,包含 `agent1`、`agent2`、`agent3` 和 `ccb_self`。默认 `ccb_self` 使用 `codex` 并绑定 `agentroles.ccb_self`。
|
|
312
328
|
|
|
313
329
|
`.ccb/ccb.config` 主要配置这些内容:
|
|
314
330
|
|
|
@@ -431,10 +447,12 @@ command = "ccb-nvim"
|
|
|
431
447
|
label = "neovim"
|
|
432
448
|
```
|
|
433
449
|
|
|
434
|
-
`ccb
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
450
|
+
`ccb update rich` 会在 CCB 自己的 XDG 目录下准备可选工作台包,优先下载并验证可封装的二进制,只把 WezTerm、Markdown/PDF/图片/视频辅助工具和推荐字体等必要依赖交给平台包管理器。WSL 下可以调用 Windows 原生 `wezterm.exe`,同时让 rich 工具继续运行在当前 Linux 发行版内。普通 `ccb update` 不会主动安装或刷新该包;需要安装、修复或更新时重新运行 `ccb update rich`,然后使用 `ccb rich` 或上面的工具 window 挂载方式启动。设置 `CCB_RICH_DOWNLOAD_BINARIES=0` 可跳过二进制下载,设置 `CCB_RICH_INSTALL_DEPS=0` 可跳过系统包安装。
|
|
451
|
+
|
|
452
|
+
Rich workbench 工具(包括托管 Neovim profile)现在通过 `ccb update rich` 显式安装和更新。普通 `install.sh install`、`ccb update` 和 `ccb tools ... neovim` 不再 provision standalone Neovim;公开 Neovim 工具路由会提示使用 `ccb update rich`。
|
|
453
|
+
如果 `PATH` 里没有 `nvim`,rich provisioning 可能下载 Linux/macOS 官方 Neovim release tarball,并校验 release sha256 后再启用;不会写入 `~/.config/nvim`。
|
|
454
|
+
托管 profile 默认使用 ASCII 图标,避免没有 Nerd Font 的终端出现方块/乱码。确认终端字体支持 Nerd Font 时,可用 `CCB_LAZYVIM_ICON_STYLE=glyph ccb rich` 恢复 LazyVim 图标。
|
|
455
|
+
用 `ccb tools doctor workbench --profile rich` 验证已安装的 rich bundle。`ccb rich` 只启动已经安装并启用的 rich bundle;如果 bundle 缺失或禁用,请先运行 `ccb update rich`。
|
|
438
456
|
|
|
439
457
|
#### 给 agent 单独配置模型、API key 或 base URL
|
|
440
458
|
|
|
@@ -522,14 +540,6 @@ spill 只是兜底,所以只要精确输入或完整输出重要,就应该
|
|
|
522
540
|
|
|
523
541
|
</details>
|
|
524
542
|
|
|
525
|
-
### 编辑器工作流
|
|
526
|
-
|
|
527
|
-
<p align="center">
|
|
528
|
-
<img src="assets/nvim.png" alt="Neovim 集成多模型代码审查" width="860">
|
|
529
|
-
</p>
|
|
530
|
-
|
|
531
|
-
CCB 不要求你离开编辑器。常见方式是:编辑器负责写代码,CCB 终端负责多 agent 规划、实现、审查、测试和交接。
|
|
532
|
-
|
|
533
543
|
### 安装和更新
|
|
534
544
|
|
|
535
545
|
#### 环境要求
|
|
@@ -620,6 +630,31 @@ v7 线重点:
|
|
|
620
630
|
- 加固 tmux、Ghostty、release helper、Codex trust 和 provider 会话恢复路径。
|
|
621
631
|
|
|
622
632
|
<details open>
|
|
633
|
+
<summary><b>v7.6.1</b> - Rich Workbench 二进制封装</summary>
|
|
634
|
+
|
|
635
|
+
- `ccb update rich` 会优先封装并验证 Yazi/ya 二进制,再让包管理器兜底。
|
|
636
|
+
- Linux rich 安装优先使用官方 Yazi musl 构建,再回退 GNU 构建,避免旧稳定
|
|
637
|
+
发行版遇到较新的 glibc 要求。
|
|
638
|
+
- 下载的 Yazi 二进制必须通过 `--version` 验证才会启用;无效的 managed
|
|
639
|
+
二进制会被移除,保证后续 fallback 仍可工作。
|
|
640
|
+
- WSL 下 rich launcher 可使用 Windows 原生 `wezterm.exe`,同时让 CCB、Yazi
|
|
641
|
+
和 preview helpers 继续运行在当前 Linux 发行版内。
|
|
642
|
+
|
|
643
|
+
</details>
|
|
644
|
+
|
|
645
|
+
<details>
|
|
646
|
+
<summary><b>v7.6.0</b> - Rich Workbench 生命周期</summary>
|
|
647
|
+
|
|
648
|
+
- Rich workbench 变为显式可选 bundle,统一通过 `ccb update rich` 安装和更新。
|
|
649
|
+
- 普通 `install.sh install` 和 `ccb update` 只处理 CCB 本体,不再自动
|
|
650
|
+
provision standalone Neovim。
|
|
651
|
+
- 公开 `ccb tools ... neovim` 路由会拒绝 standalone provisioning 并提示
|
|
652
|
+
`ccb update rich`;`ccb rich` 只启动已经安装并启用的 rich bundle。
|
|
653
|
+
- CCB tmux 状态栏恢复为单行,移除旧的第二行复制提示。
|
|
654
|
+
|
|
655
|
+
</details>
|
|
656
|
+
|
|
657
|
+
<details>
|
|
623
658
|
<summary><b>v7.5.3</b> - Kimi 运行可靠性与 Hindsight 兼容性</summary>
|
|
624
659
|
|
|
625
660
|
- 增强 Kimi 运行路径,但不改变其他 provider 的执行路径:当 native turn
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.6.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seemseam/ccb",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.6.1",
|
|
4
4
|
"description": "Visible, controllable multi-agent CLI workspace for Codex, Claude, Gemini, Kimi, MiMo, Qwen, Cursor, Copilot, Crush, Kiro, Pi, OpenCode, Antigravity, and Droid.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"homepage": "https://github.com/SeemSeam/claude_codex_bridge#readme",
|