@seemseam/ccb 7.6.11 → 7.6.12
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 +110 -24
- package/README_zh.md +105 -23
- 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.6.
|
|
9
|
+
<img src="https://img.shields.io/badge/version-7.6.12-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>
|
|
@@ -45,21 +45,29 @@
|
|
|
45
45
|
|
|
46
46
|
Mix CLIs per agent in `.ccb/ccb.config`; actual availability depends on the local CLI installation and account access.
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
48
|
+
<table>
|
|
49
|
+
<tr>
|
|
50
|
+
<td>Codex<br><code>codex</code></td>
|
|
51
|
+
<td>Claude<br><code>claude</code></td>
|
|
52
|
+
<td>Gemini<br><code>gemini</code></td>
|
|
53
|
+
<td>Kimi<br><code>kimi</code></td>
|
|
54
|
+
<td>MiMo<br><code>mimo</code></td>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr>
|
|
57
|
+
<td>Qwen<br><code>qwen</code></td>
|
|
58
|
+
<td>Cursor<br><code>cursor</code></td>
|
|
59
|
+
<td>GitHub Copilot CLI<br><code>copilot</code></td>
|
|
60
|
+
<td>Crush<br><code>crush</code></td>
|
|
61
|
+
<td>Kiro CLI<br><code>kiro</code></td>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr>
|
|
64
|
+
<td>Pi<br><code>pi</code></td>
|
|
65
|
+
<td>Z.ai CLI<br><code>zai</code></td>
|
|
66
|
+
<td>OpenCode<br><code>opencode</code></td>
|
|
67
|
+
<td>Antigravity<br><code>agy</code></td>
|
|
68
|
+
<td>Droid<br><code>droid</code></td>
|
|
69
|
+
</tr>
|
|
70
|
+
</table>
|
|
63
71
|
|
|
64
72
|
**New role specification**: package skills, memory, and tool dependencies into self-contained Role Packs, then create hot-loadable and removable specialist agents.
|
|
65
73
|
|
|
@@ -190,16 +198,49 @@ Run `ccb update rich` to install the optional rich workbench; it bundles Yazi wh
|
|
|
190
198
|
<img src="assets/readme_v7/rich-workbench.png" alt="CCB rich workbench with Yazi preview in WezTerm" width="860">
|
|
191
199
|
</p>
|
|
192
200
|
|
|
201
|
+
### Agent Roles Spec And Role Catalog
|
|
202
|
+
|
|
203
|
+
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.
|
|
204
|
+
|
|
205
|
+
<details>
|
|
206
|
+
<summary><b>Available catalog roles</b></summary>
|
|
207
|
+
|
|
208
|
+
| Role | Basic function |
|
|
209
|
+
| :--- | :--- |
|
|
210
|
+
| `agentroles.ccb_self` | CCB self-maintenance, config help, runtime diagnosis, guarded recovery, and workflow orchestration. |
|
|
211
|
+
| `agentroles.archi` | Architecture review, boundary checks, coupling analysis, maintainability risk, and practical next-step gates. |
|
|
212
|
+
| `agentroles.frontend_engineer` | Frontend design and implementation, design-system work, accessibility, browser QA, and reviewed AGY delegation. |
|
|
213
|
+
| `agentroles.mobile_app_engineer` | Mobile app design and implementation across iOS, Android, React Native, Expo, Flutter, SwiftUI, and Jetpack Compose. |
|
|
214
|
+
| `agentroles.mother` | Role creation, role-source audit, role research, blueprinting, and Agent Roles spec compliance review. |
|
|
215
|
+
| `agentroles.su_ccb` | SU-CCB workflow operation for requirement analysis, planning, dispatch, review gates, archive, and recovery. |
|
|
216
|
+
|
|
217
|
+
</details>
|
|
218
|
+
|
|
193
219
|
### Contact
|
|
194
220
|
|
|
195
221
|
- Email: `bfly123@126.com`
|
|
196
222
|
- WeChat: `seemseam-com`
|
|
197
223
|
|
|
224
|
+
<p align="center">
|
|
225
|
+
<img src="assets/weixin.jpg" alt="WeChat group" width="240">
|
|
226
|
+
</p>
|
|
227
|
+
|
|
198
228
|
---
|
|
199
229
|
|
|
200
230
|
## More Reading
|
|
201
231
|
|
|
202
|
-
Start with Quick Start for first use
|
|
232
|
+
Start with Quick Start for first use. Open only the reference area you need.
|
|
233
|
+
|
|
234
|
+
| Topic | When to open it |
|
|
235
|
+
| :--- | :--- |
|
|
236
|
+
| Concepts and positioning | What CCB is, why multi-agent workflows help, and how CCB compares with other approaches. |
|
|
237
|
+
| Daily operation | Common commands and tmux basics for routine use. |
|
|
238
|
+
| Configuration and roles | `.ccb/ccb.config`, Role Packs, and `ccb_self` configuration help. |
|
|
239
|
+
| Collaboration and maintenance | Ask routes, install/update notes, FAQ, and credits. |
|
|
240
|
+
| Release notes | Current v7 highlights and historical release entries. |
|
|
241
|
+
|
|
242
|
+
<details open>
|
|
243
|
+
<summary><b>Concepts and positioning</b></summary>
|
|
203
244
|
|
|
204
245
|
### What Is CCB?
|
|
205
246
|
|
|
@@ -264,6 +305,11 @@ CCB also supports complex workflows, but it is not an automatic DAG generator. Y
|
|
|
264
305
|
|
|
265
306
|
</details>
|
|
266
307
|
|
|
308
|
+
</details>
|
|
309
|
+
|
|
310
|
+
<details>
|
|
311
|
+
<summary><b>Daily operation</b></summary>
|
|
312
|
+
|
|
267
313
|
### Daily Operation
|
|
268
314
|
|
|
269
315
|
| Goal | Command |
|
|
@@ -326,6 +372,11 @@ New users should avoid pane/window killing shortcuts at first. To stop a CCB pro
|
|
|
326
372
|
|
|
327
373
|
</details>
|
|
328
374
|
|
|
375
|
+
</details>
|
|
376
|
+
|
|
377
|
+
<details>
|
|
378
|
+
<summary><b>Configuration and roles</b></summary>
|
|
379
|
+
|
|
329
380
|
### Configure Your Agent Team
|
|
330
381
|
|
|
331
382
|
CCB resolves config in three layers, from lowest to highest priority:
|
|
@@ -356,10 +407,19 @@ If you want to discuss the configuration before writing it by hand, ask `ccb_sel
|
|
|
356
407
|
|
|
357
408
|
#### Role Packs
|
|
358
409
|
|
|
359
|
-
Role Packs define reusable agent roles
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
410
|
+
Role Packs define reusable agent roles through the
|
|
411
|
+
[Agent Roles Spec](https://github.com/SeemSeam/agent-roles-spec). The spec is a
|
|
412
|
+
host-neutral package format for specialist agents: a Role carries a stable
|
|
413
|
+
identity, responsibilities, non-goals, memory, skills, prompts, references,
|
|
414
|
+
tools, plugin content, validation notes, and host adapter metadata as one
|
|
415
|
+
reviewable unit.
|
|
416
|
+
|
|
417
|
+
The practical value is separation. Role source stays portable and versioned;
|
|
418
|
+
project bindings decide where that Role is mounted; runtime provider state,
|
|
419
|
+
credentials, task progress, and generated projection output stay outside the
|
|
420
|
+
Role. That makes specialist agents easier to install, update, audit, migrate,
|
|
421
|
+
and remove without copying long prompts into every project or mutating user
|
|
422
|
+
global configuration.
|
|
363
423
|
|
|
364
424
|
The recommended default catalog roles are `agentroles.ccb_self`, the CCB
|
|
365
425
|
self-maintenance role, and `agentroles.archi`, an architecture reviewer role
|
|
@@ -369,6 +429,9 @@ refreshes installed roles and installs missing recommended roles in the user
|
|
|
369
429
|
environment. You can also refresh manually:
|
|
370
430
|
|
|
371
431
|
```bash
|
|
432
|
+
ccb roles list
|
|
433
|
+
ccb roles show agentroles.archi
|
|
434
|
+
ccb roles install agentroles.archi
|
|
372
435
|
ccb roles update agentroles.ccb_self
|
|
373
436
|
ccb roles update agentroles.archi
|
|
374
437
|
```
|
|
@@ -518,6 +581,11 @@ By default, `ccb-config` does not edit `.ccb/ccb_memory.md` or `.ccb/agents/<age
|
|
|
518
581
|
|
|
519
582
|
</details>
|
|
520
583
|
|
|
584
|
+
</details>
|
|
585
|
+
|
|
586
|
+
<details>
|
|
587
|
+
<summary><b>Collaboration and maintenance</b></summary>
|
|
588
|
+
|
|
521
589
|
### Agent Collaboration
|
|
522
590
|
|
|
523
591
|
Normal `ask` is submit-and-return: after handing work to the target agent, the current agent should not poll and wait.
|
|
@@ -627,9 +695,10 @@ Thanks to the [Linux.do community](https://linux.do) for testing, feedback, and
|
|
|
627
695
|
|
|
628
696
|
Thanks to [tmux-agent-sidebar](https://github.com/hiroppy/tmux-agent-sidebar) for the sidebar ideas and inspiration.
|
|
629
697
|
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
698
|
+
</details>
|
|
699
|
+
|
|
700
|
+
<details>
|
|
701
|
+
<summary><b>Release notes</b></summary>
|
|
633
702
|
|
|
634
703
|
### Release Notes
|
|
635
704
|
|
|
@@ -643,6 +712,21 @@ v7 highlights:
|
|
|
643
712
|
- Hardened tmux, Ghostty, release helper, Codex trust, and provider session restore paths.
|
|
644
713
|
|
|
645
714
|
<details open>
|
|
715
|
+
<summary><b>v7.6.12</b> - Claude MCP And Hook Inheritance</summary>
|
|
716
|
+
|
|
717
|
+
- Managed Claude agents now inherit Claude Code MCP configuration from the
|
|
718
|
+
source `.claude.json`, including global `mcpServers` and current
|
|
719
|
+
project/workspace MCP server state.
|
|
720
|
+
- Project-level MCP state is mapped only onto the current managed workspace key,
|
|
721
|
+
so unrelated source project records are not copied into the agent home.
|
|
722
|
+
- Source-home Claude Code hooks are merged with CCB-managed finish/activity
|
|
723
|
+
hooks, so installed user hook tools stay visible after agent restart.
|
|
724
|
+
- Managed Claude `.claude.json` is treated as secret provider state because MCP
|
|
725
|
+
definitions may include environment variables or auth-adjacent launch data.
|
|
726
|
+
|
|
727
|
+
</details>
|
|
728
|
+
|
|
729
|
+
<details>
|
|
646
730
|
<summary><b>v7.6.11</b> - Layout Percent And Codex MCP Overlays</summary>
|
|
647
731
|
|
|
648
732
|
- Adds explicit pane split ratios in layout tokens, such as
|
|
@@ -1233,4 +1317,6 @@ v7 highlights:
|
|
|
1233
1317
|
|
|
1234
1318
|
</details>
|
|
1235
1319
|
|
|
1320
|
+
</details>
|
|
1321
|
+
|
|
1236
1322
|
See [CHANGELOG.md](CHANGELOG.md) for the full history.
|
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.6.
|
|
9
|
+
<img src="https://img.shields.io/badge/version-7.6.12-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>
|
|
@@ -45,21 +45,29 @@
|
|
|
45
45
|
|
|
46
46
|
可在 `.ccb/ccb.config` 中按 agent 混用不同 CLI;实际可用性取决于本机 CLI 安装和账号权限。
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
48
|
+
<table>
|
|
49
|
+
<tr>
|
|
50
|
+
<td>Codex<br><code>codex</code></td>
|
|
51
|
+
<td>Claude<br><code>claude</code></td>
|
|
52
|
+
<td>Gemini<br><code>gemini</code></td>
|
|
53
|
+
<td>Kimi<br><code>kimi</code></td>
|
|
54
|
+
<td>MiMo<br><code>mimo</code></td>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr>
|
|
57
|
+
<td>Qwen<br><code>qwen</code></td>
|
|
58
|
+
<td>Cursor<br><code>cursor</code></td>
|
|
59
|
+
<td>GitHub Copilot CLI<br><code>copilot</code></td>
|
|
60
|
+
<td>Crush<br><code>crush</code></td>
|
|
61
|
+
<td>Kiro CLI<br><code>kiro</code></td>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr>
|
|
64
|
+
<td>Pi<br><code>pi</code></td>
|
|
65
|
+
<td>Z.ai CLI<br><code>zai</code></td>
|
|
66
|
+
<td>OpenCode<br><code>opencode</code></td>
|
|
67
|
+
<td>Antigravity<br><code>agy</code></td>
|
|
68
|
+
<td>Droid<br><code>droid</code></td>
|
|
69
|
+
</tr>
|
|
70
|
+
</table>
|
|
63
71
|
|
|
64
72
|
**全新角色规范**:可把 skills、记忆和工具依赖封装进自封闭 Role Pack,快速生成可热加载、可卸载的专业 agent。
|
|
65
73
|
|
|
@@ -191,16 +199,49 @@ ccb
|
|
|
191
199
|
<img src="assets/readme_v7/rich-workbench.png" alt="CCB rich 富媒体工作台在 WezTerm 中使用 Yazi 预览" width="860">
|
|
192
200
|
</p>
|
|
193
201
|
|
|
202
|
+
### Agent Roles Spec 规范和角色库
|
|
203
|
+
|
|
204
|
+
CCB 支持 [Agent Roles Spec](https://github.com/SeemSeam/agent-roles-spec):这是一个 host-neutral 的专业 agent 封装规范,可把专业角色打包成可安装、可挂载、可卸载的 Role Pack。该仓库同时也是公开角色库。
|
|
205
|
+
|
|
206
|
+
<details>
|
|
207
|
+
<summary><b>当前角色库</b></summary>
|
|
208
|
+
|
|
209
|
+
| Role | 基本功能 |
|
|
210
|
+
| :--- | :--- |
|
|
211
|
+
| `agentroles.ccb_self` | CCB 自维护、配置辅助、运行诊断、受保护恢复和工作流编排。 |
|
|
212
|
+
| `agentroles.archi` | 架构审查、边界检查、耦合分析、可维护性风险和后续 gate 建议。 |
|
|
213
|
+
| `agentroles.frontend_engineer` | 前端设计与实现、设计系统、可访问性、浏览器 QA 和受审查的 AGY 委派。 |
|
|
214
|
+
| `agentroles.mobile_app_engineer` | iOS、Android、React Native、Expo、Flutter、SwiftUI、Jetpack Compose 等移动端设计与实现。 |
|
|
215
|
+
| `agentroles.mother` | Role 创建、Role source 审计、角色研究、蓝图设计和 Agent Roles 规范合规检查。 |
|
|
216
|
+
| `agentroles.su_ccb` | SU-CCB 工作流操作,覆盖需求分析、计划、派发、审查 gate、归档和恢复。 |
|
|
217
|
+
|
|
218
|
+
</details>
|
|
219
|
+
|
|
194
220
|
### 联系方式
|
|
195
221
|
|
|
196
222
|
- Email: `bfly123@126.com`
|
|
197
223
|
- 微信: `seemseam-com`
|
|
198
224
|
|
|
225
|
+
<p align="center">
|
|
226
|
+
<img src="assets/weixin.jpg" alt="微信群" width="240">
|
|
227
|
+
</p>
|
|
228
|
+
|
|
199
229
|
---
|
|
200
230
|
|
|
201
231
|
## 更多阅读
|
|
202
232
|
|
|
203
|
-
|
|
233
|
+
初次使用先看“快速开始”即可。下面按用途折叠,需要哪块再展开。
|
|
234
|
+
|
|
235
|
+
| 主题 | 什么时候看 |
|
|
236
|
+
| :--- | :--- |
|
|
237
|
+
| 概念和定位 | 了解 CCB 是什么、多 agent 为什么有用,以及与其他方案的区别。 |
|
|
238
|
+
| 日常操作 | 查常用命令、tmux 基础操作和复制粘贴。 |
|
|
239
|
+
| 配置和角色 | 配 `.ccb/ccb.config`、Role Packs、`ccb_self` 配置助手。 |
|
|
240
|
+
| 协作与维护 | ask 路由、安装更新、FAQ 和致谢。 |
|
|
241
|
+
| 版本记录 | 查看当前 v7 重点和历史版本条目。 |
|
|
242
|
+
|
|
243
|
+
<details open>
|
|
244
|
+
<summary><b>概念和定位</b></summary>
|
|
204
245
|
|
|
205
246
|
### CCB 是什么
|
|
206
247
|
|
|
@@ -263,6 +304,11 @@ CCB 也支持复杂工作流,但它不是自动生成 DAG 的 harness;复杂
|
|
|
263
304
|
|
|
264
305
|
</details>
|
|
265
306
|
|
|
307
|
+
</details>
|
|
308
|
+
|
|
309
|
+
<details>
|
|
310
|
+
<summary><b>日常操作</b></summary>
|
|
311
|
+
|
|
266
312
|
### 日常操作
|
|
267
313
|
|
|
268
314
|
| 目标 | 命令 |
|
|
@@ -322,6 +368,11 @@ CCB 虽然基本全部可以使用鼠标操作,但是学会 tmux 命令可以
|
|
|
322
368
|
|
|
323
369
|
</details>
|
|
324
370
|
|
|
371
|
+
</details>
|
|
372
|
+
|
|
373
|
+
<details>
|
|
374
|
+
<summary><b>配置和角色</b></summary>
|
|
375
|
+
|
|
325
376
|
### 配置 agent 团队
|
|
326
377
|
|
|
327
378
|
CCB 配置有三层,优先级从低到高:
|
|
@@ -352,9 +403,15 @@ CCB 配置有三层,优先级从低到高:
|
|
|
352
403
|
|
|
353
404
|
#### Role Packs
|
|
354
405
|
|
|
355
|
-
Role Pack
|
|
356
|
-
|
|
357
|
-
|
|
406
|
+
Role Pack 通过 [Agent Roles Spec](https://github.com/SeemSeam/agent-roles-spec)
|
|
407
|
+
定义可复用的 agent 角色。这个规范是 host-neutral 的专业 agent 包格式:一个
|
|
408
|
+
Role 可以把稳定身份、职责、非目标、记忆、skills、prompts、references、tools、
|
|
409
|
+
plugin 内容、验证说明和 host adapter metadata 放进一个可审查的独立单元。
|
|
410
|
+
|
|
411
|
+
它的意义是把边界分清楚:Role source 保持可移植、可版本化;项目绑定决定这个
|
|
412
|
+
Role 挂载到哪里;provider 运行态、凭据、任务进度和生成的投影文件都留在 Role
|
|
413
|
+
外部。这样专门 agent 更容易安装、更新、审计、迁移和卸载,不需要在每个项目里复制
|
|
414
|
+
大段 prompt,也不会污染用户全局配置。
|
|
358
415
|
|
|
359
416
|
推荐默认 catalog roles 包括 `agentroles.ccb_self` 和
|
|
360
417
|
`agentroles.archi`:前者是 CCB 自维护角色,后者用于架构审查,来自
|
|
@@ -363,6 +420,9 @@ Role Pack 用来定义可复用的 agent 角色。一个 role 可以包含稳定
|
|
|
363
420
|
推荐角色。也可以手动刷新:
|
|
364
421
|
|
|
365
422
|
```bash
|
|
423
|
+
ccb roles list
|
|
424
|
+
ccb roles show agentroles.archi
|
|
425
|
+
ccb roles install agentroles.archi
|
|
366
426
|
ccb roles update agentroles.ccb_self
|
|
367
427
|
ccb roles update agentroles.archi
|
|
368
428
|
```
|
|
@@ -509,6 +569,11 @@ ccb ask ccb_self "为一个 Python library 设计团队:main 负责任务拆
|
|
|
509
569
|
|
|
510
570
|
</details>
|
|
511
571
|
|
|
572
|
+
</details>
|
|
573
|
+
|
|
574
|
+
<details>
|
|
575
|
+
<summary><b>协作与维护</b></summary>
|
|
576
|
+
|
|
512
577
|
### Agent 之间如何协作
|
|
513
578
|
|
|
514
579
|
普通 `ask` 是提交即返回:把任务交给目标 agent 后,当前 agent 不应该轮询等待。
|
|
@@ -616,9 +681,10 @@ ccb reinstall
|
|
|
616
681
|
|
|
617
682
|
感谢 [tmux-agent-sidebar](https://github.com/hiroppy/tmux-agent-sidebar) 提供的 sidebar 思路和启发。
|
|
618
683
|
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
684
|
+
</details>
|
|
685
|
+
|
|
686
|
+
<details>
|
|
687
|
+
<summary><b>版本记录</b></summary>
|
|
622
688
|
|
|
623
689
|
### 新版本记录
|
|
624
690
|
|
|
@@ -632,6 +698,20 @@ v7 线重点:
|
|
|
632
698
|
- 加固 tmux、Ghostty、release helper、Codex trust 和 provider 会话恢复路径。
|
|
633
699
|
|
|
634
700
|
<details open>
|
|
701
|
+
<summary><b>v7.6.12</b> - Claude MCP 与 Hook 继承</summary>
|
|
702
|
+
|
|
703
|
+
- managed Claude agent 现在会从 source `.claude.json` 继承 Claude Code MCP
|
|
704
|
+
配置,包括全局 `mcpServers` 和当前 project/workspace 的 MCP server 状态。
|
|
705
|
+
- project 级 MCP 状态只映射到当前 managed workspace key,不会把无关 source
|
|
706
|
+
project 记录复制进 agent home。
|
|
707
|
+
- source-home Claude Code hooks 会与 CCB-managed finish/activity hooks 合并,
|
|
708
|
+
用户安装的 hook 工具在 agent restart 后仍可见。
|
|
709
|
+
- managed Claude `.claude.json` 现在按 secret provider state 处理,因为 MCP
|
|
710
|
+
定义可能包含环境变量或接近认证材料的启动配置。
|
|
711
|
+
|
|
712
|
+
</details>
|
|
713
|
+
|
|
714
|
+
<details>
|
|
635
715
|
<summary><b>v7.6.11</b> - Layout Percent 与 Codex MCP Overlay</summary>
|
|
636
716
|
|
|
637
717
|
- 新增显式 pane split 比例 layout token,例如 `agent1:codex@30`;没有
|
|
@@ -1182,4 +1262,6 @@ v7 线重点:
|
|
|
1182
1262
|
|
|
1183
1263
|
</details>
|
|
1184
1264
|
|
|
1265
|
+
</details>
|
|
1266
|
+
|
|
1185
1267
|
完整历史请看 [CHANGELOG.md](CHANGELOG.md)。
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.6.
|
|
1
|
+
7.6.12
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seemseam/ccb",
|
|
3
|
-
"version": "7.6.
|
|
3
|
+
"version": "7.6.12",
|
|
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",
|