@mmerterden/multi-agent-pipeline 10.7.1 → 10.7.3
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 +24 -0
- package/README.md +68 -756
- package/package.json +1 -1
- package/pipeline/agents/task-clarifier.md +1 -3
- package/pipeline/commands/multi-agent/autopilot.md +1 -1
- package/pipeline/commands/multi-agent/dev-autopilot.md +1 -1
- package/pipeline/commands/multi-agent/dev-local-autopilot.md +1 -1
- package/pipeline/commands/multi-agent/dev-local.md +1 -1
- package/pipeline/commands/multi-agent/dev.md +1 -1
- package/pipeline/commands/multi-agent/local-autopilot.md +1 -1
- package/pipeline/commands/multi-agent/local.md +1 -1
- package/pipeline/commands/multi-agent/refs/features/shadow-git.md +1 -1
- package/pipeline/commands/multi-agent/refs/phases/phase-0-init.md +1 -1
- package/pipeline/commands/multi-agent/refs/phases/phase-2-planning.md +1 -1
- package/pipeline/commands/multi-agent/refs/phases/phase-3-dev.md +1 -1
- package/pipeline/commands/multi-agent/refs/phases.md +1 -1
- package/pipeline/commands/multi-agent/refs/tracker-contract.md +0 -2
- package/pipeline/lib/plan-todos.sh +2 -5
- package/pipeline/lib/post-pr-review.sh +2 -2
- package/pipeline/lib/review-watch.sh +2 -6
- package/pipeline/lib/shadow-git.sh +3 -5
- package/pipeline/schemas/clarify-output.schema.json +1 -1
- package/pipeline/schemas/plan-todos.schema.json +1 -1
- package/pipeline/schemas/prefs.schema.json +5 -5
- package/pipeline/scripts/gen-mode-dispatch.mjs +1 -1
- package/pipeline/scripts/smoke-review-watch.sh +2 -2
- package/pipeline/scripts/smoke-shadow-git.sh +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,30 @@ Internal file-layout changes that don't affect the slash-command surface are sti
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
+
## [10.7.3] - 2026-07-02
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **Zero external-tool residue.** Genericized every remaining editor/tool citation
|
|
22
|
+
in the pipeline's own files (Windsurf Cascade / Cursor Plan Mode / Cursor Bugbot /
|
|
23
|
+
Cline / Devin) across schemas, lib comments, refs, and the task-clarifier persona —
|
|
24
|
+
feature behavior is unchanged, only the third-party naming is dropped. (Vendored
|
|
25
|
+
`shared/external` knowledge and the `~/.codex` prune path in `update` are unaffected.)
|
|
26
|
+
- **README** gained a **Tokens & integrations** table (keychain-mapping model + the
|
|
27
|
+
services the pipeline talks to: Jira, GitHub, Bitbucket, Confluence, Figma, Fortify,
|
|
28
|
+
Firebase, Jenkins, npm) and an explicit **Platform support** section (macOS / Linux /
|
|
29
|
+
Windows, keychain backends).
|
|
30
|
+
|
|
31
|
+
## [10.7.2] - 2026-07-02
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- Swept the last adapter residue from the phase-tracker docs: the "Visual channel"
|
|
36
|
+
CLI list is now **Copilot CLI / plain shell** (Cursor / Windsurf / Cline dropped)
|
|
37
|
+
across every mode command + `tracker-contract` + `phases`. Design-lineage
|
|
38
|
+
citations ("Pattern source: Windsurf Cascade / Cursor Plan Mode") are kept —
|
|
39
|
+
they credit the plan-todos pattern's inspiration, not a supported runtime.
|
|
40
|
+
|
|
17
41
|
## [10.7.1] - 2026-07-02
|
|
18
42
|
|
|
19
43
|
Sweep residual adapter references left after the v10.7.0 removal.
|