v1.0.1 — Planner label P, smart CLAUDE.md detection, variant explanations
What's new
Planner label changed: T4 → P
· Squad 3-terminal mode used to be confusing: T1, T2, T4 (where's T3?). Now it's T1, T2, P — natural and clear regardless of terminal count.
· Sub-agents now lock under `P-` instead of `terminal 4-`.
· Affects all intros, lock format examples, the CLAUDE.md template, and reference docs.
Lock format simplified
· Old format: `- frontend/src/views/admin/Dashboard.vue → terminal 1 @ `
· New format: `- frontend/src/views/admin/Dashboard.vue → T1 @ `
· Cleaner reads, less typing per acquire.
Wizard now explains Variant A vs B
When the user picks Custom mode, the variant question presents trade-offs explicitly:
· Variant A — feature branches + PR per task. Per-task git history; works with GitHub PR review tooling. Cross-task dependencies become awkward (S2-B can't import from S2-A until S2-A is merged); branch overhead.
· Variant B — direct commits to integration branch. Simple, fast, AI-friendly; the approval gate plays the code-review role. Less per-task rollback granularity.
No more blind picking.
New explicit "branch model" question
After Variant A/B is picked, the wizard asks how many long-lived branches:
· One branch (`main` only) — daily commits and production both on `main`. Releases tagged.
· Two branches (`dev` + `main`) — daily commits on `dev`. Promotion to `main` via release PR + tag.
Auto-detected from the repo state, but always surfaced as a deliberate choice — users may want to set up a `dev` branch even when only `main` exists.
CLAUDE.md smart-detect
Significant setup-safety improvement. When the existing CLAUDE.md has section headings that overlap with the multi-agent block (Git Workflow, Commit Format, Approval, Locking, Kanban, Terminals), the wizard now:
· Lists the overlapping headings to the user.
· Asks: append anyway / show block and let me merge manually / skip CLAUDE.md update entirely.
· If existing `` markers are found, replaces cleanly between them (the re-run case).
Prevents silent appending that creates duplicate sections.
Fixes
· Removed duplicate Step 3 / Step 4 in the wizard spec.
· CLAUDE.md template clarified: `.multi-agent/config.json` is committed, not gitignored (corrected a contradiction in the previous template text).
Install / upgrade
```
/plugin marketplace update multi-agent-coordination
/plugin update multi-agent-coordination
```