@ionivetech/mugiwara 0.5.4 → 0.6.0

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 (158) hide show
  1. package/.claude-plugin/marketplace.json +3 -3
  2. package/.claude-plugin/plugin.json +4 -3
  3. package/.codex-plugin/plugin.json +2 -2
  4. package/.cursor-plugin/plugin.json +2 -2
  5. package/.kimi-plugin/plugin.json +2 -2
  6. package/.opencode/commands/mugiwara-continue.md +16 -0
  7. package/.opencode/commands/mugiwara-execute.md +6 -4
  8. package/.opencode/commands/mugiwara-heal.md +6 -4
  9. package/.opencode/commands/mugiwara-plan.md +6 -4
  10. package/.opencode/commands/mugiwara-review.md +6 -4
  11. package/.opencode/commands/mugiwara-security.md +6 -4
  12. package/.opencode/commands/mugiwara-ship.md +6 -4
  13. package/.opencode/commands/mugiwara.md +4 -2
  14. package/.opencode/commands/using-mugiwara.md +7 -13
  15. package/.opencode/plugins/mugiwara.mjs +18 -6
  16. package/AGENTS.md +2 -2
  17. package/GEMINI.md +1 -1
  18. package/README.md +240 -217
  19. package/content/agents/brook-healing.md +17 -3
  20. package/content/agents/chopper-checkpoint.md +17 -3
  21. package/content/agents/eval-runner.md +17 -2
  22. package/content/agents/franky-gates.md +19 -5
  23. package/content/agents/jinbe-security.md +19 -3
  24. package/content/agents/luffy-orchestrator.md +6 -3
  25. package/content/agents/memory-keeper.md +15 -0
  26. package/content/agents/nami-planner.md +21 -6
  27. package/content/agents/onboarding-guide.md +145 -0
  28. package/content/agents/resume-coordinator.md +21 -5
  29. package/content/agents/robin-reviewer.md +18 -3
  30. package/content/agents/sanji-quality.md +19 -4
  31. package/content/agents/skeptic-verifier.md +18 -3
  32. package/content/agents/usopp-brainstorm.md +17 -3
  33. package/content/agents/zoro-execution.md +19 -5
  34. package/content/skills/mugiwara-backend/SKILL.md +1 -1
  35. package/content/skills/mugiwara-brainstorm/SKILL.md +5 -1
  36. package/content/skills/mugiwara-checkpoint/SKILL.md +2 -2
  37. package/content/skills/mugiwara-contract-first/SKILL.md +2 -36
  38. package/content/skills/mugiwara-contract-first/references/process.md +37 -0
  39. package/content/skills/mugiwara-execution/SKILL.md +30 -13
  40. package/content/skills/mugiwara-execution/references/resume-batching.md +32 -0
  41. package/content/skills/mugiwara-frontend/SKILL.md +1 -1
  42. package/content/skills/mugiwara-gates/SKILL.md +32 -30
  43. package/content/skills/mugiwara-healing/SKILL.md +1 -1
  44. package/content/skills/mugiwara-orchestration/SKILL.md +41 -25
  45. package/content/skills/mugiwara-orchestration/references/delegation-pillars.md +40 -0
  46. package/content/skills/mugiwara-orchestration/references/triage-escalation.md +96 -0
  47. package/content/skills/mugiwara-planning/SKILL.md +23 -27
  48. package/content/skills/mugiwara-planning/references/plan-template.md +42 -0
  49. package/content/skills/mugiwara-pr/SKILL.md +2 -2
  50. package/content/skills/mugiwara-quality/SKILL.md +10 -6
  51. package/content/skills/mugiwara-resume/SKILL.md +7 -2
  52. package/content/skills/mugiwara-review/SKILL.md +20 -1
  53. package/content/skills/mugiwara-review/references/code-attributes.md +38 -0
  54. package/content/skills/mugiwara-root-cause/SKILL.md +3 -30
  55. package/content/skills/mugiwara-root-cause/references/process.md +35 -0
  56. package/content/skills/mugiwara-security/SKILL.md +17 -32
  57. package/content/skills/mugiwara-security/references/owasp-top10.md +12 -0
  58. package/content/skills/mugiwara-security/references/rationalizations.md +8 -0
  59. package/content/skills/mugiwara-ship/SKILL.md +5 -4
  60. package/content/skills/mugiwara-workflow/SKILL.md +74 -77
  61. package/content/skills/mugiwara-workflow/references/workspace-layout.md +50 -0
  62. package/content/skills/using-mugiwara/SKILL.md +8 -19
  63. package/dist/mugiwara.js +206 -87
  64. package/gemini-extension.json +1 -1
  65. package/hooks/session-start.ts +1 -1
  66. package/package.json +12 -5
  67. package/plugin.json +2 -2
  68. package/references/multi-actor.md +1 -1
  69. package/scripts/evidence.sh +13 -6
  70. package/scripts/gate-selftest.ts +266 -0
  71. package/scripts/initiative.ts +248 -0
  72. package/scripts/lane.sh +15 -0
  73. package/scripts/mission-report.sh +141 -76
  74. package/scripts/onboard.ts +292 -0
  75. package/scripts/release-notes.ts +42 -13
  76. package/scripts/retrieval-eval.ts +1 -2
  77. package/scripts/run-evals.ts +1 -1
  78. package/scripts/savepoint.sh +97 -50
  79. package/scripts/validate-content.ts +84 -7
  80. package/scripts/verify-install.ts +72 -0
  81. package/src/args.ts +1 -1
  82. package/src/cli.ts +49 -22
  83. package/src/frontmatter.ts +3 -3
  84. package/src/installer.ts +44 -15
  85. package/src/mission.ts +7 -5
  86. package/src/targets/claude.ts +20 -3
  87. package/src/targets/generic.ts +1 -1
  88. package/src/targets/opencode.ts +53 -11
  89. package/docs/adoption-guide.md +0 -72
  90. package/docs/agent-anatomy.md +0 -72
  91. package/docs/agents.md +0 -53
  92. package/docs/audit-trail.md +0 -65
  93. package/docs/claude-setup.md +0 -43
  94. package/docs/codex-setup.md +0 -26
  95. package/docs/comparison.md +0 -58
  96. package/docs/compliance-matrix.md +0 -81
  97. package/docs/config.md +0 -55
  98. package/docs/copilot-setup.md +0 -29
  99. package/docs/cost.md +0 -45
  100. package/docs/cursor-setup.md +0 -25
  101. package/docs/developer-onboarding.md +0 -89
  102. package/docs/enforcement.md +0 -35
  103. package/docs/execution-model.md +0 -92
  104. package/docs/gemini-setup.md +0 -27
  105. package/docs/getting-started.md +0 -158
  106. package/docs/git-strategy.md +0 -62
  107. package/docs/harness-matrix.md +0 -41
  108. package/docs/index.md +0 -56
  109. package/docs/install-antigravity.md +0 -45
  110. package/docs/install-claude.md +0 -75
  111. package/docs/install-cli.md +0 -103
  112. package/docs/install-codex.md +0 -44
  113. package/docs/install-copilot.md +0 -45
  114. package/docs/install-cursor.md +0 -45
  115. package/docs/install-gemini.md +0 -44
  116. package/docs/install-kimi.md +0 -45
  117. package/docs/install-opencode.md +0 -129
  118. package/docs/install-pi.md +0 -46
  119. package/docs/install.md +0 -53
  120. package/docs/lanes.md +0 -82
  121. package/docs/modes.md +0 -74
  122. package/docs/opencode-setup.md +0 -54
  123. package/docs/pr-summary.md +0 -54
  124. package/docs/rule-based-setup.md +0 -31
  125. package/docs/skill-anatomy.md +0 -71
  126. package/docs/skills.md +0 -55
  127. package/docs/troubleshooting.md +0 -91
  128. package/docs/windsurf-setup.md +0 -18
  129. package/docs/workflow.md +0 -89
  130. package/evals/cases/_no-skill.json +0 -16
  131. package/evals/cases/adversarial-pressure-fake-pass.json +0 -25
  132. package/evals/cases/adversarial-pressure-skip-review.json +0 -25
  133. package/evals/cases/lane-exploratory-vague.json +0 -24
  134. package/evals/cases/lane-sensitivity-payment.json +0 -24
  135. package/evals/cases/positive-refactor-existing-tests.json +0 -25
  136. package/evals/cases/positive-resume-mid-mission.json +0 -24
  137. package/evals/cases/routing-agent-security.json +0 -25
  138. package/evals/cases/routing-auth-feature.json +0 -26
  139. package/evals/cases/routing-backend.json +0 -25
  140. package/evals/cases/routing-bug-one-file.json +0 -26
  141. package/evals/cases/routing-claim-audit.json +0 -25
  142. package/evals/cases/routing-context-budget.json +0 -25
  143. package/evals/cases/routing-contract-first.json +0 -25
  144. package/evals/cases/routing-execution.json +0 -25
  145. package/evals/cases/routing-frontend.json +0 -26
  146. package/evals/cases/routing-gates.json +0 -25
  147. package/evals/cases/routing-git.json +0 -25
  148. package/evals/cases/routing-healing.json +0 -25
  149. package/evals/cases/routing-lessons.json +0 -25
  150. package/evals/cases/routing-orchestration.json +0 -25
  151. package/evals/cases/routing-planning.json +0 -26
  152. package/evals/cases/routing-pr.json +0 -25
  153. package/evals/cases/routing-quality.json +0 -25
  154. package/evals/cases/routing-ship.json +0 -26
  155. package/evals/cases/routing-sunset.json +0 -25
  156. package/evals/cases/routing-using-mugiwara.json +0 -25
  157. package/evals/cases/routing-workflow.json +0 -25
  158. package/evals/floor.json +0 -6
@@ -1,158 +0,0 @@
1
- # Getting Started
2
-
3
- Install the crew, run your first mission, and understand what you're looking at
4
- in the chat.
5
-
6
- ## 1. Install
7
-
8
- Pick your harness — every major one is supported. The two easiest:
9
-
10
- **opencode** — add the plugin to `opencode.json`:
11
-
12
- ```json
13
- { "plugin": ["@ionivetech/mugiwara"] }
14
- ```
15
-
16
- **Claude Code** — via the marketplace:
17
-
18
- ```bash
19
- /plugin marketplace add ionivetech/mugiwara
20
- /plugin install mugiwara
21
- ```
22
-
23
- | Harness | Install command |
24
- |---------|----------------|
25
- | Claude Code | `/plugin marketplace add ionivetech/mugiwara` then `/plugin install mugiwara` |
26
- | opencode | `{ "plugin": ["@ionivetech/mugiwara"] }` in `opencode.json` |
27
- | GitHub Copilot | `copilot plugin marketplace add ionivetech/mugiwara` then `copilot plugin install mugiwara` |
28
- | Gemini CLI | `gemini extensions install https://github.com/ionivetech/mugiwara` |
29
- | Codex | `codex plugin marketplace add ionivetech/mugiwara` then `codex plugin add mugiwara@mugiwara` |
30
- | Cursor | `/add-plugin mugiwara` |
31
- | Kimi Code | `/plugins install https://github.com/ionivetech/mugiwara` |
32
- | pi | `pi install git:github.com/ionivetech/mugiwara` |
33
- | Windsurf, Cline, Kilo, Antigravity | `npx @ionivetech/mugiwara@latest --project . --target <id> --yes` |
34
-
35
- Or the CLI for any target:
36
-
37
- ```bash
38
- npx @ionivetech/mugiwara@latest --project ./my-app --target all --yes
39
- ```
40
-
41
- Requires **Node.js >= 20.11**. Bun is optional (build-from-source only).
42
-
43
- ## 2. Start a mission
44
-
45
- The workflow **auto-activates** at session start. The crew announces itself,
46
- then give any non-trivial request.
47
-
48
- ### Small: lane 0–1
49
-
50
- ```
51
- > fix the date formatting bug in src/utils/format.ts
52
- ```
53
-
54
- Luffy routes it to **Lane 1** (Lean). Zoro reproduces and fixes, Sanji runs
55
- format + lint + tests. Two waves, visible as compact checkpoint reports. No
56
- nine-wave ceremony for a one-file bug.
57
-
58
- That's lane sizing: the process scales to the work. A typo (Lane 0) runs zero
59
- waves — the fix happens directly.
60
-
61
- ### Medium: lane 2
62
-
63
- ```
64
- > add a search bar to the products page
65
- ```
66
-
67
- Touches frontend + API. Luffy routes to **Lane 2** (Standard). Nami plans 1
68
- wave with 3-5 tasks, Zoro executes test-first, Chopper audits every criterion,
69
- Sanji and Franky gate, Robin and Jinbe review.
70
-
71
- ### Large: lane 3
72
-
73
- ```
74
- > add role-based access control to the API
75
- ```
76
-
77
- Touches auth — Luffy routes to **Lane 3** (Full). All 9 waves run. Nami plans
78
- the migration, Zoro executes, Chopper audits, Sanji tests, Franky gates, Robin
79
- reviews the diff with a breaking-change map, Jinbe runs STRIDE + OWASP, Brook
80
- heals any failures (max 3 cycles), Luffy closes with a mission report + push +
81
- ready PR summary.
82
-
83
- ```
84
- Wave 0 Luffy triage → route: full pipe (auth/ touched)
85
- Wave 2 Nami plan → .mugiwara/plans/2026-08-10-rbac.md (2 waves, 5 tasks)
86
- Wave 3 Zoro execute→ 5 tasks, evidence per task
87
- Wave 4 Chopper audit → PASS: all criteria met, commit hygiene clean
88
- Wave 5 Sanji quality → PASS: lint 0, 312 tests green
89
- Wave 6 Franky gates → PASS: new 94%, modified 87%, build green
90
- Wave 7 Robin review → 2 minor findings (batched)
91
- Wave 7 Jinbe security→ PASS: STRIDE clean, 0 high
92
- Wave 9 Luffy closure→ mission report + push + ready PR summary
93
- ```
94
-
95
- The crew runs **inline** in your main conversation — every wave reports as a
96
- compact checkpoint. Subagents only for parallel task batches.
97
-
98
- Prefer to drive stages yourself? Every stage has a slash command:
99
- `/mugiwara-plan`, `/mugiwara-execute`, `/mugiwara-review`,
100
- `/mugiwara-security`, `/mugiwara-heal`, `/mugiwara-ship`. Jump into any stage.
101
-
102
- ## 3. What you do during a mission
103
-
104
- Almost nothing in `guided` mode:
105
-
106
- - Answer Nami's clarifying questions (one batched round before planning).
107
- - Give the plan an explicit GO when presented.
108
- - Review Brook's rollback note if a risky fix is proposed.
109
- - In every mode, **open the PR at the end** — the crew pushes the branch and
110
- hands you a verdict file with a ready PR summary. The crew never creates a
111
- PR, merges, or deploys.
112
-
113
- Switch to `semi` or `auto` if you want the crew to self-manage branch, commits,
114
- and ambiguities. See [modes](modes.md).
115
-
116
- ## 4. The `.mugiwara/` workspace
117
-
118
- Every mission writes to `.mugiwara/` at the repo root:
119
-
120
- ```
121
- .mugiwara/
122
- ├── config # mode, branch, commit, base, coverage thresholds
123
- ├── state.json # computed at every wave boundary by scripts/savepoint.sh
124
- ├── spec/ # brainstorm output
125
- ├── plans/ # clean execution plan (source of truth from Wave 2)
126
- ├── results/ # audit, quality, gate, closure reports + evidence logs
127
- ├── reports/ # human-readable mission reports
128
- ├── review/ # review + security findings
129
- ├── issues/ # blocker ledger
130
- ├── refs/ # full skill/agent bodies for glob-loading harnesses
131
- └── logs/ # decision log + cross-mission lessons
132
- ```
133
-
134
- **Savepoint** runs at every wave boundary — `state.json` carries lane, wave,
135
- files, blockers, heal cycle, and token budget. Resume reads one file instead of
136
- six. See [audit-trail.md](audit-trail.md) for the full artifact map.
137
-
138
- ## 5. Configuration
139
-
140
- `.mugiwara/config` (project) overrides `~/.mugiwara/config` (global):
141
-
142
- | Key | Default | What it controls |
143
- |-----|---------|-----------------|
144
- | `mode` | guided | Autonomy: guided/semi/auto |
145
- | `branch` | `feature/{type}-{issue}-{slug}` | Branch naming pattern |
146
- | `commit` | conventional | Commit style: conventional/gitmoji/plain |
147
- | `base` | main | PR target branch |
148
- | `coverage_new` | 90 | Coverage % for new files |
149
- | `coverage_modified` | 80 | Coverage % for modified files |
150
-
151
- ## 6. Next steps
152
-
153
- - Meet the [crew](agents.md) — 14 agents with permission boundaries.
154
- - Browse the [skills](skills.md) — 26 skills with the 3-layer disclosure model.
155
- - Understand the [lanes](lanes.md) — how work is sized before it runs.
156
- - Set your [mode](modes.md) — guided/semi/auto.
157
- - Read the [audit trail](audit-trail.md) — every artifact and how to review it.
158
- - See the [compliance matrix](compliance-matrix.md) — rule compliance per model.
@@ -1,62 +0,0 @@
1
- # Git Strategy
2
-
3
- Commits, branches, save-points — and why the executor commits, not the closer.
4
-
5
- ## Who commits and when
6
-
7
- **Zoro commits during execution, per logical task.** The executor is the one
8
- making the changes, so it commits at the moment each unit of work passes its
9
- acceptance criteria. This gives:
10
-
11
- - **Save-points** — rollback is one `git reset --hard <save-point>` away.
12
- - **Reversibility** — every commit is one logical change you can name.
13
- - **Bisectability** — a regression points at the exact commit that introduced it.
14
-
15
- Luffy does NOT re-commit at closure. The closer pushes the mission branch and
16
- writes the PR verdict — re-slicing history at the end means one giant diff, no
17
- save-points, and a painful bisect.
18
-
19
- ## Commit granularity: logical tasks, not micro-steps
20
-
21
- A commit = one **logical change** (a feature, a fix, a refactor). The plan's
22
- tasks are sized at that granularity — see `mugiwara-planning`.
23
-
24
- - Adjacent trivial changes (typo, formatting, one-line tweak) fold into the
25
- neighboring logical task's commit.
26
- - Never one commit per keystroke; never a wave of micro-commits.
27
- - If the plan slices finer than a logical change, group adjacent tasks into one
28
- commit and note the grouping in the execution report.
29
-
30
- ## The rules (from `mugiwara-git`)
31
-
32
- 1. **Atomic commits.** One logical change per commit; each commit compiles and
33
- passes the relevant checks — never commit a broken tree.
34
- 2. **Exact staging.** `git add` specific files and paths, never `git add -A`
35
- sweeping an unrelated commit.
36
- 3. **Save-points before risky work.** Commit the working state with a naming
37
- intent message (`checkpoint: before renderer migration`) before refactors,
38
- migrations, or merges.
39
- 4. **Match repo style.** Inspect `git log --oneline -20` before the first
40
- commit and copy the observed conventions (prefix style, case, body usage).
41
- 5. **Never commit secrets.** Scan for `.env*`, keys, tokens before every
42
- commit. A secret already committed = treat as compromised, rotate, purge,
43
- file a security finding.
44
-
45
- ## Branches
46
-
47
- One branch per mission, from the config `branch` key:
48
-
49
- ```
50
- branch=feature/{type}-{issue}-{slug}
51
- ```
52
-
53
- `{type}` = feat/fix/chore/refactor from the task, `{issue}` = ticket/key
54
- reference (fallback: date), `{slug}` = kebab-case mission title. Created before
55
- the first task commit; never force-push once pushed. No mugiwara-prefixed
56
- branch names.
57
-
58
- ## Terminal step
59
-
60
- Every mode ends the same way: save-point commit → `git push -u origin <branch>`
61
- → PR verdict file written (per `mugiwara-pr`) → branch + verdict handed to you,
62
- who opens the PR. The crew never creates a PR, merges, or deploys.
@@ -1,41 +0,0 @@
1
- # Harness Matrix
2
-
3
- What actually differs per harness tier. Every skill and agent file ships to every harness, but behavior differs in three tiers.
4
-
5
- | Tier | Harnesses | Skills | Agents | `references/` | Scope |
6
- |------|-----------|--------|--------|:---:|-------|
7
- | **1** | Claude Code, opencode | Native, auto-trigger per skill | Real, dispatchable | Yes | global + project |
8
- | **2** | Gemini, Codex, Copilot | Full body in rules dir + bootstrap pointer | Markdown only | Yes | project only |
9
- | **3** | Windsurf, Cline, Kilo, Antigravity | Stub; body in `.mugiwara/refs/` | Stub | Yes | project only |
10
-
11
- ## Behavioral differences
12
-
13
- ### Tier 1 — Full
14
-
15
- - Skills auto-trigger when `description` frontmatter matches the task.
16
- - Agents are dispatchable subagents with isolation.
17
- - Progressive disclosure works: description → body → `references/`.
18
- - Global scope supported — install once, use in every project.
19
-
20
- ### Tier 2 — Skills only
21
-
22
- - Agent files are markdown — the main thread embodies the persona, no subagent dispatch.
23
- - Skills load as rules files; the model chooses which to read per task.
24
- - **Project scope only** — `generic.ts` throws on global scope.
25
- - `references/` files are copied to `.mugiwara/refs/` and reachable.
26
-
27
- ### Tier 3 — Stubs
28
-
29
- - Rule directories get **stub files** — the frontmatter and a pointer to `.mugiwara/refs/`.
30
- - Full body is loaded only when the agent opens the reference file.
31
- - Saves ~40k tokens of glob-load. Trade: the model must decide to open the ref.
32
- - **Project scope only.**
33
- - `references/` files are copied to `.mugiwara/refs/` — depth is available, just not auto-loaded.
34
- - Wave-boundary state flush: savepoint writes `state.json` so the model has computed state to resume from.
35
-
36
- ## What's the same everywhere
37
-
38
- - All 32 (→ 26) skill directories ship to every harness.
39
- - All 15 agent markdown files ship to every harness.
40
- - `references/` files are always copied.
41
- - The workflow, lane sizing, and evidence discipline are identical — the difference is in how the model loads them.
package/docs/index.md DELETED
@@ -1,56 +0,0 @@
1
- # Mugiwara Docs
2
-
3
- The Straw Hat crew of AI agents and skills. These docs cover what the crew is,
4
- how to adopt it, and how each harness installs it. The crew is markdown plus a
5
- small Node CLI (`mugiwara`) — no daemons, nothing to host. It ships **15
6
- agents** and **32 skills**, and the workflow **auto-activates** at session
7
- start — a non-trivial request runs the pipeline by itself, with
8
- `/using-mugiwara` as an optional explicit router. Work is **sized to a lane**
9
- before it runs: small fixes skip the pipeline, sensitive changes run the full
10
- nine waves, and every wave passes only on **evidence**, never on a spoken
11
- claim.
12
-
13
- ## Start here
14
-
15
- | Doc | What it covers |
16
- |-----|----------------|
17
- | [Getting started](getting-started.md) | Install, first mission, what you see in the chat |
18
- | [Adoption guide](adoption-guide.md) | Pick the harness, pick the mode, fit the crew to your workflow |
19
- | [Modes](modes.md) | guided / semi / auto — the autonomy levels, what each asks you |
20
- | [Config](config.md) | Full reference for `.mugiwara/config` keys and commit styles |
21
- | [Auto-PR](pr-summary.md) | What the crew hands off at closure: push + a ready-to-paste PR summary (it never creates a PR) |
22
- | [The crew](agents.md) | All 14 agents and when to summon each |
23
- | [The techniques](skills.md) | All 32 skills and what each enforces |
24
- | [The wave pipeline](workflow.md) | How a mission flows Wave 0 → Wave 9 |
25
- | [Execution model](execution-model.md) | Inline-by-default: why the crew runs in your main conversation |
26
- | [Lanes & sizing](lanes.md) | How Luffy sizes work at triage: Lane 0–4, escalation, budget |
27
- | [Enforcement](enforcement.md) | Skip gates, evidence over claims, and capability tiers |
28
- | [Git discipline](git-strategy.md) | Commits, branches, save-points — and why the executor commits |
29
-
30
- ## Install by harness
31
-
32
- | Harness | Guide |
33
- |---------|-------|
34
- | Claude Code | [claude-setup.md](claude-setup.md) |
35
- | opencode | [opencode-setup.md](opencode-setup.md) |
36
- | GitHub Copilot | [copilot-setup.md](copilot-setup.md) |
37
- | Gemini CLI | [gemini-setup.md](gemini-setup.md) |
38
- | Codex | [codex-setup.md](codex-setup.md) |
39
- | Cursor | [cursor-setup.md](cursor-setup.md) |
40
- | Windsurf | [windsurf-setup.md](windsurf-setup.md) |
41
- | Cline / Kilo / Antigravity | [rule-based-setup.md](rule-based-setup.md) |
42
-
43
- ## Reference
44
-
45
- | Doc | What it covers |
46
- |-----|----------------|
47
- | [Skill anatomy](skill-anatomy.md) | How a mugiwara skill file is structured |
48
- | [Agent anatomy](agent-anatomy.md) | How a mugiwara agent file is structured |
49
- | [Troubleshooting](troubleshooting.md) | Common problems and how to fix them |
50
- | [Developer onboarding](developer-onboarding.md) | Repo layout, validation, tests, contributing |
51
-
52
- ## Resources
53
-
54
- - GitHub: <https://github.com/ionivetech/mugiwara>
55
- - npm: <https://www.npmjs.com/package/@ionivetech/mugiwara>
56
- - License: MIT
@@ -1,45 +0,0 @@
1
- # Antigravity Install
2
-
3
- Mugiwara installs as an Antigravity plugin from this repo.
4
-
5
- ## Prerequisites
6
-
7
- - [Antigravity](https://antigravity.google) installed
8
-
9
- ## Install
10
-
11
- ```bash
12
- agy plugin install https://github.com/ionivetech/mugiwara
13
- ```
14
-
15
- ## How it works
16
-
17
- Antigravity reads `.agents/plugins/marketplace.json` and installs the plugin
18
- from the repo root. Skills and agents are auto-discovered.
19
-
20
- ## Verify
21
-
22
- Ask:
23
-
24
- ```
25
- what mugiwara crew members are available?
26
- ```
27
-
28
- ## Update
29
-
30
- Reinstall with the same command:
31
-
32
- ```bash
33
- agy plugin install https://github.com/ionivetech/mugiwara
34
- ```
35
-
36
- ## Uninstall
37
-
38
- ```bash
39
- agy plugin uninstall mugiwara
40
- ```
41
-
42
- ## Configuration
43
-
44
- After install, configure mugiwara in `.mugiwara/config` (project) or
45
- `~/.mugiwara/config` (global). See [docs/config.md](config.md).
@@ -1,75 +0,0 @@
1
- # Claude Code Install
2
-
3
- Mugiwara is a full Claude Code native plugin with agents, skills, and a
4
- session-start hook.
5
-
6
- ## Prerequisites
7
-
8
- - [Claude Code](https://claude.ai/code) installed
9
- - Node.js >= 20.11
10
-
11
- ## Install
12
-
13
- ```bash
14
- /plugin marketplace add ionivetech/mugiwara && /plugin install mugiwara@mugiwara
15
- ```
16
-
17
- ## How it works
18
-
19
- Claude Code clones the repo and reads from:
20
-
21
- - `skills/` and `agents/` — symlinks to `content/skills/` and
22
- `content/agents/`. Claude Code auto-discovers all 26 skills and 14 agents.
23
- - `hooks/hooks.json` — defines a SessionStart hook that runs
24
- `hooks/session-start.ts`, injecting the crew announce header at every
25
- session start.
26
-
27
- The hook announces: "Mugiwara crew available. The workflow auto-activates
28
- for non-trivial requests..."
29
-
30
- ## Verify
31
-
32
- Ask:
33
-
34
- ```
35
- what mugiwara crew members are available?
36
- ```
37
-
38
- Or start any task — the crew auto-activates at session start.
39
-
40
- ## Update
41
-
42
- ```
43
- /plugin update mugiwara
44
- ```
45
-
46
- ## Uninstall
47
-
48
- ```
49
- /plugin uninstall mugiwara
50
- ```
51
-
52
- ## Configuration
53
-
54
- After install, configure mugiwara in `.mugiwara/config` (project) or
55
- `~/.mugiwara/config` (global). See [docs/config.md](config.md).
56
-
57
- Switch autonomy mode with `/mugiwara-mode guided|semi|auto`.
58
-
59
- ## Troubleshooting
60
-
61
- ### Plugin not showing up
62
-
63
- 1. Verify marketplace is registered: `/plugin marketplace list`
64
- 2. If not, re-run the marketplace add command
65
- 3. Check Claude Code is up to date
66
-
67
- ### Skills not found
68
-
69
- 1. Check that `skills/` and `agents/` symlinks resolve correctly
70
- 2. Reinstall: `/plugin uninstall mugiwara` then reinstall
71
-
72
- ### Hook not running
73
-
74
- The session-start hook requires Claude Code plugin hook support. Ensure
75
- you're on a recent Claude Code version.
@@ -1,103 +0,0 @@
1
- # CLI Install (Windsurf, Cline, Kilo)
2
-
3
- These platforms don't have native plugin systems. Use the mugiwara CLI
4
- installer to copy files into the platform's config directory.
5
-
6
- ## Prerequisites
7
-
8
- - Node.js >= 20.11
9
-
10
- ## Install
11
-
12
- ```bash
13
- npx @ionivetech/mugiwara@latest install --target <id> --yes
14
- ```
15
-
16
- Replace `<id>` with one of: `windsurf`, `cline`, `kilo`.
17
-
18
- Or install globally first:
19
-
20
- ```bash
21
- npm i -g @ionivetech/mugiwara
22
- mugiwara install --target <id> --yes
23
- ```
24
-
25
- ### What gets written
26
-
27
- | Target | Skills/agents | References | Bootstrap |
28
- |--------|---------------|------------|-----------|
29
- | Windsurf | `.devin/rules/*.md` (stubs) | `.mugiwara/refs/*.md` | — |
30
- | Cline | `.clinerules/*.md` (stubs) | `.mugiwara/refs/*.md` | — |
31
- | Kilo | `.kilo/rules/*.md` (stubs) | `.mugiwara/refs/*.md` | `kilo.jsonc` |
32
-
33
- Tier 3 targets use stubs (pointer + routing) to keep rule files small.
34
- Full skill bodies live in `.mugiwara/refs/` — the agent loads them on demand.
35
-
36
- ### Interactive mode
37
-
38
- Drop `--yes` for the interactive wizard:
39
-
40
- ```bash
41
- npx @ionivetech/mugiwara install
42
- ```
43
-
44
- Pick scope (global/project), target(s), and confirm before writing.
45
-
46
- ### Multiple targets
47
-
48
- ```bash
49
- npx @ionivetech/mugiwara install --target windsurf,cline,kilo --yes
50
- ```
51
-
52
- Or all available targets:
53
-
54
- ```bash
55
- npx @ionivetech/mugiwara install --target all --yes
56
- ```
57
-
58
- ## Verify
59
-
60
- Ask your agent:
61
-
62
- ```
63
- what mugiwara crew members are available?
64
- ```
65
-
66
- ## Update
67
-
68
- ```bash
69
- mugiwara update
70
- # or: npx @ionivetech/mugiwara@latest update
71
- ```
72
-
73
- ## Uninstall
74
-
75
- ```bash
76
- mugiwara uninstall
77
- ```
78
-
79
- ## Global install
80
-
81
- ```bash
82
- mugiwara install --global --target <id> --yes
83
- ```
84
-
85
- Installs to `~/.devin/rules/` (Windsurf), `~/.clinerules/` (Cline), or
86
- `~/.kilo/rules/` (Kilo).
87
-
88
- ## Configuration
89
-
90
- After install, configure mugiwara in `.mugiwara/config` (project) or
91
- `~/.mugiwara/config` (global). See [docs/config.md](config.md).
92
-
93
- ## CLI reference
94
-
95
- ```bash
96
- mugiwara install # wizard (interactive)
97
- mugiwara install --project . --target all --yes # non-interactive
98
- mugiwara update # replace existing files
99
- mugiwara uninstall # remove what manifest recorded
100
- mugiwara list # show installations
101
- mugiwara reset --keep-logs # wipe mission state, keep lessons
102
- mugiwara reset --force # override multi-actor guard
103
- ```
@@ -1,44 +0,0 @@
1
- # Codex Install
2
-
3
- Mugiwara installs as a native Codex plugin.
4
-
5
- ## Prerequisites
6
-
7
- - [Codex](https://github.com/openai/codex) CLI or app installed
8
-
9
- ## Install
10
-
11
- ```bash
12
- codex plugin marketplace add ionivetech/mugiwara && codex plugin add mugiwara@mugiwara
13
- ```
14
-
15
- ## How it works
16
-
17
- Codex reads `.codex-plugin/plugin.json` which references `content/skills/`.
18
- All 26 skills are auto-discovered. Agents come from `content/agents/` via the
19
- `agents/` symlink.
20
-
21
- ## Verify
22
-
23
- Ask:
24
-
25
- ```
26
- what mugiwara crew members are available?
27
- ```
28
-
29
- ## Update
30
-
31
- ```bash
32
- codex plugin update mugiwara
33
- ```
34
-
35
- ## Uninstall
36
-
37
- ```bash
38
- codex plugin remove mugiwara
39
- ```
40
-
41
- ## Configuration
42
-
43
- After install, configure mugiwara in `.mugiwara/config` (project) or
44
- `~/.mugiwara/config` (global). See [docs/config.md](config.md).
@@ -1,45 +0,0 @@
1
- # GitHub Copilot Install
2
-
3
- Mugiwara installs as a Copilot plugin directly from the GitHub repo.
4
-
5
- ## Prerequisites
6
-
7
- - [GitHub Copilot](https://docs.github.com/en/copilot) extension installed
8
-
9
- ## Install
10
-
11
- ```bash
12
- copilot plugin install https://github.com/ionivetech/mugiwara
13
- ```
14
-
15
- ## How it works
16
-
17
- Copilot clones the repo and auto-discovers skills from `content/skills/`
18
- and agents from `content/agents/`.
19
-
20
- ## Verify
21
-
22
- Ask:
23
-
24
- ```
25
- what mugiwara crew members are available?
26
- ```
27
-
28
- ## Update
29
-
30
- Reinstall with the same command:
31
-
32
- ```bash
33
- copilot plugin install https://github.com/ionivetech/mugiwara
34
- ```
35
-
36
- ## Uninstall
37
-
38
- ```bash
39
- copilot plugin uninstall mugiwara
40
- ```
41
-
42
- ## Configuration
43
-
44
- After install, configure mugiwara in `.mugiwara/config` (project) or
45
- `~/.mugiwara/config` (global). See [docs/config.md](config.md).
@@ -1,45 +0,0 @@
1
- # Cursor Install
2
-
3
- Mugiwara installs through Cursor's plugin marketplace.
4
-
5
- ## Prerequisites
6
-
7
- - [Cursor](https://cursor.com) installed
8
-
9
- ## Install
10
-
11
- ```
12
- /add-plugin mugiwara
13
- ```
14
-
15
- ## How it works
16
-
17
- Cursor reads `.cursor-plugin/plugin.json` and auto-discovers skills from
18
- `content/skills/`.
19
-
20
- ## Verify
21
-
22
- Ask:
23
-
24
- ```
25
- what mugiwara crew members are available?
26
- ```
27
-
28
- ## Update
29
-
30
- Re-run:
31
-
32
- ```
33
- /add-plugin mugiwara
34
- ```
35
-
36
- ## Uninstall
37
-
38
- ```
39
- /remove-plugin mugiwara
40
- ```
41
-
42
- ## Configuration
43
-
44
- After install, configure mugiwara in `.mugiwara/config` (project) or
45
- `~/.mugiwara/config` (global). See [docs/config.md](config.md).