cc-workspace 4.6.0 → 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 +0 -84
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -208,36 +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
- ```mermaid
214
- graph LR
215
- USER([You]) <-->|clarify\nplan\nreview| TL
216
-
217
- subgraph "orchestrator/"
218
- TL["Team Lead\n(Opus 4.6)"]
219
- PLANS["plans/*.md"]
220
- TL -->|writes| PLANS
221
- end
222
-
223
- TL -->|spawn| IMP1["Implementer\n(Sonnet)"]
224
- TL -->|spawn| IMP2["Implementer\n(Sonnet)"]
225
- TL -->|spawn| QA["QA Ruthless\n(Sonnet)"]
226
- TL -.->|scan| EXP["Explorer\n(Haiku)"]
227
-
228
- subgraph "/tmp/ worktrees"
229
- IMP1 -->|commit| WT1["repo-api\nsession/feat"]
230
- IMP2 -->|commit| WT2["repo-front\nsession/feat"]
231
- end
232
-
233
- style TL fill:#6c5ce7,color:#fff
234
- style IMP1 fill:#0d6efd,color:#fff
235
- style IMP2 fill:#0d6efd,color:#fff
236
- style QA fill:#e17055,color:#fff
237
- style EXP fill:#636e72,color:#fff
238
- style USER fill:#1a1a2e,color:#fff
239
- ```
240
-
241
211
  ### Who does what
242
212
 
243
213
  | Role | Model | What it does |
@@ -260,59 +230,6 @@ graph LR
260
230
 
261
231
  ### The dispatch-feature workflow (Mode A)
262
232
 
263
- ```mermaid
264
- flowchart TD
265
- START([User describes feature]) --> CLARIFY
266
-
267
- subgraph "Phase 0 — Clarify"
268
- CLARIFY[Ask max 5 questions\nif ambiguity]
269
- end
270
-
271
- CLARIFY --> PLAN
272
-
273
- subgraph "Phase 1-2 — Plan"
274
- PLAN[Load context\nworkspace.md + constitution.md]
275
- PLAN --> WRITE[Write plan in ./plans/\ncommit units + API contract]
276
- WRITE --> APPROVE{User approves?}
277
- APPROVE -- No --> WRITE
278
- end
279
-
280
- APPROVE -- Yes --> SESSION
281
-
282
- subgraph "Phase 2.5 — Session"
283
- SESSION[Create session branches\ngit branch session/name source]
284
- end
285
-
286
- SESSION --> W1
287
-
288
- subgraph "Phase 3 — Dispatch"
289
- W1["Wave 1: Producers\n(API, data, auth)"]
290
- W1 -->|"contracts validated"| W2["Wave 2: Consumers\n(frontend, integrations)"]
291
- W2 --> W3["Wave 3: Infra\n(gateway, config)"]
292
-
293
- W1 -.- IMP1["Implementer\nCommit 1/3"]
294
- W1 -.- IMP2["Implementer\nCommit 2/3"]
295
- W1 -.- IMP3["Implementer\nCommit 3/3"]
296
- end
297
-
298
- W3 --> VERIFY
299
-
300
- subgraph "Phase 4-5 — Verify"
301
- VERIFY[cross-service-check\n+ qa-ruthless]
302
- end
303
-
304
- VERIFY --> REPORT([Final summary\n+ propose fixes])
305
-
306
- style START fill:#1a1a2e,color:#fff
307
- style REPORT fill:#1a1a2e,color:#fff
308
- style APPROVE fill:#2d3436,color:#fff
309
- style IMP1 fill:#0d6efd,color:#fff
310
- style IMP2 fill:#0d6efd,color:#fff
311
- style IMP3 fill:#0d6efd,color:#fff
312
- ```
313
-
314
- **Text version:**
315
-
316
233
  ```
317
234
  CLARIFY -> ask max 5 questions if ambiguity
318
235
  PLAN -> write the plan in ./plans/, wait for approval
@@ -610,7 +527,6 @@ With `--chrome`, the agent:
610
527
  | 3 | **LSP fallback documented** | `qa-ruthless` and `incident-debug` now include explicit Grep+Glob fallback when LSP tool is unavailable. |
611
528
  | 4 | **`cc-workspace uninstall`** | New CLI command to cleanly remove all global components from `~/.claude/`. Interactive confirmation. Local orchestrator/ preserved. |
612
529
  | 5 | **workspace-init fixes** | Removed hardcoded version ("v4.0" → dynamic). Fixed skills count in diagnostic (9 → 13). |
613
- | 6 | **Mermaid diagrams in README** | Architecture overview and dispatch workflow now have visual flowcharts. Text fallback preserved. |
614
530
 
615
531
  ---
616
532
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-workspace",
3
- "version": "4.6.0",
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"