@ionivetech/mugiwara 0.5.4 → 0.5.5
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/.claude-plugin/marketplace.json +3 -3
- package/.claude-plugin/plugin.json +2 -2
- package/.codex-plugin/plugin.json +2 -2
- package/.cursor-plugin/plugin.json +2 -2
- package/.kimi-plugin/plugin.json +2 -2
- package/AGENTS.md +1 -1
- package/README.md +155 -263
- package/content/agents/zoro-execution.md +1 -2
- package/content/skills/using-mugiwara/SKILL.md +1 -1
- package/dist/mugiwara.js +113 -60
- package/docs/{modes.md → concepts/modes.md} +1 -2
- package/docs/{skills.md → concepts/skills.md} +1 -1
- package/docs/getting-started.md +8 -8
- package/docs/index.md +22 -22
- package/docs/{install-antigravity.md → install/antigravity.md} +1 -1
- package/docs/{install-claude.md → install/claude.md} +4 -2
- package/docs/{install-cli.md → install/cli.md} +19 -7
- package/docs/{install-codex.md → install/codex.md} +1 -1
- package/docs/{install-copilot.md → install/copilot.md} +1 -1
- package/docs/{install-cursor.md → install/cursor.md} +1 -1
- package/docs/{install-gemini.md → install/gemini.md} +1 -1
- package/docs/{install.md → install/index.md} +11 -11
- package/docs/{install-kimi.md → install/kimi.md} +1 -1
- package/docs/{install-opencode.md → install/opencode.md} +20 -6
- package/docs/{install-pi.md → install/pi.md} +1 -1
- package/docs/{adoption-guide.md → reference/adoption-guide.md} +2 -2
- package/docs/{harness-matrix.md → reference/harness-matrix.md} +2 -2
- package/gemini-extension.json +1 -1
- package/package.json +2 -2
- package/plugin.json +2 -2
- package/scripts/evidence.sh +1 -1
- package/scripts/mission-report.sh +60 -73
- package/scripts/retrieval-eval.ts +1 -2
- package/scripts/run-evals.ts +1 -1
- package/scripts/savepoint.sh +1 -1
- package/scripts/validate-content.ts +7 -7
- package/src/args.ts +1 -1
- package/src/cli.ts +49 -22
- package/src/frontmatter.ts +3 -3
- package/src/installer.ts +10 -8
- package/src/targets/opencode.ts +22 -1
- package/docs/claude-setup.md +0 -43
- package/docs/codex-setup.md +0 -26
- package/docs/copilot-setup.md +0 -29
- package/docs/cursor-setup.md +0 -25
- package/docs/gemini-setup.md +0 -27
- package/docs/opencode-setup.md +0 -54
- package/docs/rule-based-setup.md +0 -31
- package/docs/windsurf-setup.md +0 -18
- /package/docs/{agents.md → concepts/agents.md} +0 -0
- /package/docs/{audit-trail.md → concepts/audit-trail.md} +0 -0
- /package/docs/{comparison.md → concepts/comparison.md} +0 -0
- /package/docs/{config.md → concepts/config.md} +0 -0
- /package/docs/{cost.md → concepts/cost.md} +0 -0
- /package/docs/{execution-model.md → concepts/execution-model.md} +0 -0
- /package/docs/{git-strategy.md → concepts/git-strategy.md} +0 -0
- /package/docs/{lanes.md → concepts/lanes.md} +0 -0
- /package/docs/{pr-summary.md → concepts/pr-summary.md} +0 -0
- /package/docs/{workflow.md → concepts/workflow.md} +0 -0
- /package/docs/{agent-anatomy.md → reference/agent-anatomy.md} +0 -0
- /package/docs/{compliance-matrix.md → reference/compliance-matrix.md} +0 -0
- /package/docs/{developer-onboarding.md → reference/developer-onboarding.md} +0 -0
- /package/docs/{enforcement.md → reference/enforcement.md} +0 -0
- /package/docs/{skill-anatomy.md → reference/skill-anatomy.md} +0 -0
package/docs/claude-setup.md
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
# Claude Code Setup
|
|
2
|
-
|
|
3
|
-
Claude Code is a fully supported target — native skills + agents + SessionStart
|
|
4
|
-
hook.
|
|
5
|
-
|
|
6
|
-
## Install via the marketplace
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
/plugin marketplace add ionivetech/mugiwara
|
|
10
|
-
/plugin install mugiwara
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
## Install via CLI (global or per project)
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
# global Claude Code install
|
|
17
|
-
npx @ionivetech/mugiwara@latest --global --target claude --yes
|
|
18
|
-
|
|
19
|
-
# project install
|
|
20
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target claude --yes
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
**Update** — re-install from the marketplace (or `mugiwara update` via CLI).
|
|
24
|
-
|
|
25
|
-
**Uninstall** — `/plugin uninstall mugiwara`, or `mugiwara uninstall` via CLI.
|
|
26
|
-
|
|
27
|
-
## What you get
|
|
28
|
-
|
|
29
|
-
- 32 skills in `~/.claude/skills/` (global) or `.claude/skills/` (project).
|
|
30
|
-
- 14 agents in `~/.claude/agents/` or `.claude/agents/`.
|
|
31
|
-
- A SessionStart hook that announces the crew and auto-activates the workflow —
|
|
32
|
-
a non-trivial request runs the pipeline by itself. `/using-mugiwara` is an
|
|
33
|
-
optional explicit router if you want to hand-route a mission.
|
|
34
|
-
|
|
35
|
-
## Use it
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
> add dark mode to the settings page
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
The crew runs inline in your main conversation; subagents only for parallel
|
|
42
|
-
batches. At closure the crew pushes the branch and hands you the PR verdict
|
|
43
|
-
file with a ready PR summary block — you open the PR, in every mode.
|
package/docs/codex-setup.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Codex Setup
|
|
2
|
-
|
|
3
|
-
## Install
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
codex plugin marketplace add ionivetech/mugiwara
|
|
7
|
-
codex plugin add mugiwara@mugiwara
|
|
8
|
-
```
|
|
9
|
-
|
|
10
|
-
Or via the CLI:
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target codex --yes
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
**Update** — `codex plugin update mugiwara`. **Uninstall** — `codex plugin remove mugiwara`.
|
|
17
|
-
|
|
18
|
-
## What you get
|
|
19
|
-
|
|
20
|
-
- 32 skills as markdown rules in `.codex/mugiwara/`.
|
|
21
|
-
- An `AGENTS.md` bootstrap pointer (created if missing).
|
|
22
|
-
|
|
23
|
-
## Notes
|
|
24
|
-
|
|
25
|
-
Codex is a **project-only** target. Agents are skills-only here — the crew
|
|
26
|
-
pipeline runs through the rule files.
|
package/docs/copilot-setup.md
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# GitHub Copilot Setup
|
|
2
|
-
|
|
3
|
-
## Install via the marketplace
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
copilot plugin marketplace add ionivetech/mugiwara
|
|
7
|
-
copilot plugin install mugiwara
|
|
8
|
-
```
|
|
9
|
-
|
|
10
|
-
## Install via CLI
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target copilot --yes
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
**Update** — `copilot plugin update mugiwara`. **Uninstall** — `copilot plugin uninstall mugiwara`.
|
|
17
|
-
|
|
18
|
-
## What you get
|
|
19
|
-
|
|
20
|
-
- 32 skills as `.instructions.md` files in `.github/` (project) or
|
|
21
|
-
`~/.copilot/` (global).
|
|
22
|
-
- Agents as markdown files in `instructions/` / `agents/`.
|
|
23
|
-
|
|
24
|
-
## Copilot caveat
|
|
25
|
-
|
|
26
|
-
Copilot CLI reads the Claude marketplace for skills, but the agents are
|
|
27
|
-
Claude-native `.md` files and do not auto-discover in Copilot. Skills install
|
|
28
|
-
and function; for full agent support use the CLI install path, which writes
|
|
29
|
-
Copilot-native `.instructions.md` skills and `.md` agents.
|
package/docs/cursor-setup.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Cursor Setup
|
|
2
|
-
|
|
3
|
-
## Install
|
|
4
|
-
|
|
5
|
-
```
|
|
6
|
-
/add-plugin mugiwara
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
Or via the CLI:
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target cursor --yes
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
**Update** — re-run `/add-plugin mugiwara`. **Uninstall** — `/remove-plugin mugiwara`.
|
|
16
|
-
|
|
17
|
-
## What you get
|
|
18
|
-
|
|
19
|
-
- 32 skills as markdown rule files.
|
|
20
|
-
- The `.cursor-plugin/plugin.json` manifest.
|
|
21
|
-
|
|
22
|
-
## Notes
|
|
23
|
-
|
|
24
|
-
Cursor is a **project-only** target. Agents are skills-only here — the crew
|
|
25
|
-
pipeline runs through the rule files.
|
package/docs/gemini-setup.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# Gemini CLI Setup
|
|
2
|
-
|
|
3
|
-
## Install
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
gemini extensions install https://github.com/ionivetech/mugiwara
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
Or via the CLI:
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target gemini --yes
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
**Update** — `gemini extensions update mugiwara`.
|
|
16
|
-
**Uninstall** — `gemini extensions remove mugiwara`.
|
|
17
|
-
|
|
18
|
-
## What you get
|
|
19
|
-
|
|
20
|
-
- 32 skills as markdown rules in `.gemini/mugiwara/`.
|
|
21
|
-
- A `GEMINI.md` bootstrap pointer (created if missing).
|
|
22
|
-
|
|
23
|
-
## Notes
|
|
24
|
-
|
|
25
|
-
Gemini is a **project-only** target — skipped (with a note) on `--global`
|
|
26
|
-
installs. Agents are skills-only here (no native subagent registry); the crew
|
|
27
|
-
pipeline runs through the rule files.
|
package/docs/opencode-setup.md
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
# opencode Setup
|
|
2
|
-
|
|
3
|
-
opencode is a fully supported target — native skills + agents via the opencode
|
|
4
|
-
plugin.
|
|
5
|
-
|
|
6
|
-
## Install via the plugin
|
|
7
|
-
|
|
8
|
-
Add to `opencode.json`:
|
|
9
|
-
|
|
10
|
-
```json
|
|
11
|
-
{ "plugin": ["@ionivetech/mugiwara"] }
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
Or from the git repo directly:
|
|
15
|
-
|
|
16
|
-
```json
|
|
17
|
-
{ "plugin": ["mugiwara@git+https://github.com/ionivetech/mugiwara.git"] }
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Install via CLI
|
|
21
|
-
|
|
22
|
-
```bash
|
|
23
|
-
# global install
|
|
24
|
-
npx @ionivetech/mugiwara@latest --global --target opencode --yes
|
|
25
|
-
|
|
26
|
-
# project install
|
|
27
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target opencode --yes
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
**Update** — bump the package version in the `plugin` array (or `mugiwara update`).
|
|
31
|
-
|
|
32
|
-
**Uninstall** — remove the entry from the array.
|
|
33
|
-
|
|
34
|
-
## What you get
|
|
35
|
-
|
|
36
|
-
- 32 skills in `.opencode/skills/` (project) or `~/.config/opencode/skills/`
|
|
37
|
-
(global).
|
|
38
|
-
- 14 agents registered as subagents via the plugin.
|
|
39
|
-
- The plugin announces the crew at session start and injects the inline
|
|
40
|
-
execution model into the system prompt.
|
|
41
|
-
|
|
42
|
-
## Use it
|
|
43
|
-
|
|
44
|
-
The workflow **auto-activates** — at session start the crew is announced, and a
|
|
45
|
-
non-trivial request runs the pipeline by itself. `/using-mugiwara` is an
|
|
46
|
-
optional explicit router if you want to hand-route a mission:
|
|
47
|
-
|
|
48
|
-
```
|
|
49
|
-
> add dark mode to the settings page
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
Restart opencode after installing — config is loaded once at startup. The crew
|
|
53
|
-
runs inline in your main conversation; subagents only for `[PARALLEL]` batches
|
|
54
|
-
and background checks. You never need to click into a subagent to see progress.
|
package/docs/rule-based-setup.md
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# Rule-Based Targets: Cline, Kilo, Antigravity, pi, Kimi
|
|
2
|
-
|
|
3
|
-
These targets install the crew as markdown rule files your tool picks up from a
|
|
4
|
-
conventions directory. Skills-only — the crew pipeline runs through the rules.
|
|
5
|
-
|
|
6
|
-
## Install
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
# all rule-based targets in one go
|
|
10
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target cline,kilo,antigravity --yes
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
| Harness | Target id | Installs as |
|
|
14
|
-
|---------|-----------|-------------|
|
|
15
|
-
| Cline | `cline` | Rules in `.clinerules` |
|
|
16
|
-
| Kilo Code | `kilo` | Rules in `.kilo/rules` + `kilo.jsonc` pointer |
|
|
17
|
-
| Antigravity | `antigravity` | Rules in `.agents/rules` |
|
|
18
|
-
|
|
19
|
-
## pi and Kimi
|
|
20
|
-
|
|
21
|
-
- **pi** — `pi install git:github.com/ionivetech/mugiwara` (declared via the
|
|
22
|
-
`"pi"` key in `package.json`).
|
|
23
|
-
- **Kimi Code** — `/plugins install https://github.com/ionivetech/mugiwara`
|
|
24
|
-
(`.kimi-plugin/plugin.json`).
|
|
25
|
-
|
|
26
|
-
## Notes
|
|
27
|
-
|
|
28
|
-
All rule-based targets are **project-only** — skipped (with a note) on
|
|
29
|
-
`--global` installs. Targets with a bootstrap file (Gemini, Codex, Kilo) create
|
|
30
|
-
it if absent and otherwise tell you the line to add, so your tool points at the
|
|
31
|
-
crew.
|
package/docs/windsurf-setup.md
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# Windsurf Setup
|
|
2
|
-
|
|
3
|
-
## Install
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
npx @ionivetech/mugiwara@latest --project ./my-app --target windsurf --yes
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
**Update** — `mugiwara update`. **Uninstall** — `mugiwara uninstall`.
|
|
10
|
-
|
|
11
|
-
## What you get
|
|
12
|
-
|
|
13
|
-
- 32 skills as rules files in `.devin/rules`.
|
|
14
|
-
|
|
15
|
-
## Notes
|
|
16
|
-
|
|
17
|
-
Windsurf is a **project-only** target. Skills-only — the crew pipeline runs
|
|
18
|
-
through the rule files.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|