@seemseam/ccb 8.0.12 → 8.0.14

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_en.md ADDED
@@ -0,0 +1,312 @@
1
+ <div align="center">
2
+
3
+ # CCB - Mobile Has Arrived!
4
+
5
+ **Designed around decentralized multi-agent collaboration**
6
+ **A visible, controllable multi-agent TUI workspace**
7
+
8
+ <p>
9
+ <img src="https://img.shields.io/badge/version-8.0.12-orange.svg" alt="version">
10
+ <img src="https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20WSL-lightgrey.svg" alt="platform">
11
+ <img src="https://img.shields.io/badge/providers-15%20CLI%20families-0B7285.svg" alt="providers">
12
+ </p>
13
+
14
+ <p>
15
+ <img src="https://img.shields.io/badge/Codex-111111?style=flat-square&logo=openai&logoColor=white" alt="Codex">
16
+ <img src="https://img.shields.io/badge/Claude-D97757?style=flat-square&logo=anthropic&logoColor=white" alt="Claude">
17
+ <img src="https://img.shields.io/badge/Gemini-4285F4?style=flat-square&logo=googlegemini&logoColor=white" alt="Gemini">
18
+ <img src="https://img.shields.io/badge/Kimi-111111?style=flat-square&logo=moonshotai&logoColor=white" alt="Kimi">
19
+ <img src="https://img.shields.io/badge/MiMo-FF6900?style=flat-square&logo=xiaomi&logoColor=white" alt="MiMo">
20
+ <img src="https://img.shields.io/badge/Qwen-6A5CFF?style=flat-square" alt="Qwen">
21
+ <img src="https://img.shields.io/badge/Cursor-111111?style=flat-square" alt="Cursor">
22
+ <img src="https://img.shields.io/badge/Copilot-111111?style=flat-square&logo=githubcopilot&logoColor=white" alt="GitHub Copilot">
23
+ <img src="https://img.shields.io/badge/Crush-FF5A5F?style=flat-square" alt="Crush">
24
+ <img src="https://img.shields.io/badge/Kiro-6D5EF6?style=flat-square" alt="Kiro">
25
+ <img src="https://img.shields.io/badge/Pi-111111?style=flat-square" alt="Pi">
26
+ <img src="https://img.shields.io/badge/Z.ai-111111?style=flat-square" alt="Z.ai">
27
+ <img src="https://img.shields.io/badge/OpenCode-111111?style=flat-square" alt="OpenCode">
28
+ <img src="https://img.shields.io/badge/Antigravity-6D5EF6?style=flat-square&logo=google&logoColor=white" alt="Antigravity">
29
+ <img src="https://img.shields.io/badge/Droid-3DDC84?style=flat-square&logo=android&logoColor=white" alt="Droid">
30
+ </p>
31
+
32
+ [中文](README.md) | **English** | [日本語](readme_ja.md) | [Français](readme_fr.md) | [Deutsch](readme_de.md) | [العربية](readme_ar.md) | [Español](readme_es.md) | [Português](readme_pt.md) | [한국어](readme_ko.md) | [Русский](readme_ru.md)
33
+
34
+ [Quick Start](#quick-start) · [Mobile App](#mobile-app) · [Rich Mode](#rich-mode) · [Configure Agents](#configure-agents) · [User Guide](docs/manuals/user-guide/) · [Developer Guide](docs/manuals/developer-guide/)
35
+
36
+ <p align="center">
37
+ <img src="assets/readme_v7/ccb-hero-en-light.png" alt="CCB visible multi-agent CLI workspace" width="960">
38
+ </p>
39
+
40
+ </div>
41
+
42
+ <a id="supported-clis"></a>
43
+
44
+ ## Supported CLIs
45
+
46
+ You can mix different CLIs per agent in `.ccb/ccb.config`; actual availability depends on local CLI installation and account access.
47
+
48
+ | CLI family | Provider id |
49
+ | :--- | :--- |
50
+ | Codex | `codex` |
51
+ | Claude | `claude` |
52
+ | Gemini | `gemini` |
53
+ | Kimi | `kimi` |
54
+ | MiMo | `mimo` |
55
+ | Qwen | `qwen` |
56
+ | Cursor | `cursor` |
57
+ | GitHub Copilot CLI | `copilot` |
58
+ | Crush | `crush` |
59
+ | Kiro CLI | `kiro` |
60
+ | Pi | `pi` |
61
+ | Z.ai CLI | `zai` |
62
+ | OpenCode | `opencode` |
63
+ | Antigravity | `agy` |
64
+ | Droid | `droid` |
65
+
66
+ <a id="why-ccb"></a>
67
+
68
+ ## Why CCB?
69
+
70
+ - Stable inter-agent communication for complex collaboration graphs such as `A -> B -> C`, `A,B -> C`, and `A -> B,C`.
71
+ - Every agent is a full native terminal with visible layout control and direct takeover.
72
+ - The background daemon keeps project state alive even when the foreground UI is closed.
73
+ - Hub capability: run multiple CLI providers concurrently from one command.
74
+ - Mobile remote controller: cross-provider voice control, file transfer, and remote terminal access.
75
+
76
+ <a id="how-to-install"></a>
77
+
78
+ ## How to Install
79
+
80
+ Install or update with npm:
81
+
82
+ ```bash
83
+ npm install -g @seemseam/ccb
84
+ ```
85
+
86
+ After CCB is installed, use CCB's updater:
87
+
88
+ ```bash
89
+ ccb update
90
+ ```
91
+
92
+ <details>
93
+ <summary><b>GitHub release package and source install fallbacks</b></summary>
94
+
95
+ If npm is not convenient in your environment, download the matching package from [Releases](https://github.com/SeemSeam/claude_codex_bridge/releases), unpack it, and install:
96
+
97
+ ```bash
98
+ tar -xzf ccb-*.tar.gz
99
+ cd ccb-*
100
+ ./install.sh install
101
+ ```
102
+
103
+ Source install is intended only for development or temporary fallback:
104
+
105
+ ```bash
106
+ git clone https://github.com/SeemSeam/claude_codex_bridge.git
107
+ cd claude_codex_bridge
108
+ ./install.sh install
109
+ ```
110
+
111
+ Source install links global `ccb` / `ask` back to the checkout. Regular users should prefer the npm package.
112
+
113
+ </details>
114
+
115
+ <a id="quick-start"></a>
116
+
117
+ ## Quick Start
118
+
119
+ ### 1. Launch
120
+
121
+ Run this from your working directory:
122
+
123
+ ```bash
124
+ ccb
125
+ ```
126
+
127
+ If startup reports that `.ccb` cannot be created automatically or that the project anchor is missing, create `.ccb` manually:
128
+
129
+ ```bash
130
+ mkdir -p .ccb
131
+ ```
132
+
133
+ <a id="configure-agents"></a>
134
+
135
+ ### 2. Create Project Config
136
+
137
+ Create `.ccb/ccb.config` in the project root. The recommended v2 `[windows]` topology uses `,` and `;` to control vertical stacking and horizontal splits inside each window, so `A,B;C,D` is close to a four-pane layout.
138
+
139
+ ```toml
140
+ version = 2
141
+
142
+ [windows]
143
+ main = "main:codex"
144
+ work = "worker1:codex(worktree), worker2:claude(worktree)"
145
+ review = "reviewer:claude, qa:gemini"
146
+
147
+ [ui.sidebar]
148
+ mode = "every_window"
149
+ width = "15%"
150
+ bottom_height = 20
151
+ agents_height = "50%"
152
+ comms_height = "15%"
153
+ tips_height = "35%"
154
+ comms_limit = 3
155
+ ```
156
+
157
+ Validate the config and start the workspace:
158
+
159
+ ```bash
160
+ ccb config validate
161
+ ccb
162
+ ```
163
+
164
+ ### 3. Collaborate
165
+
166
+ You can type directly in any agent pane, or let agents collaborate:
167
+
168
+ ```text
169
+ /ask reviewer review the latest parser changes and list blocking issues.
170
+ ```
171
+
172
+ Agents can also call `/ask` during workflow orchestration to delegate and hand off work. Use agent memory or the project-wide shared memory file `.ccb/ccb_memory.md` for durable coordination.
173
+
174
+ <a id="mobile-app"></a>
175
+
176
+ ## Mobile Remote Control (Android)
177
+
178
+ The recommended way to control CCB from a phone can connect to all CCB projects, control each agent, accept voice input, and transfer files.
179
+
180
+ ```bash
181
+ ccb update mobile
182
+ ```
183
+
184
+ This command guides installation and configuration.
185
+
186
+ <p align="center">
187
+ <img src="assets/readme_v7/mobile-control-chat.jpg" alt="CCB Mobile agent chat" width="180">
188
+ <img src="assets/readme_v7/mobile-control-terminal.jpg" alt="CCB Mobile terminal control" width="180">
189
+ <img src="assets/readme_v7/mobile-control-files.jpg" alt="CCB Mobile file transfer" width="180">
190
+ <img src="assets/readme_v7/mobile-control-pairing.jpg" alt="CCB Mobile pairing and connection" width="180">
191
+ </p>
192
+
193
+ <details>
194
+ <summary><b>Mobile App details, safety boundary, and source</b></summary>
195
+
196
+ CCB 8.0.12 includes the Flutter CCB Mobile source in [`mobile/`](mobile/) and publishes the Android APK through GitHub Releases:
197
+
198
+ - [Download CCB Mobile v8.0.12 APK](https://github.com/bfly123/claude_code_bridge/releases/download/v8.0.12/ccb-mobile-v8.0.12.apk)
199
+ - App source: [`mobile/app`](mobile/app)
200
+ - Server gateway source: [`lib/mobile_gateway`](lib/mobile_gateway)
201
+
202
+ The phone app is a remote controller for real CCB projects running on a server. It can discover mounted projects from the server-wide mobile gateway, switch windows and agents, render agent conversation context, send text through pane-native input, open a terminal view, and upload/download images and documents through the authenticated gateway.
203
+
204
+ Safety boundary:
205
+
206
+ - The CCB gateway binds only to loopback, for example `127.0.0.1:8787`.
207
+ - Remote access uses Tailscale Serve, not Tailscale Funnel.
208
+ - CCB does not store Tailscale passwords, OAuth tokens, admin API tokens, or automatically modify tailnet ACLs/grants.
209
+ - The phone receives only the scopes authorized by the pairing profile, such as view, content, terminal, file upload, and file download.
210
+
211
+ </details>
212
+
213
+ <a id="rich-mode"></a>
214
+
215
+ ## Rich Media Terminal
216
+
217
+ Browse file trees, open files, edit documents, and preview media inside the terminal.
218
+
219
+ <p align="center">
220
+ <img src="assets/readme_v7/rich-workbench.png" alt="CCB rich media workbench using Yazi preview in WezTerm" width="860">
221
+ </p>
222
+
223
+ ```bash
224
+ ccb update rich
225
+ ```
226
+
227
+ After rich mode is enabled, plain `ccb` opens the rich WezTerm launcher automatically unless it is already running inside a CCB-managed rich WezTerm session. Run `ccb uninstall rich` to return to normal terminal startup.
228
+
229
+ <a id="agent-roles"></a>
230
+
231
+ ## Agent Roles Spec And Role Catalog
232
+
233
+ CCB supports [Agent Roles Spec](https://github.com/SeemSeam/agent-roles-spec), a host-neutral specification for packaging specialist agents. It can bundle skills, memory, and tool dependencies into installable, mountable, and removable Role Packs. That repository also serves as the public role catalog.
234
+
235
+ | Role | Purpose |
236
+ | :--- | :--- |
237
+ | `agentroles.ccb_self` | CCB self-maintenance, config help, runtime diagnosis, protected recovery, and workflow orchestration. |
238
+ | `agentroles.archi` | Architecture review, boundary checks, coupling analysis, maintainability risks, and follow-up gate advice. |
239
+ | `agentroles.frontend_engineer` | Frontend design and implementation, design systems, accessibility, browser QA, and reviewed AGY delegation. |
240
+ | `agentroles.mobile_app_engineer` | Mobile design and implementation for iOS, Android, React Native, Expo, Flutter, SwiftUI, Jetpack Compose, and more. |
241
+ | `agentroles.mother` | Role creation, role source audit, role research, blueprint design, and Agent Roles spec compliance checks. |
242
+ | `agentroles.su_ccb` | SU-CCB workflow operations for requirement analysis, planning, dispatch, review gates, archiving, and recovery. |
243
+
244
+ <a id="config-memory"></a>
245
+
246
+ ## Config And Shared Memory
247
+
248
+ If you are not sure how to group windows, how many workers you need, which agents should use worktrees, or which agents need separate models or API routes, ask `ccb_self` in the current workspace. It is CCB's built-in self-agent: it understands CCB commands, config authority, roles, windows, reload boundaries, and common recovery paths, and it can use its private `ccb-config` skill to design a config with you. Blank projects include `ccb_self`; existing custom configs can add it with `ccb roles add agentroles.ccb_self:codex`.
249
+
250
+ `.ccb/ccb_memory.md` is the project-wide shared memory document. Use it for team collaboration rules, project constraints, long-lived context, and agent handoff conventions. Stable cross-agent information belongs there instead of being copied into several provider-private memory files.
251
+
252
+ <a id="contact"></a>
253
+
254
+ ## Contact
255
+
256
+ - Email: `bfly123@126.com`
257
+ - [Telegram group & contact / TG 群与联系](https://t.me/+BKn03v8I_ehmYzRk)
258
+ - WeChat: `seemseam-com`
259
+
260
+ <p align="center">
261
+ <img src="assets/weixin.jpg" alt="WeChat group" width="240">
262
+ </p>
263
+
264
+ <a id="community"></a>
265
+
266
+ ## Community And Credits
267
+
268
+ Thanks to the [Linux.do community](https://linux.do) for testing, feedback, and discussion.
269
+
270
+ Thanks to [tmux-agent-sidebar](https://github.com/hiroppy/tmux-agent-sidebar) for sidebar ideas and inspiration.
271
+
272
+ <a id="release-notes"></a>
273
+
274
+ ## Release Notes
275
+
276
+ <details open>
277
+ <summary><b>v8.0.12</b> - Release CI portability and README localization</summary>
278
+
279
+ - Mobile host registry tests now place temporary Unix sockets under a short `/tmp/ccb-sock-*` path, avoiding `AF_UNIX path too long` failures on macOS CI.
280
+ - `ccb update mobile`, README links, package metadata, and the mobile release manifest now point to the 8.0.12 APK.
281
+ - The Chinese README is now the GitHub main README; English moved to `readme_en.md`, and Japanese, French, German, Arabic, Spanish, Portuguese, Korean, and Russian variants were added with the same section structure.
282
+
283
+ </details>
284
+
285
+ <details>
286
+ <summary><b>v8.0.0</b> - CCB Mobile Monorepo release</summary>
287
+
288
+ - The Flutter CCB Mobile source officially moved into this repository, with the Android APK published through GitHub Releases.
289
+ - Added server-wide mobile project discovery, pairing, authenticated gateway routes, pane-native message input, conversation context rendering, terminal access, and image/document upload and download.
290
+ - Promoted `ccb update mobile` into the unified Tailscale Tailnet onboarding entrypoint while keeping the gateway loopback-only, avoiding Funnel, not storing tokens, and not automatically modifying ACLs/grants.
291
+
292
+ </details>
293
+
294
+ <details>
295
+ <summary><b>v7.7.0</b> - Runtime Accelerator release hardening</summary>
296
+
297
+ - Release artifacts now include the optional Rust `ccb-runtime-accelerator`; installed Codex agents no longer silently fall back to the Python hot path when the sidecar is expected.
298
+ - When a project path makes the Unix socket path too long, the accelerator socket automatically moves to a short per-user runtime socket root.
299
+ - Hardened callback repair and Codex binding cache invalidation, with recorded regression, long-idle Codex soak, Claude callback, and mixed-provider integration evidence.
300
+
301
+ </details>
302
+
303
+ <details>
304
+ <summary><b>v7.6.19</b> - Long-running ask default wait policy</summary>
305
+
306
+ - Regular long-running `ask` calls now continue waiting for real provider/completion results instead of terminalizing as `incomplete/heartbeat_timeout` only because of heartbeat diagnostics.
307
+ - Codex, Claude, and Gemini pane-backed no-terminal timeouts are now explicit opt-in by default, while explicit reliability timeout policies remain available.
308
+ - A 32-minute source-runtime ask smoke confirmed that a task can remain running for more than 30 minutes, then complete with `result_message`, without `heartbeat_timeout` or `incomplete` evidence.
309
+
310
+ </details>
311
+
312
+ See the full history in [CHANGELOG.md](CHANGELOG.md).
package/readme_es.md ADDED
@@ -0,0 +1,312 @@
1
+ <div align="center">
2
+
3
+ # CCB - ¡La app móvil ya llegó!
4
+
5
+ **Diseñado para colaboración multiagente descentralizada**
6
+ **Un espacio de trabajo TUI multiagente visible y controlable**
7
+
8
+ <p>
9
+ <img src="https://img.shields.io/badge/version-8.0.12-orange.svg" alt="version">
10
+ <img src="https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20WSL-lightgrey.svg" alt="platform">
11
+ <img src="https://img.shields.io/badge/providers-15%20CLI%20families-0B7285.svg" alt="providers">
12
+ </p>
13
+
14
+ <p>
15
+ <img src="https://img.shields.io/badge/Codex-111111?style=flat-square&logo=openai&logoColor=white" alt="Codex">
16
+ <img src="https://img.shields.io/badge/Claude-D97757?style=flat-square&logo=anthropic&logoColor=white" alt="Claude">
17
+ <img src="https://img.shields.io/badge/Gemini-4285F4?style=flat-square&logo=googlegemini&logoColor=white" alt="Gemini">
18
+ <img src="https://img.shields.io/badge/Kimi-111111?style=flat-square&logo=moonshotai&logoColor=white" alt="Kimi">
19
+ <img src="https://img.shields.io/badge/MiMo-FF6900?style=flat-square&logo=xiaomi&logoColor=white" alt="MiMo">
20
+ <img src="https://img.shields.io/badge/Qwen-6A5CFF?style=flat-square" alt="Qwen">
21
+ <img src="https://img.shields.io/badge/Cursor-111111?style=flat-square" alt="Cursor">
22
+ <img src="https://img.shields.io/badge/Copilot-111111?style=flat-square&logo=githubcopilot&logoColor=white" alt="GitHub Copilot">
23
+ <img src="https://img.shields.io/badge/Crush-FF5A5F?style=flat-square" alt="Crush">
24
+ <img src="https://img.shields.io/badge/Kiro-6D5EF6?style=flat-square" alt="Kiro">
25
+ <img src="https://img.shields.io/badge/Pi-111111?style=flat-square" alt="Pi">
26
+ <img src="https://img.shields.io/badge/Z.ai-111111?style=flat-square" alt="Z.ai">
27
+ <img src="https://img.shields.io/badge/OpenCode-111111?style=flat-square" alt="OpenCode">
28
+ <img src="https://img.shields.io/badge/Antigravity-6D5EF6?style=flat-square&logo=google&logoColor=white" alt="Antigravity">
29
+ <img src="https://img.shields.io/badge/Droid-3DDC84?style=flat-square&logo=android&logoColor=white" alt="Droid">
30
+ </p>
31
+
32
+ [中文](README.md) | [English](readme_en.md) | [日本語](readme_ja.md) | [Français](readme_fr.md) | [Deutsch](readme_de.md) | [العربية](readme_ar.md) | **Español** | [Português](readme_pt.md) | [한국어](readme_ko.md) | [Русский](readme_ru.md)
33
+
34
+ [Inicio rápido](#quick-start) · [Mobile App](#mobile-app) · [Modo Rich](#rich-mode) · [Configurar agentes](#configure-agents) · [Guía de usuario](docs/manuals/user-guide/) · [Guía de desarrollo](docs/manuals/developer-guide/)
35
+
36
+ <p align="center">
37
+ <img src="assets/readme_v7/ccb-hero-en-light.png" alt="Espacio de trabajo CLI multiagente visible de CCB" width="960">
38
+ </p>
39
+
40
+ </div>
41
+
42
+ <a id="supported-clis"></a>
43
+
44
+ ## CLI compatibles
45
+
46
+ Puedes mezclar distintos CLI por agente en `.ccb/ccb.config`. La disponibilidad real depende de la instalación local del CLI y del acceso de la cuenta.
47
+
48
+ | CLI family | Provider id |
49
+ | :--- | :--- |
50
+ | Codex | `codex` |
51
+ | Claude | `claude` |
52
+ | Gemini | `gemini` |
53
+ | Kimi | `kimi` |
54
+ | MiMo | `mimo` |
55
+ | Qwen | `qwen` |
56
+ | Cursor | `cursor` |
57
+ | GitHub Copilot CLI | `copilot` |
58
+ | Crush | `crush` |
59
+ | Kiro CLI | `kiro` |
60
+ | Pi | `pi` |
61
+ | Z.ai CLI | `zai` |
62
+ | OpenCode | `opencode` |
63
+ | Antigravity | `agy` |
64
+ | Droid | `droid` |
65
+
66
+ <a id="why-ccb"></a>
67
+
68
+ ## ¿Por qué CCB?
69
+
70
+ - Comunicación estable entre agentes para grafos complejos como `A -> B -> C`, `A,B -> C` y `A -> B,C`.
71
+ - Cada agente es una terminal nativa completa, con control visible del diseño y toma directa.
72
+ - El daemon en segundo plano conserva el estado del proyecto aunque se cierre la interfaz frontal.
73
+ - Capacidad Hub: ejecutar varios CLI providers en paralelo desde un solo comando.
74
+ - Controlador móvil remoto: control por voz entre providers, transferencia de archivos y acceso a terminal remoto.
75
+
76
+ <a id="how-to-install"></a>
77
+
78
+ ## Cómo instalar
79
+
80
+ Instala o actualiza con npm:
81
+
82
+ ```bash
83
+ npm install -g @seemseam/ccb
84
+ ```
85
+
86
+ Después de instalar CCB, usa su updater:
87
+
88
+ ```bash
89
+ ccb update
90
+ ```
91
+
92
+ <details>
93
+ <summary><b>Paquete de GitHub release e instalación desde fuente como respaldo</b></summary>
94
+
95
+ Si npm no es conveniente en tu entorno, descarga el paquete adecuado desde [Releases](https://github.com/SeemSeam/claude_codex_bridge/releases), descomprímelo e instálalo:
96
+
97
+ ```bash
98
+ tar -xzf ccb-*.tar.gz
99
+ cd ccb-*
100
+ ./install.sh install
101
+ ```
102
+
103
+ La instalación desde fuente está pensada solo para desarrollo o respaldo temporal:
104
+
105
+ ```bash
106
+ git clone https://github.com/SeemSeam/claude_codex_bridge.git
107
+ cd claude_codex_bridge
108
+ ./install.sh install
109
+ ```
110
+
111
+ La instalación desde fuente enlaza los comandos globales `ccb` / `ask` al checkout actual. Los usuarios normales deberían preferir el paquete npm.
112
+
113
+ </details>
114
+
115
+ <a id="quick-start"></a>
116
+
117
+ ## Inicio rápido
118
+
119
+ ### 1. Iniciar
120
+
121
+ Ejecuta esto desde tu directorio de trabajo:
122
+
123
+ ```bash
124
+ ccb
125
+ ```
126
+
127
+ Si el arranque indica que `.ccb` no puede crearse automáticamente o que falta el ancla del proyecto, créala manualmente:
128
+
129
+ ```bash
130
+ mkdir -p .ccb
131
+ ```
132
+
133
+ <a id="configure-agents"></a>
134
+
135
+ ### 2. Crear la configuración del proyecto
136
+
137
+ Crea `.ccb/ccb.config` en la raíz del proyecto. La topología v2 `[windows]` recomendada usa `,` y `;` para controlar apilamiento vertical y divisiones horizontales dentro de cada window; `A,B;C,D` se parece a un diseño de cuatro panes.
138
+
139
+ ```toml
140
+ version = 2
141
+
142
+ [windows]
143
+ main = "main:codex"
144
+ work = "worker1:codex(worktree), worker2:claude(worktree)"
145
+ review = "reviewer:claude, qa:gemini"
146
+
147
+ [ui.sidebar]
148
+ mode = "every_window"
149
+ width = "15%"
150
+ bottom_height = 20
151
+ agents_height = "50%"
152
+ comms_height = "15%"
153
+ tips_height = "35%"
154
+ comms_limit = 3
155
+ ```
156
+
157
+ Valida la configuración e inicia el espacio de trabajo:
158
+
159
+ ```bash
160
+ ccb config validate
161
+ ccb
162
+ ```
163
+
164
+ ### 3. Colaborar
165
+
166
+ Puedes escribir directamente en cualquier agent pane o hacer que los agentes colaboren:
167
+
168
+ ```text
169
+ /ask reviewer review the latest parser changes and list blocking issues.
170
+ ```
171
+
172
+ Los agentes también pueden llamar a `/ask` durante la orquestación de workflows para delegar y entregar trabajo. Usa la memoria de agente o el archivo compartido del proyecto `.ccb/ccb_memory.md` para coordinación duradera.
173
+
174
+ <a id="mobile-app"></a>
175
+
176
+ ## Control remoto móvil (Android)
177
+
178
+ La forma recomendada de controlar CCB desde un teléfono puede conectarse a todos los proyectos CCB, controlar cada agente, aceptar entrada de voz y transferir archivos.
179
+
180
+ ```bash
181
+ ccb update mobile
182
+ ```
183
+
184
+ Este comando guía la instalación y configuración.
185
+
186
+ <p align="center">
187
+ <img src="assets/readme_v7/mobile-control-chat.jpg" alt="Chat de agente en CCB Mobile" width="180">
188
+ <img src="assets/readme_v7/mobile-control-terminal.jpg" alt="Control de terminal en CCB Mobile" width="180">
189
+ <img src="assets/readme_v7/mobile-control-files.jpg" alt="Transferencia de archivos en CCB Mobile" width="180">
190
+ <img src="assets/readme_v7/mobile-control-pairing.jpg" alt="Emparejamiento y conexión en CCB Mobile" width="180">
191
+ </p>
192
+
193
+ <details>
194
+ <summary><b>Detalles de Mobile App, límite de seguridad y fuente</b></summary>
195
+
196
+ CCB 8.0.12 incluye el código Flutter de CCB Mobile en [`mobile/`](mobile/) y publica el APK Android mediante GitHub Releases:
197
+
198
+ - [Descargar CCB Mobile v8.0.12 APK](https://github.com/bfly123/claude_code_bridge/releases/download/v8.0.12/ccb-mobile-v8.0.12.apk)
199
+ - Fuente de la app: [`mobile/app`](mobile/app)
200
+ - Fuente del gateway del servidor: [`lib/mobile_gateway`](lib/mobile_gateway)
201
+
202
+ La app del teléfono es un controlador remoto para proyectos CCB reales que corren en un servidor. Puede descubrir proyectos montados desde el mobile gateway server-wide, cambiar windows y agents, renderizar contexto de conversación, enviar texto por entrada pane-native, abrir vista terminal y subir/descargar imágenes y documentos por el gateway autenticado.
203
+
204
+ Límite de seguridad:
205
+
206
+ - El gateway CCB solo se enlaza a loopback, por ejemplo `127.0.0.1:8787`.
207
+ - El acceso remoto usa Tailscale Serve, no Tailscale Funnel.
208
+ - CCB no guarda contraseñas de Tailscale, OAuth tokens, admin API tokens, ni modifica automáticamente ACLs/grants del tailnet.
209
+ - El teléfono recibe solo los scopes autorizados por el pairing profile, como view, content, terminal, file upload y file download.
210
+
211
+ </details>
212
+
213
+ <a id="rich-mode"></a>
214
+
215
+ ## Terminal multimedia Rich
216
+
217
+ Explora árboles de archivos, abre archivos, edita documentos y previsualiza medios dentro de la terminal.
218
+
219
+ <p align="center">
220
+ <img src="assets/readme_v7/rich-workbench.png" alt="Workbench multimedia Rich de CCB con vista previa Yazi en WezTerm" width="860">
221
+ </p>
222
+
223
+ ```bash
224
+ ccb update rich
225
+ ```
226
+
227
+ Después de activar rich mode, `ccb` abre automáticamente el rich WezTerm launcher salvo que ya esté dentro de una sesión rich WezTerm gestionada por CCB. Ejecuta `ccb uninstall rich` para volver al inicio normal de terminal.
228
+
229
+ <a id="agent-roles"></a>
230
+
231
+ ## Agent Roles Spec y catálogo de roles
232
+
233
+ CCB admite [Agent Roles Spec](https://github.com/SeemSeam/agent-roles-spec), una especificación host-neutral para empaquetar agentes especialistas. Puede agrupar skills, memoria y dependencias de herramientas en Role Packs instalables, montables y removibles. Ese repositorio también funciona como catálogo público de roles.
234
+
235
+ | Role | Propósito |
236
+ | :--- | :--- |
237
+ | `agentroles.ccb_self` | Automantenimiento de CCB, ayuda de configuración, diagnóstico runtime, recuperación protegida y orquestación de workflows. |
238
+ | `agentroles.archi` | Revisión de arquitectura, verificación de límites, análisis de acoplamiento, riesgos de mantenibilidad y recomendaciones de gates. |
239
+ | `agentroles.frontend_engineer` | Diseño e implementación frontend, design systems, accesibilidad, QA de navegador y delegación AGY revisada. |
240
+ | `agentroles.mobile_app_engineer` | Diseño e implementación móvil para iOS, Android, React Native, Expo, Flutter, SwiftUI, Jetpack Compose y más. |
241
+ | `agentroles.mother` | Creación de roles, auditoría de role source, investigación de roles, diseño de blueprints y controles de cumplimiento de Agent Roles. |
242
+ | `agentroles.su_ccb` | Operaciones workflow SU-CCB para análisis de requisitos, planificación, dispatch, review gates, archivado y recuperación. |
243
+
244
+ <a id="config-memory"></a>
245
+
246
+ ## Configuración y memoria compartida
247
+
248
+ Si no sabes cómo agrupar windows, cuántos workers necesitas, qué agentes deberían usar worktrees o qué agentes necesitan modelos o rutas API separadas, pregunta a `ccb_self` en el espacio de trabajo actual. Es el self-agent integrado de CCB: entiende comandos CCB, autoridad de configuración, roles, windows, límites de reload y rutas comunes de recuperación, y puede usar su skill privado `ccb-config` para diseñar una configuración contigo. Los proyectos vacíos incluyen `ccb_self`; las configuraciones personalizadas existentes pueden agregarlo con `ccb roles add agentroles.ccb_self:codex`.
249
+
250
+ `.ccb/ccb_memory.md` es el documento de memoria compartida de todo el proyecto. Úsalo para reglas de colaboración del equipo, restricciones del proyecto, contexto duradero y convenciones de entrega entre agentes. La información estable entre agentes debe vivir ahí en vez de copiarse en varias memorias privadas de providers.
251
+
252
+ <a id="contact"></a>
253
+
254
+ ## Contacto
255
+
256
+ - Email: `bfly123@126.com`
257
+ - [Telegram group & contact / TG 群与联系](https://t.me/+BKn03v8I_ehmYzRk)
258
+ - WeChat: `seemseam-com`
259
+
260
+ <p align="center">
261
+ <img src="assets/weixin.jpg" alt="Grupo WeChat" width="240">
262
+ </p>
263
+
264
+ <a id="community"></a>
265
+
266
+ ## Comunidad y créditos
267
+
268
+ Gracias a la [comunidad Linux.do](https://linux.do) por pruebas, comentarios y discusión.
269
+
270
+ Gracias a [tmux-agent-sidebar](https://github.com/hiroppy/tmux-agent-sidebar) por las ideas e inspiración de la sidebar.
271
+
272
+ <a id="release-notes"></a>
273
+
274
+ ## Notas de versión
275
+
276
+ <details open>
277
+ <summary><b>v8.0.12</b> - Portabilidad de Release CI y localización del README</summary>
278
+
279
+ - Las pruebas mobile host registry ahora colocan sockets Unix temporales bajo una ruta corta `/tmp/ccb-sock-*`, evitando fallos `AF_UNIX path too long` en macOS CI.
280
+ - `ccb update mobile`, los enlaces del README, los metadatos del paquete y el mobile release manifest ahora apuntan al APK 8.0.12.
281
+ - El README chino es ahora el README principal de GitHub; el inglés pasó a `readme_en.md`, y se agregaron variantes en japonés, francés, alemán, árabe, español, portugués, coreano y ruso con la misma estructura de secciones.
282
+
283
+ </details>
284
+
285
+ <details>
286
+ <summary><b>v8.0.0</b> - Publicación de CCB Mobile Monorepo</summary>
287
+
288
+ - El código Flutter de CCB Mobile entró oficialmente en este repositorio, con el APK Android publicado mediante GitHub Releases.
289
+ - Se agregó descubrimiento server-wide de proyectos móviles, pairing, rutas gateway autenticadas, entrada pane-native, renderizado de contexto de conversación, acceso terminal y subida/descarga de imágenes y documentos.
290
+ - `ccb update mobile` pasó a ser el punto de entrada unificado de onboarding de Tailscale Tailnet, manteniendo el gateway solo en loopback, sin Funnel, sin guardar tokens y sin modificar ACLs/grants automáticamente.
291
+
292
+ </details>
293
+
294
+ <details>
295
+ <summary><b>v7.7.0</b> - Endurecimiento de publicación de Runtime Accelerator</summary>
296
+
297
+ - Los release artifacts ahora incluyen el Rust `ccb-runtime-accelerator` opcional; los agentes Codex instalados ya no caen silenciosamente al Python hot path cuando se espera el sidecar.
298
+ - Cuando la ruta del proyecto hace demasiado larga la ruta Unix socket, el accelerator socket se mueve automáticamente a una raíz runtime corta por usuario.
299
+ - Se reforzó callback repair y la invalidación de cache de binding Codex, con evidencia de regresión, long-idle Codex soak, callback Claude e integración mixed-provider.
300
+
301
+ </details>
302
+
303
+ <details>
304
+ <summary><b>v7.6.19</b> - Política de espera predeterminada para ask largos</summary>
305
+
306
+ - Los `ask` largos normales siguen esperando resultados reales de provider/completion en vez de terminar como `incomplete/heartbeat_timeout` solo por diagnósticos heartbeat.
307
+ - Los no-terminal timeouts pane-backed de Codex, Claude y Gemini ahora son opt-in explícito por defecto, manteniendo disponibles las políticas explícitas de reliability timeout.
308
+ - Un smoke source-runtime ask de 32 minutos confirmó que una tarea puede permanecer running más de 30 minutos y luego completar con `result_message`, sin evidencia de `heartbeat_timeout` ni `incomplete`.
309
+
310
+ </details>
311
+
312
+ Consulta el historial completo en [CHANGELOG.md](CHANGELOG.md).