cc-workspace 4.6.1 → 4.6.2

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.
Files changed (2) hide show
  1. package/README.md +9 -66
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -208,28 +208,6 @@ The orchestrator (Opus) never touches repo code. It clarifies the need,
208
208
  writes a plan in markdown, then sends teammates (Sonnet) to work in
209
209
  parallel in each repo via Agent Teams.
210
210
 
211
- ### Architecture
212
-
213
- ```
214
- orchestrator/
215
- ┌─────────────────────┐
216
- You ◄──────────► │ Team Lead (Opus) │
217
- clarify, plan, │ writes plans/*.md │
218
- review └────────┬────────────┘
219
- │ spawn
220
- ┌───────────────┼───────────────┐
221
- │ │ │
222
- ▼ ▼ ▼
223
- ┌──────────────┐ ┌──────────────┐ ┌──────────────┐
224
- │ Implementer │ │ Implementer │ │ QA Ruthless │
225
- │ (Sonnet) │ │ (Sonnet) │ │ (Sonnet) │
226
- └──────┬───────┘ └──────┬───────┘ └──────────────┘
227
- │ commit │ commit
228
- ▼ ▼ Explorer
229
- /tmp/repo-api /tmp/repo-front (Haiku)
230
- session/feat session/feat read-only
231
- ```
232
-
233
211
  ### Who does what
234
212
 
235
213
  | Role | Model | What it does |
@@ -253,49 +231,15 @@ parallel in each repo via Agent Teams.
253
231
  ### The dispatch-feature workflow (Mode A)
254
232
 
255
233
  ```
256
- User describes feature
257
-
258
-
259
- ┌─── Phase 0: CLARIFY ───┐
260
- Ask max 5 questions │
261
- if ambiguity │
262
- └────────┬────────────────┘
263
-
264
- ┌─── Phase 1-2: PLAN ────┐
265
- │ Load context │
266
- │ Write plan in ./plans/ │
267
- │ Commit units + contract │
268
- │ Wait for approval ◄─┐ │
269
- │ │ No ──┘ │
270
- └────┼────────────────────┘
271
- │ Yes
272
-
273
- ┌─── Phase 2.5: SESSION ─┐
274
- │ git branch session/name │
275
- │ in each impacted repo │
276
- └────────┬────────────────┘
277
-
278
- ┌─── Phase 3: DISPATCH ──────────────────────────┐
279
- │ │
280
- │ Wave 1: Producers (API, data, auth) │
281
- │ ├── Implementer → Commit 1/3 │
282
- │ ├── Implementer → Commit 2/3 │
283
- │ └── Implementer → Commit 3/3 │
284
- │ │ contracts validated │
285
- │ ▼ │
286
- │ Wave 2: Consumers (frontend, integrations) │
287
- │ │ │
288
- │ ▼ │
289
- │ Wave 3: Infra (gateway, config) │
290
- │ │
291
- └────────┬────────────────────────────────────────┘
292
-
293
- ┌─── Phase 4-5: VERIFY ──┐
294
- │ cross-service-check │
295
- │ + qa-ruthless │
296
- └────────┬────────────────┘
297
-
298
- Final summary + propose fixes
234
+ CLARIFY -> ask max 5 questions if ambiguity
235
+ PLAN -> write the plan in ./plans/, wait for approval
236
+ SESSION -> create session branches in impacted repos (Phase 2.5)
237
+ SPAWN -> Wave 1: API/data in parallel
238
+ Wave 2: frontend with validated API contract
239
+ Wave 3: infra/config if applicable
240
+ COLLECT -> update the plan with results
241
+ VERIFY -> cross-service-check + qa-ruthless
242
+ REPORT -> final summary
299
243
  ```
300
244
 
301
245
  ### Security — path-aware writes
@@ -583,7 +527,6 @@ With `--chrome`, the agent:
583
527
  | 3 | **LSP fallback documented** | `qa-ruthless` and `incident-debug` now include explicit Grep+Glob fallback when LSP tool is unavailable. |
584
528
  | 4 | **`cc-workspace uninstall`** | New CLI command to cleanly remove all global components from `~/.claude/`. Interactive confirmation. Local orchestrator/ preserved. |
585
529
  | 5 | **workspace-init fixes** | Removed hardcoded version ("v4.0" → dynamic). Fixed skills count in diagnostic (9 → 13). |
586
- | 6 | **ASCII diagrams in README** | Architecture overview and dispatch workflow now have visual diagrams (ASCII art, compatible with GitHub and npm). |
587
530
 
588
531
  ---
589
532
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-workspace",
3
- "version": "4.6.1",
3
+ "version": "4.6.2",
4
4
  "description": "Claude Code multi-workspace orchestrator — skills, hooks, agents, and templates for multi-service projects",
5
5
  "bin": {
6
6
  "cc-workspace": "./bin/cli.js"