@mmerterden/multi-agent-pipeline 16.2.1 → 16.2.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.
- package/CHANGELOG.md +7 -0
- package/docs/architecture.md +2 -2
- package/docs/ecosystem.md +15 -15
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,13 @@ Internal file-layout changes that don't affect the slash-command surface are sti
|
|
|
16
16
|
|
|
17
17
|
## [Unreleased]
|
|
18
18
|
|
|
19
|
+
## [16.2.2] - 2026-08-24
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- **The companion MCP server's old name survived in the docs.** 16.1.3 corrected one line in `docs/architecture.md` and called the rename done; `docs/ecosystem.md` still carried it 22 more times, including its section heading, its mermaid nodes and its boundary discussion. Fixing the instance is not fixing the class. `docs/internal/GENERICITY-REVIEW.md` keeps the old name on purpose: it is a dated pre-v10.7.0 snapshot, and editing a record to match today falsifies it.
|
|
24
|
+
- `docs/ecosystem.md` advertised 80 tools against 83 served, and declared a `≥ v2.9.0` minimum where `cross-cli-contract.md` requires v3.0.0.
|
|
25
|
+
|
|
19
26
|
## [16.2.1] - 2026-08-24
|
|
20
27
|
|
|
21
28
|
### Fixed
|
package/docs/architecture.md
CHANGED
|
@@ -174,7 +174,7 @@ graph TD
|
|
|
174
174
|
REPO["Pipeline Repo<br/>(npm package)"]
|
|
175
175
|
WEB["Website"]
|
|
176
176
|
PLUGREPO["multi-agent-plugins<br/>(5 stack plugins, own repo)"]
|
|
177
|
-
DTK["
|
|
177
|
+
DTK["multi-agent-toolkit-mcp<br/>(own repo, own release cadence)"]
|
|
178
178
|
|
|
179
179
|
CC -->|copy + reformat| COP
|
|
180
180
|
CC -->|transform via install.js --codex| COD
|
|
@@ -190,5 +190,5 @@ graph TD
|
|
|
190
190
|
```
|
|
191
191
|
|
|
192
192
|
Full detail on how these three repos compose at install time and at run time -
|
|
193
|
-
including the Phase 3 → plugin dispatch contract and the Phase 5 →
|
|
193
|
+
including the Phase 3 → plugin dispatch contract and the Phase 5 → multi-agent-toolkit MCP
|
|
194
194
|
contract - lives in [`docs/ecosystem.md`](./ecosystem.md).
|
package/docs/ecosystem.md
CHANGED
|
@@ -7,11 +7,11 @@ separately, wired together at install time and at run time:
|
|
|
7
7
|
|---|---|---|
|
|
8
8
|
| **`multi-agent-pipeline`** (this repo) | Orchestration: the 8-phase flow, the 51 slash commands, quality gates, review/triage, cross-CLI parity | npm package (`@mmerterden/multi-agent-pipeline`), installs itself onto Claude Code / Copilot CLI / Codex CLI |
|
|
9
9
|
| **`multi-agent-plugins`** | Stack knowledge: per-platform component/lifecycle skills (iOS, Android, Frontend, Backend) + shared knowledge | Claude Code marketplace, 5 independently-versioned plugins |
|
|
10
|
-
| **`
|
|
10
|
+
| **`multi-agent-toolkit-mcp`** | The pipeline's hands on devices and browsers: 80 MCP tools across 6 categories (simulator/emulator control, accessibility audit, store compliance, web automation, Figma-vs-mock design audit, an agent-DSL batch runner) | npm package, registered as a standard stdio MCP server on every host |
|
|
11
11
|
|
|
12
12
|
None of the three depends on the others at the code level. They compose through two
|
|
13
13
|
narrow contracts: the **Skill tool** (pipeline → plugin, at Phase 3) and the **MCP
|
|
14
|
-
protocol** (pipeline skills →
|
|
14
|
+
protocol** (pipeline skills → multi-agent-toolkit, at Phase 5 / design-check / store-ready).
|
|
15
15
|
Either can be swapped or removed without touching the other two's source.
|
|
16
16
|
|
|
17
17
|
```mermaid
|
|
@@ -32,7 +32,7 @@ graph LR
|
|
|
32
32
|
ANAP["ai-analyst-toolkit"]
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
-
subgraph DTK ["
|
|
35
|
+
subgraph DTK ["multi-agent-toolkit-mcp (device/browser hands)"]
|
|
36
36
|
direction TB
|
|
37
37
|
DEV["Device Control (58)"]
|
|
38
38
|
A11Y["Accessibility Audit (2)"]
|
|
@@ -71,7 +71,7 @@ graph TD
|
|
|
71
71
|
|
|
72
72
|
REPO -->|"Step 3c: build-stack-plugins.mjs<br/>rebuilds knowledge/ from<br/>shared/external"| PLUGREPO["multi-agent-plugins repo<br/>(5 stack plugins)"]
|
|
73
73
|
|
|
74
|
-
DTK2["
|
|
74
|
+
DTK2["multi-agent-toolkit-mcp repo<br/>(own codebase, own gates,<br/>NOT generated from Claude)"]
|
|
75
75
|
SYNC3D["Step 3d: detect movement →<br/>gate → commit → publish"]
|
|
76
76
|
CC -.->|"sync only SHIPS this,<br/>never authors it"| SYNC3D
|
|
77
77
|
SYNC3D -.-> DTK2
|
|
@@ -85,13 +85,13 @@ graph TD
|
|
|
85
85
|
style DTK2 fill:#dff,stroke:#333,stroke-dasharray: 5 5
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
**Why `
|
|
89
|
-
from the Claude Code source - sync writes their content. `
|
|
88
|
+
**Why `multi-agent-toolkit-mcp` is drawn differently.** The other four targets are *derived*
|
|
89
|
+
from the Claude Code source - sync writes their content. `multi-agent-toolkit-mcp` is not:
|
|
90
90
|
it's a separate codebase developed on its own schedule. Sync's Step 3d only
|
|
91
91
|
*detects* whether it moved (dirty tree, unpushed commits, untagged version), runs
|
|
92
92
|
**its own** gate suite, and ships it - commit, tag, `npm publish`. If the pipeline
|
|
93
93
|
needs a tool that toolkit doesn't have yet, that's a two-repo change: add the tool
|
|
94
|
-
in `
|
|
94
|
+
in `multi-agent-toolkit-mcp`, ship it, then bump the minimum version pin back in
|
|
95
95
|
`cross-cli-contract.md` (see section 4).
|
|
96
96
|
|
|
97
97
|
**Also not generated: the plugins' own authored skills.** `build-stack-plugins.mjs`
|
|
@@ -156,7 +156,7 @@ measurements behind this table):
|
|
|
156
156
|
| **Pipeline commands** | 51 slash-command skills, native | 51 skills, `multi-agent-{cmd}` naming, copied in | 1 router skill (`multi-agent`) + 51 command specs as reference files - Codex silently truncates its skills block past a few dozen entries, so sub-commands are not peer skills here |
|
|
157
157
|
| **Stack plugins** | Marketplace plugin, loaded natively, resolved by `.claude/settings.json` enabled-list | Enabled plugin's authored skills copied flat into `~/.copilot/skills/`; `knowledge/` **not** re-copied (already delivered via `shared/external`) | Copied as reference files under `~/.codex/multi-agent-refs/skills/`, plugin-prefixed on name clash (e.g. `architecture` → `ai-ios-toolkit-architecture`) |
|
|
158
158
|
| **Component dispatch (Phase 3)** | Marketplace plugin's `create-component`/`create-screen` skill via the Skill tool | No plugin loader - the enabled stack plugin's authored skills (incl. `create-component`) are copied flat into `~/.copilot/skills/` at install time (the old frozen `figma-*` copies are pruned, they were never a fallback) | Not part of the enforced parity axis; classification + state-shape must match, skill *inventory* does not |
|
|
159
|
-
| **
|
|
159
|
+
| **multi-agent-toolkit-mcp** | `claude mcp add multi-agent-toolkit -- npx -y @mmerterden/multi-agent-toolkit-mcp` | `copilot mcp add multi-agent-toolkit -- npx -y @mmerterden/multi-agent-toolkit-mcp` | `codex mcp add multi-agent-toolkit -- npx -y @mmerterden/multi-agent-toolkit-mcp` (skipped with a warning if `codex` isn't on `PATH`) |
|
|
160
160
|
|
|
161
161
|
`smoke-cross-cli-behavior.sh` and `smoke-codex-install.sh` gate the axes that **do**
|
|
162
162
|
have to match (phase labels, placeholder vocabulary, output schemas, command↔skill
|
|
@@ -182,7 +182,7 @@ graph TD
|
|
|
182
182
|
P4 --> P5["Phase 5: Test"]
|
|
183
183
|
|
|
184
184
|
P5 -->|"UI bug hunt / manual-test /<br/>design-check / store-ready"| MCP["MCP tool call over stdio<br/>e.g. ios_xcodebuild, design_visual_compare,<br/>ios_app_store_audit"]
|
|
185
|
-
MCP --> DTKPROC["
|
|
185
|
+
MCP --> DTKPROC["multi-agent-toolkit-mcp process<br/>(npx @mmerterden/multi-agent-toolkit-mcp)"]
|
|
186
186
|
DTKPROC -->|"result: screenshot / xcresult ID /<br/>18-rule audit verdict"| P5
|
|
187
187
|
|
|
188
188
|
style DISPATCH fill:#dfd,stroke:#333
|
|
@@ -196,17 +196,17 @@ lifecycle (test → code → build → wiki) and reports back a coarse
|
|
|
196
196
|
a plugin failure counts against the pipeline's own retry cap (`retryCount === 3` →
|
|
197
197
|
hard stop, per `component-dispatch.md`).
|
|
198
198
|
|
|
199
|
-
**Phase 5 (and design-check / store-ready) →
|
|
199
|
+
**Phase 5 (and design-check / store-ready) → multi-agent-toolkit** is a long-lived MCP
|
|
200
200
|
session, not a one-shot call: the same stdio server process answers many tool
|
|
201
201
|
calls across a phase (boot simulator once, then screenshot/tap/screenshot/tap...).
|
|
202
202
|
Several pipeline skills pin a **minimum toolkit version** for a specific tool -
|
|
203
203
|
e.g. `apple-archive-compliance` requires `ios_app_store_audit` from
|
|
204
|
-
`
|
|
205
|
-
`/multi-agent:sync` Step 3d before any
|
|
204
|
+
`multi-agent-toolkit-mcp ≥ v3.0.0` - enforced in `cross-cli-contract.md` and checked by
|
|
205
|
+
`/multi-agent:sync` Step 3d before any multi-agent-toolkit release ships (a version bump
|
|
206
206
|
that drops or renames a tool a pipeline skill depends on is a **major** bump, by
|
|
207
207
|
that step's own contract).
|
|
208
208
|
|
|
209
|
-
###
|
|
209
|
+
### multi-agent-toolkit-mcp's 83 tools, by category
|
|
210
210
|
|
|
211
211
|
| Category | Tools | Primary pipeline consumers |
|
|
212
212
|
|---|---|---|
|
|
@@ -228,10 +228,10 @@ that step's own contract).
|
|
|
228
228
|
`create-component`) and dispatch still resolves correctly - the dual-name
|
|
229
229
|
fallback lives in the pipeline, the implementation stays entirely in whichever
|
|
230
230
|
plugin is enabled.
|
|
231
|
-
- **Pipeline ↔
|
|
231
|
+
- **Pipeline ↔ multi-agent-toolkit boundary = MCP protocol, versioned contract.** The
|
|
232
232
|
pipeline never shells out to `xcrun simctl` or `adb` directly; every device/browser
|
|
233
233
|
action is a declared MCP tool call with a minimum-version pin. That's what lets
|
|
234
|
-
`
|
|
234
|
+
`multi-agent-toolkit-mcp` ship on its own release cadence (its own gates, its own
|
|
235
235
|
`npm publish`) without a pipeline release, as long as pinned tools keep their
|
|
236
236
|
contract.
|
|
237
237
|
- **Neither boundary is symmetric.** The pipeline depends on both other repos being
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmerterden/multi-agent-pipeline",
|
|
3
|
-
"version": "16.2.
|
|
3
|
+
"version": "16.2.2",
|
|
4
4
|
"description": "8-phase AI development pipeline with full orchestration on Claude Code, Copilot CLI and Codex CLI. Analysis, planning, TDD, CLI-aware parallel review with consensus surfacing + Fable triage, default-FAIL evidence gates, secret + intent guards, per-phase cost ledger, persistent learnings memory, wiki generation, commit automation. Token-preserving uninstall.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|