@mmerterden/multi-agent-pipeline 16.1.0 → 16.1.1
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
CHANGED
|
@@ -16,6 +16,19 @@ Internal file-layout changes that don't affect the slash-command surface are sti
|
|
|
16
16
|
|
|
17
17
|
## [Unreleased]
|
|
18
18
|
|
|
19
|
+
## [16.1.1] - 2026-08-23
|
|
20
|
+
|
|
21
|
+
Found by reviewing 16.1.0 after it shipped, and by the `/mcp` reconnect confirming the fix worked.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- **Copilot installs a rules tree and never mentions it.** `copilot-instructions.md` names `skills/`, `scripts/` and `agents/` but has zero references to `rules/` - so all 13 files, 31874 bytes, land in `~/.copilot/rules/` with nothing telling the agent they exist. That predates this release; 16.1.0 simply added a fourteenth unread file to the pile. Codex got its pointer in 16.1.0 and Claude Code has always had the CLAUDE.md "Modular Rules" table; Copilot now has one too, naming which rule matches which kind of work.
|
|
26
|
+
- `smoke-context-budget.sh` asserts reachability alongside size. A tree paid for by every session and pointed at by nothing is worse than one that is read: same cost, no return. Verified by removing the pointer and watching the gate go red.
|
|
27
|
+
|
|
28
|
+
### Verified
|
|
29
|
+
|
|
30
|
+
- The MCP scope fix works end to end: `/mcp` reports `Reconnected to multi-agent-toolkit` and all 83 tools are present. 16.1.0 could only show the server serving them when run directly.
|
|
31
|
+
|
|
19
32
|
## [16.1.0] - 2026-08-23
|
|
20
33
|
|
|
21
34
|
Installing the pipeline set up three capabilities that only worked inside `/multi-agent`. A plain session had the tokens, the plugins and the MCP server on disk and no way to know it.
|
|
@@ -237,6 +237,23 @@ Cost block reads `phase-tracker.sh tokens` accumulators × `cost-table.json` pri
|
|
|
237
237
|
|
|
238
238
|
## Rules
|
|
239
239
|
|
|
240
|
+
The installer lays down a rules tree at `~/.copilot/rules/` that nothing here used
|
|
241
|
+
to point at, so it shipped and went unread. Load the file that matches what you are
|
|
242
|
+
touching: `code-style.md` and `swiftui-qa.md` for Swift, `kotlin-android.md` for
|
|
243
|
+
Kotlin, `tdd.md` and `testing.md` before writing tests, `code-review.md` when
|
|
244
|
+
reviewing, `security.md` for anything handling credentials or user data,
|
|
245
|
+
`git-conventions.md` before committing, `figma-pipeline.md` when a task carries a
|
|
246
|
+
design reference.
|
|
247
|
+
|
|
248
|
+
**`outside-the-pipeline.md` applies even with no pipeline run in progress**: the
|
|
249
|
+
tokens onboarded by setup, the stack skills enabled for the repo, and the
|
|
250
|
+
multi-agent-toolkit MCP are all usable in an ordinary session. Read freely, route
|
|
251
|
+
writes (Jira comments, issue edits, PRs) through the pipeline commands that carry
|
|
252
|
+
the rules making them safe, and never let a credential value reach argv, a log or a
|
|
253
|
+
reply.
|
|
254
|
+
|
|
255
|
+
Always, in every mode:
|
|
256
|
+
|
|
240
257
|
- Never put "Copilot", "AI", "generated by" in code or commits
|
|
241
258
|
- Never commit without passing build
|
|
242
259
|
- Never auto-close issues (use Ref: not Closes:)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mmerterden/multi-agent-pipeline",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.1",
|
|
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",
|