@mmerterden/multi-agent-pipeline 11.5.0 → 12.1.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.
- package/CHANGELOG.md +75 -0
- package/docs/adr/0007-multi-tool-adapter-framework.md +2 -2
- package/docs/adr/0008-installer-modularization-and-secret-leak-defense.md +2 -0
- package/docs/adr/README.md +1 -0
- package/docs/features.md +2 -2
- package/install/claude.mjs +51 -1
- package/install/index.mjs +34 -1
- package/package.json +2 -2
- package/pipeline/commands/multi-agent/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/analysis/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/analysis-resolve/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/autopilot/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/build-optimize/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/channels/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/create-jira/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/dev/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/dev-autopilot/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/dev-local/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/dev-local-autopilot/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/diff-explain/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/finish/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/garbage-collect/SKILL.md +29 -3
- package/pipeline/commands/multi-agent/help/SKILL.md +3 -2
- package/pipeline/commands/multi-agent/issue/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/jira/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/kill/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/language/SKILL.md +20 -1
- package/pipeline/commands/multi-agent/local/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/local-autopilot/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/log/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/manual-test/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/prune-logs/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/purge/SKILL.md +27 -24
- package/pipeline/commands/multi-agent/refactor/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/resume/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/review/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/review-issue/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/review-jira/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/scan/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/search/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/setup/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/stack/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/status/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/sync/SKILL.md +20 -2
- package/pipeline/commands/multi-agent/test/SKILL.md +1 -0
- package/pipeline/commands/multi-agent/uninstall/SKILL.md +87 -0
- package/pipeline/commands/multi-agent/update/SKILL.md +1 -0
- package/pipeline/lib/multi-repo-pipeline.sh +6 -1
- package/pipeline/multi-agent-refs/cross-cli-contract.md +5 -5
- package/pipeline/multi-agent-refs/phases/phase-0-init.md +12 -1
- package/pipeline/scripts/_cost.mjs +35 -0
- package/pipeline/scripts/agent-guard.py +8 -3
- package/pipeline/scripts/cost-budget-check.mjs +2 -1
- package/pipeline/scripts/cost-lib.sh +43 -0
- package/pipeline/scripts/fixtures/install-layout.tsv +4 -2
- package/pipeline/scripts/gc-tmp.sh +67 -8
- package/pipeline/scripts/gc-worktrees.sh +140 -0
- package/pipeline/scripts/localize-commands.mjs +130 -0
- package/pipeline/scripts/phase-tracker.sh +10 -19
- package/pipeline/scripts/prune-logs.sh +100 -15
- package/pipeline/scripts/purge.sh +235 -0
- package/pipeline/scripts/render-agent-log-cost.sh +7 -13
- package/pipeline/scripts/render-cost-summary.sh +4 -7
- package/pipeline/scripts/run-aggregator.mjs +2 -3
- package/pipeline/scripts/smoke-description-tr.sh +82 -0
- package/pipeline/scripts/smoke-gc-tmp.sh +50 -4
- package/pipeline/scripts/smoke-gc-worktrees.sh +125 -0
- package/pipeline/scripts/smoke-prune-logs.sh +57 -7
- package/pipeline/scripts/smoke-purge.sh +138 -0
- package/pipeline/scripts/smoke-source-parity.sh +85 -0
- package/pipeline/scripts/smoke-update-check.sh +13 -0
- package/pipeline/scripts/uninstall.mjs +41 -6
- package/pipeline/scripts/update-check.sh +9 -0
- package/pipeline/skills/.skill-manifest.json +7 -7
- package/pipeline/skills/.skills-index.json +9 -9
- package/pipeline/skills/shared/README.md +19 -10
- package/pipeline/skills/shared/core/multi-agent/SKILL.md +1 -0
- package/pipeline/skills/shared/core/multi-agent-sync/SKILL.md +2 -2
- package/pipeline/skills/shared/core/multi-agent-uninstall/SKILL.md +74 -0
- package/pipeline/skills/skills-index.md +1 -1
- package/pipeline/commands/multi-agent/delete/SKILL.md +0 -67
- package/pipeline/skills/shared/core/multi-agent-delete/SKILL.md +0 -66
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
Single source of truth for skills delivered to both Claude Code (`~/.claude/skills/`) and Copilot CLI (`~/.copilot/skills/`) by the installer.
|
|
4
4
|
|
|
5
|
-
**Total:**
|
|
5
|
+
**Total:** 189 skills (41 core + 148 external). Auto-generated by `scripts/gen-skills-index.mjs` - do not edit by hand.
|
|
6
6
|
|
|
7
7
|
## Directory layout
|
|
8
8
|
|
|
9
|
-
- **`core/`** -
|
|
10
|
-
- **`external/`** -
|
|
9
|
+
- **`core/`** - 41 `multi-agent*` orchestration skills that are pipeline-critical. Edits here are core-code changes.
|
|
10
|
+
- **`external/`** - 148 iOS / Android / generic skills imported from the upstream skill library. Mirrors of third-party guidance.
|
|
11
11
|
- Install destination stays flat: both trees flatten into `~/.claude/skills/` and `~/.copilot/skills/`. See ADR-0006 for the rationale.
|
|
12
12
|
|
|
13
13
|
Source layout is logical grouping only - skill discovery at runtime is unchanged.
|
|
14
14
|
|
|
15
15
|
## Categories
|
|
16
16
|
|
|
17
|
-
- [Pipeline Orchestration](#pipeline-orchestration) -
|
|
17
|
+
- [Pipeline Orchestration](#pipeline-orchestration) - 41
|
|
18
18
|
- [iOS / Apple Ecosystem](#ios-apple-ecosystem) - 88
|
|
19
19
|
- [Android / Kotlin](#android-kotlin) - 13
|
|
20
20
|
- [Web / Frontend](#web-frontend) - 10
|
|
21
21
|
- [Backend / API](#backend-api) - 11
|
|
22
|
-
- [Cross-cutting](#cross-cutting) -
|
|
22
|
+
- [Cross-cutting](#cross-cutting) - 26
|
|
23
23
|
|
|
24
24
|
## Pipeline Orchestration
|
|
25
25
|
|
|
@@ -27,18 +27,19 @@ Source layout is logical grouping only - skill discovery at runtime is unchang
|
|
|
27
27
|
|-------|-------|-------------|
|
|
28
28
|
| [`apple-archive-compliance`](./core/apple-archive-compliance/) | `core` | Apple App Store Review compliance - wraps the dev-toolkit-mcp `ios_app_store_audit` tool (17-rule deep scan) with ITMS error code mapping |
|
|
29
29
|
| [`google-play-compliance`](./core/google-play-compliance/) | `core` | Google Play Store publication compliance - bundletool + aapt2 + apksigner orchestration + 21-rule policy catalog with Play Console error c |
|
|
30
|
-
| [`multi-agent`](./core/multi-agent/) | `core` | Task orchestrator: runs the full pipeline from a Jira ID or GitHub Issue URL - analysis → plan → TDD development → parallel review (
|
|
30
|
+
| [`multi-agent`](./core/multi-agent/) | `core` | Task orchestrator: runs the full pipeline from a Jira ID or GitHub Issue URL - analysis → plan → TDD development → parallel review (Fable |
|
|
31
31
|
| [`multi-agent-analysis`](./core/multi-agent-analysis/) | `core` | Standalone feature-spec analysis (v3 template). Platform-agnostic concept layer with repo-driven convention extraction and per-platform Pass |
|
|
32
32
|
| [`multi-agent-analysis-resolve`](./core/multi-agent-analysis-resolve/) | `core` | Resolve the Section 20 Risks and Open Questions of an analysis v3 document one row at a time. Proposes up to 3 source-labeled answer candida |
|
|
33
33
|
| [`multi-agent-autopilot`](./core/multi-agent-autopilot/) | `core` | Launch any task in autopilot mode: skips every confirmation, runs end-to-end autonomously. |
|
|
34
34
|
| [`multi-agent-build-optimize`](./core/multi-agent-build-optimize/) | `core` | Wrapper that dispatches to xcode-build-orchestrator on iOS repos. Benchmarks the current Xcode build, runs compilation / project / SPM analy |
|
|
35
35
|
| [`multi-agent-channels`](./core/multi-agent-channels/) | `core` | Multi-channel reporter - Jira/Confluence/Wiki/PR description. Multi-select channels + content, humanizer pass, reviewer-preserving Bitbuck |
|
|
36
|
-
| [`multi-agent-
|
|
36
|
+
| [`multi-agent-create-jira`](./core/multi-agent-create-jira/) | `core` | Create a standards-compliant Jira issue (Task / Bug / Story): asks the type, mines project conventions, drafts from a standard template with |
|
|
37
37
|
| [`multi-agent-dev`](./core/multi-agent-dev/) | `core` | Fast development mode: Init → Dev (Opus) → Test → Commit → Report. Analysis, planning, and review phases are skipped. |
|
|
38
38
|
| [`multi-agent-dev-autopilot`](./core/multi-agent-dev-autopilot/) | `core` | Fastest mode: Dev (Opus) plus Autopilot. Init → Dev → Commit → Report with zero confirmations. |
|
|
39
39
|
| [`multi-agent-dev-local`](./core/multi-agent-dev-local/) | `core` | Fast mode + local - Init → Dev(Opus) → Commit → Report, no worktree. |
|
|
40
40
|
| [`multi-agent-dev-local-autopilot`](./core/multi-agent-dev-local-autopilot/) | `core` | Fastest + local - Dev(Opus) + autopilot, no worktree, zero interaction. |
|
|
41
41
|
| [`multi-agent-diff-explain`](./core/multi-agent-diff-explain/) | `core` | Map Phase 4 triage findings to branch diff lines. Read-only post-hoc command, used after review to answer 'which finding lines up with which |
|
|
42
|
+
| [`multi-agent-finish`](./core/multi-agent-finish/) | `core` | Continue already-done LOCAL work through the pipeline tail: Review → Build+Test → Commit/PR → Report (technical analysis + Jira test-scenari |
|
|
42
43
|
| [`multi-agent-garbage-collect`](./core/multi-agent-garbage-collect/) | `core` | Sweep leftover /tmp scratch (picker state, review diffs, channel payloads, analysis drafts) from past runs. Dry-run first; confirms before d |
|
|
43
44
|
| [`multi-agent-help`](./core/multi-agent-help/) | `core` | Multi-agent pipeline usage guide - renders in EN or TR per prefs.global.outputLanguage (falls back to promptLanguage for backward compatib |
|
|
44
45
|
| [`multi-agent-issue`](./core/multi-agent-issue/) | `core` | List unassigned GitHub issues, pick one, auto-assign, and launch the multi-agent pipeline. |
|
|
@@ -51,16 +52,19 @@ Source layout is logical grouping only - skill discovery at runtime is unchang
|
|
|
51
52
|
| [`multi-agent-manual-test`](./core/multi-agent-manual-test/) | `core` | Switch to the active task's branch and prepare it for manual testing in Xcode. Phase 5 standalone (the UI Bug Hunter lives at multi-agent-te |
|
|
52
53
|
| [`multi-agent-prune-logs`](./core/multi-agent-prune-logs/) | `core` | Delete per-task project logs under ~/.claude/logs/multi-agent (filter by age/project/task). Audit trail + metrics are preserved. Dry-run fir |
|
|
53
54
|
| [`multi-agent-purge`](./core/multi-agent-purge/) | `core` | ⚠️ Wipes every worktree, branch, log, and state file. Irreversible; asks for double confirmation. |
|
|
54
|
-
| [`multi-agent-refactor`](./core/multi-agent-refactor/) | `core` | Analyse the project
|
|
55
|
+
| [`multi-agent-refactor`](./core/multi-agent-refactor/) | `core` | Analyse the project: extract adapted best-practices, hunt real bugs + improvement areas, check upstream drift of derived skills, draft one p |
|
|
55
56
|
| [`multi-agent-resume`](./core/multi-agent-resume/) | `core` | Resume a stopped or failed task from the phase where it left off. |
|
|
56
|
-
| [`multi-agent-review`](./core/multi-agent-review/) | `core` | Run parallel review on
|
|
57
|
+
| [`multi-agent-review`](./core/multi-agent-review/) | `core` | Run parallel review on a branch diff or a Pull Request: 2 models on Claude Code (Fable + Sonnet), 3 models on Copilot CLI (GPT + Opus + Sonn |
|
|
58
|
+
| [`multi-agent-review-issue`](./core/multi-agent-review-issue/) | `core` | Assess whether a GitHub issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / sta |
|
|
59
|
+
| [`multi-agent-review-jira`](./core/multi-agent-review-jira/) | `core` | Assess whether a Jira issue is ready for multi-agent development: fetch it, grade scope / acceptance criteria / repro / design / API / stack |
|
|
57
60
|
| [`multi-agent-scan`](./core/multi-agent-scan/) | `core` | Skill security scan: walks local skill directories against a tiered pattern catalog. |
|
|
58
61
|
| [`multi-agent-search`](./core/multi-agent-search/) | `core` | Log search across every agent-log.md with smart ranking and filters. Optional --semantic flag queries the per-repo triage corpus. |
|
|
59
62
|
| [`multi-agent-setup`](./core/multi-agent-setup/) | `core` | First-run setup wizard: keychain token discovery, Git Identity onboarding, and pipeline preparation. |
|
|
60
|
-
| [`multi-agent-stack`](./core/multi-agent-stack/) | `core` |
|
|
63
|
+
| [`multi-agent-stack`](./core/multi-agent-stack/) | `core` | Select the active stack for this repo by enabling the matching marketplace plugin(s) in .claude/settings.json (ios/android/mobile/backend/fr |
|
|
61
64
|
| [`multi-agent-status`](./core/multi-agent-status/) | `core` | Show every multi-agent task's ID, phase, branch, and status. |
|
|
62
65
|
| [`multi-agent-sync`](./core/multi-agent-sync/) | `core` | One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, and website. |
|
|
63
66
|
| [`multi-agent-test`](./core/multi-agent-test/) | `core` | UI Bug Hunter - iOS Simulator (simctl) + Android Emulator (adb). Auto-detects platform. Screenshot + tap + analyze on the booted device. T |
|
|
67
|
+
| [`multi-agent-uninstall`](./core/multi-agent-uninstall/) | `core` | Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are always left untouched; --all-data also clears pipeline set |
|
|
64
68
|
| [`multi-agent-update`](./core/multi-agent-update/) | `core` | Update the pipeline to the latest version: git pull, install, migrate. |
|
|
65
69
|
|
|
66
70
|
## iOS / Apple Ecosystem
|
|
@@ -209,14 +213,17 @@ Source layout is logical grouping only - skill discovery at runtime is unchang
|
|
|
209
213
|
|
|
210
214
|
| Skill | Group | Description |
|
|
211
215
|
|-------|-------|-------------|
|
|
216
|
+
| [`agent-introspection-debugging`](./external/agent-introspection-debugging/) | `external` | \| |
|
|
212
217
|
| [`agentflow`](./external/agentflow/) | `external` | Orchestrate autonomous AI development pipelines through your Kanban board (Asana, GitHub Projects, Linear). Manages multi-worker Claude Code |
|
|
213
218
|
| [`architecture`](./external/architecture/) | `external` | Architectural decision-making framework. Requirements analysis, trade-off evaluation, ADR documentation. Use when making architecture decisi |
|
|
214
219
|
| [`avkit`](./external/avkit/) | `external` | Create media playback experiences using AVKit. Use when adding video players with AVPlayerViewController, enabling Picture-in-Picture, routi |
|
|
220
|
+
| [`backlog`](./external/backlog/) | `external` | The engineering backlog registry for deferred-but-approved work in this codebase. Every job the user defers ('defer it', 'add it to the list |
|
|
215
221
|
| [`ci-cd-pipelines`](./external/ci-cd-pipelines/) | `external` | CI/CD pipelines: GitHub Actions workflows, Docker multi-stage builds, environment management, secret management, deployment strategies |
|
|
216
222
|
| [`clean-code`](./external/clean-code/) | `external` | This skill embodies the principles of \"Clean Code\" by Robert C. Martin (Uncle Bob). Use it to transform \"code that works\" into \"code th |
|
|
217
223
|
| [`closed-loop-delivery`](./external/closed-loop-delivery/) | `external` | Use when a coding task must be completed against explicit acceptance criteria with minimal user re-intervention across implementation, revie |
|
|
218
224
|
| [`context-compression`](./external/context-compression/) | `external` | When agent sessions generate millions of tokens of conversation history, compression becomes mandatory. The naive approach is aggressive com |
|
|
219
225
|
| [`core-data`](./external/core-data/) | `external` | Build, review, or improve Core Data persistence in apps that have not adopted SwiftData. Use when working with NSManagedObject subclasses, N |
|
|
226
|
+
| [`council`](./external/council/) | `external` | \| |
|
|
220
227
|
| [`cryptokit`](./external/cryptokit/) | `external` | Use Apple CryptoKit for Swift cryptographic primitives. Use when hashing with SHA-2 or SHA-3, generating HMACs, encrypting with AES-GCM or C |
|
|
221
228
|
| [`debugging-instruments`](./external/debugging-instruments/) | `external` | Debug iOS apps and profile performance using LLDB, Memory Graph Debugger, and Instruments. Use when diagnosing crashes, memory leaks, retain |
|
|
222
229
|
| [`debugging-strategies`](./external/debugging-strategies/) | `external` | Transform debugging from frustrating guesswork into systematic problem-solving with proven strategies, powerful tools, and methodical approa |
|
|
@@ -224,6 +231,8 @@ Source layout is logical grouping only - skill discovery at runtime is unchang
|
|
|
224
231
|
| [`help-skills`](./external/help-skills/) | `external` | Mevcut tum iOS/Swift skill'lerini listeler ve ne ise yaradiklarini aciklar. |
|
|
225
232
|
| [`humanizer`](./external/humanizer/) | `external` | \| |
|
|
226
233
|
| [`pdfkit`](./external/pdfkit/) | `external` | Display and manipulate PDF documents using PDFKit. Use when embedding PDFView to show PDF files, creating or modifying PDFDocument instances |
|
|
234
|
+
| [`search-first`](./external/search-first/) | `external` | \| |
|
|
235
|
+
| [`skill-creator`](./external/skill-creator/) | `external` | Author and refine skills for a plugin/toolkit efficiently. Use when creating a new skill, trimming or splitting an existing one, writing a s |
|
|
227
236
|
| [`spm-build-analysis`](./external/spm-build-analysis/) | `external` | Analyze Swift Package Manager dependencies, package plugins, module variants, and CI-oriented build overhead that slow Xcode builds. Use whe |
|
|
228
237
|
| [`xcode-build-benchmark`](./external/xcode-build-benchmark/) | `external` | Benchmark Xcode clean and incremental builds with repeatable inputs, timing summaries, and timestamped `.build-benchmark/` artifacts. Use wh |
|
|
229
238
|
| [`xcode-build-fixer`](./external/xcode-build-fixer/) | `external` | Apply approved Xcode build optimization changes following best practices, then re-benchmark to verify improvement. Use when a developer has |
|
|
@@ -361,6 +361,7 @@ Full contract: `refs/tracker-contract.md` section "TaskCreate ordering (strict)"
|
|
|
361
361
|
- Jira ID var: `.worktrees/PROJ-{id}/`
|
|
362
362
|
- Jira ID yok (generic): `.worktrees/task-{shortId}/` (e.g. `.worktrees/task-3/`)
|
|
363
363
|
3. Create or switch to git worktree:
|
|
364
|
+
- Residue guard first (idempotent; keeps `.worktrees/` gitlinks out of `git add -A` in the parent tree): `ex="$(git rev-parse --path-format=absolute --git-common-dir)/info/exclude"; grep -qxF '.worktrees/' "$ex" 2>/dev/null || printf '.worktrees/\n' >> "$ex"`
|
|
364
365
|
- If remote branch exists: `git worktree add {worktree-path} origin/{branch} -b {branch}`
|
|
365
366
|
- If new branch: `git worktree add {worktree-path} -b {branch}`
|
|
366
367
|
- If worktree already exists: `cd {worktree-path} && git pull origin {branch}`
|
|
@@ -139,11 +139,11 @@ When invoked with the `release` argument:
|
|
|
139
139
|
**38 commands are synced** (canonical inventory - must match `cross-cli-contract.md` section 1; drift = contract violation):
|
|
140
140
|
|
|
141
141
|
```
|
|
142
|
-
analysis, analysis-resolve, autopilot, build-optimize, channels, create-jira,
|
|
142
|
+
analysis, analysis-resolve, autopilot, build-optimize, channels, create-jira, dev,
|
|
143
143
|
dev-autopilot, dev-local, dev-local-autopilot, diff-explain, finish, garbage-collect,
|
|
144
144
|
help, issue, jira, kill, language, local,
|
|
145
145
|
local-autopilot, log, manual-test, prune-logs, purge, refactor, resume, review, review-issue, review-jira,
|
|
146
|
-
scan, search, setup, stack, status, sync, test, update
|
|
146
|
+
scan, search, setup, stack, status, sync, test, uninstall, update
|
|
147
147
|
```
|
|
148
148
|
|
|
149
149
|
**NOT synced**: `refs/*` - Lazy-load references, Claude Code specific
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: multi-agent-uninstall
|
|
3
|
+
language: en
|
|
4
|
+
description: "Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are always left untouched; --all-data also clears pipeline settings and logs. Asks for double confirmation."
|
|
5
|
+
user-invocable: true
|
|
6
|
+
argument-hint: "[--dry-run] [--all-data] [--claude] [--copilot] [--target=<path>]"
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# multi-agent-uninstall - Token-Preserving Uninstall
|
|
10
|
+
|
|
11
|
+
**Input**: $ARGUMENTS
|
|
12
|
+
|
|
13
|
+
Removes the pipeline itself from the system. **Different from `multi-agent-purge`:**
|
|
14
|
+
|
|
15
|
+
| Command | What it removes |
|
|
16
|
+
|---|---|
|
|
17
|
+
| `multi-agent-purge` | Active tasks' worktree / branch / log / state (development data) |
|
|
18
|
+
| `multi-agent-uninstall` | The pipeline itself: skills, commands, agents, scripts - from every CLI |
|
|
19
|
+
|
|
20
|
+
Two modes: **standard** (default) removes distributed files and keeps settings + logs; **full cleanup** (`--all-data`) also removes `multi-agent-preferences.json` and `~/.claude/logs/multi-agent/`. Tokens are never touched in either mode.
|
|
21
|
+
|
|
22
|
+
## Never deleted (either mode)
|
|
23
|
+
|
|
24
|
+
- Personal access tokens in the **Keychain / Credential Manager / libsecret** (GitHub, Jira, Bitbucket, Confluence, Telegram, Vercel, Firebase, etc.)
|
|
25
|
+
- `~/.claude/CLAUDE.md` and `~/.claude/rules/` (user-owned)
|
|
26
|
+
- User content OUTSIDE the `<!-- multi-agent-pipeline:begin/end -->` markers (`copilot-instructions.md`)
|
|
27
|
+
|
|
28
|
+
## Steps
|
|
29
|
+
|
|
30
|
+
1. **Determine the scope** - parse `$ARGUMENTS`:
|
|
31
|
+
- No target flag: all installed targets (default)
|
|
32
|
+
- `--claude / --copilot`: selective
|
|
33
|
+
- `--all-data`: full cleanup (also removes settings + logs)
|
|
34
|
+
- `--target=<path>`: adapter target (default cwd)
|
|
35
|
+
- `--dry-run`: only report, delete nothing
|
|
36
|
+
|
|
37
|
+
2. **Ask the cleanup depth** (skip if `--all-data` or `--dry-run` already given) - `AskUserQuestion` in `outputLanguage`:
|
|
38
|
+
- `question`: "How much should uninstall remove? Tokens are preserved either way."
|
|
39
|
+
- `header`: "Scope" · `options`: `{ label: "Standard", description: "Remove pipeline files; keep settings + logs" }`, `{ label: "Full cleanup", description: "Also remove settings + all task logs/state/metrics" }`
|
|
40
|
+
- **Full cleanup** adds `--all-data`.
|
|
41
|
+
|
|
42
|
+
3. **Show a preview** (run the script with `--dry-run`):
|
|
43
|
+
```bash
|
|
44
|
+
node "$HOME/.copilot/scripts/uninstall.mjs" --dry-run --yes <flags>
|
|
45
|
+
```
|
|
46
|
+
Show the output to the user verbatim.
|
|
47
|
+
|
|
48
|
+
4. **First confirmation** - native `AskUserQuestion` picker (no typed y/N):
|
|
49
|
+
- `question`: "Remove the pipeline from the listed targets? Tokens are NOT touched." (`outputLanguage`)
|
|
50
|
+
- `header`: "Uninstall" · `options`: `{ label: "Continue", description: "Proceed to the final confirmation" }`, `{ label: "Cancel", description: "Keep everything installed" }`
|
|
51
|
+
- **Cancel** → exit.
|
|
52
|
+
|
|
53
|
+
5. **Second confirmation** (paranoia gate) - a second `AskUserQuestion` picker:
|
|
54
|
+
- `question`: full cleanup -> "This also erases settings + all logs and is irreversible. Proceed?"; standard -> "This is irreversible. Permanently remove the pipeline files now?" (`outputLanguage`)
|
|
55
|
+
- `header`: "Confirm" · `options`: `{ label: "Remove permanently", description: "Run the uninstall; tokens are preserved" }`, `{ label: "Cancel", description: "Abort, change nothing" }`
|
|
56
|
+
- Anything other than **Remove permanently** → cancel.
|
|
57
|
+
|
|
58
|
+
6. **Remove** - run the real script with `--yes` (plus `--all-data` if chosen):
|
|
59
|
+
```bash
|
|
60
|
+
node "$HOME/.copilot/scripts/uninstall.mjs" --yes <flags>
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
7. **Confirm**:
|
|
64
|
+
```
|
|
65
|
+
✓ multi-agent-pipeline removed.
|
|
66
|
+
ℹ Personal access tokens preserved in the Keychain.
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
8. **Reinstall** (if the user wants): `npx @mmerterden/multi-agent-pipeline install --copilot`
|
|
70
|
+
|
|
71
|
+
## Notes
|
|
72
|
+
|
|
73
|
+
- `--dry-run` is always safe - zero side effects.
|
|
74
|
+
- The adapter target is cwd. For a different repo, use `--target=<path>`.
|
|
@@ -95,7 +95,6 @@
|
|
|
95
95
|
| core | `multi-agent-build-optimize` | - | Wrapper that dispatches to xcode-build-orchestrator on iOS repos. Benchmarks the current Xcode build, runs compilation / project / SPM analy |
|
|
96
96
|
| core | `multi-agent-channels` | - | Multi-channel reporter - Jira/Confluence/Wiki/PR description. Multi-select channels + content, humanizer pass, reviewer-preserving Bitbuck |
|
|
97
97
|
| core | `multi-agent-create-jira` | - | Create a standards-compliant Jira issue (Task / Bug / Story): asks the type, mines project conventions, drafts from a standard template with |
|
|
98
|
-
| core | `multi-agent-delete` | - | Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are left untouched. Asks for double confirmation. |
|
|
99
98
|
| core | `multi-agent-dev` | - | Fast development mode: Init → Dev (Opus) → Test → Commit → Report. Analysis, planning, and review phases are skipped. |
|
|
100
99
|
| core | `multi-agent-dev-autopilot` | - | Fastest mode: Dev (Opus) plus Autopilot. Init → Dev → Commit → Report with zero confirmations. |
|
|
101
100
|
| core | `multi-agent-dev-local` | - | Fast mode + local - Init → Dev(Opus) → Commit → Report, no worktree. |
|
|
@@ -126,6 +125,7 @@
|
|
|
126
125
|
| core | `multi-agent-status` | - | Show every multi-agent task's ID, phase, branch, and status. |
|
|
127
126
|
| core | `multi-agent-sync` | - | One-shot sync of the entire multi-agent ecosystem: Claude Code, Copilot CLI, pipeline repo, and website. |
|
|
128
127
|
| core | `multi-agent-test` | - | UI Bug Hunter - iOS Simulator (simctl) + Android Emulator (adb). Auto-detects platform. Screenshot + tap + analyze on the booted device. T |
|
|
128
|
+
| core | `multi-agent-uninstall` | - | Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are always left untouched; --all-data also clears pipeline set |
|
|
129
129
|
| core | `multi-agent-update` | - | Update the pipeline to the latest version: git pull, install, migrate. |
|
|
130
130
|
| external | `musickit-audio` | - | Integrate Apple Music playback, catalog search, and Now Playing metadata using MusicKit and MediaPlayer. Use when adding music search, Apple |
|
|
131
131
|
| external | `natural-language` | - | Tokenize, tag, and analyze natural language text using Apple's NaturalLanguage framework and translate between languages with the Translatio |
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: "Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are left untouched. Asks for double confirmation."
|
|
3
|
-
argument-hint: "[--dry-run] [--claude] [--copilot] [--target=<path>]"
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# multi-agent delete - Token-Preserving Uninstall
|
|
7
|
-
|
|
8
|
-
Uninstalls the pipeline itself from the system. **This is different from `:purge`:**
|
|
9
|
-
|
|
10
|
-
| Command | What it removes |
|
|
11
|
-
|---|---|
|
|
12
|
-
| `:purge` | Active tasks' worktrees / branches / logs / state (development data) |
|
|
13
|
-
| `:delete` | The pipeline itself: skills, commands, agents, scripts, rules - from every CLI |
|
|
14
|
-
|
|
15
|
-
## Never deleted
|
|
16
|
-
|
|
17
|
-
- **Keychain / Credential Manager / libsecret** personal access tokens (GitHub, Jira, Bitbucket, Confluence, Telegram, Vercel, Firebase, etc.)
|
|
18
|
-
- `~/.claude/CLAUDE.md` (user customisations)
|
|
19
|
-
- `~/.claude/multi-agent-preferences.json` (user settings)
|
|
20
|
-
- User content OUTSIDE the `<!-- multi-agent-pipeline:begin/end -->` markers (`copilot-instructions.md`)
|
|
21
|
-
|
|
22
|
-
## Steps
|
|
23
|
-
|
|
24
|
-
1. **Determine scope** - parse `$ARGUMENTS`:
|
|
25
|
-
- No target flag: every installed target (default)
|
|
26
|
-
- `--claude / --copilot`: selective
|
|
27
|
-
- `--target=<path>`: adapter target (default: cwd)
|
|
28
|
-
- `--dry-run`: report only, delete nothing
|
|
29
|
-
|
|
30
|
-
2. **Show a preview** (run the script with `--dry-run`):
|
|
31
|
-
```bash
|
|
32
|
-
node "$HOME/.claude/scripts/uninstall.mjs" --dry-run --yes <flags>
|
|
33
|
-
```
|
|
34
|
-
Show the output raw to the user.
|
|
35
|
-
|
|
36
|
-
3. **First confirmation** - native `AskUserQuestion` picker (no typed y/N):
|
|
37
|
-
- `question`: "Delete the pipeline from the listed targets? Tokens are NOT touched." (`outputLanguage`)
|
|
38
|
-
- `header`: "Delete" · `options`: `{ label: "Continue", description: "Proceed to the final confirmation" }`, `{ label: "Cancel", description: "Keep everything installed" }`
|
|
39
|
-
- **Cancel** → exit.
|
|
40
|
-
|
|
41
|
-
4. **Second confirmation** (paranoia gate, same pattern as `:purge`) - a second `AskUserQuestion` picker:
|
|
42
|
-
- `question`: "This is irreversible. Permanently remove the pipeline files now?" (`outputLanguage`)
|
|
43
|
-
- `header`: "Confirm" · `options`: `{ label: "Delete permanently", description: "Remove the distributed files; tokens are preserved" }`, `{ label: "Cancel", description: "Abort, change nothing" }`
|
|
44
|
-
- Anything other than **Delete permanently** → cancel.
|
|
45
|
-
|
|
46
|
-
5. **Delete** - run the real script with `--yes`:
|
|
47
|
-
```bash
|
|
48
|
-
node "$HOME/.claude/scripts/uninstall.mjs" --yes <flags>
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
6. **Confirm**:
|
|
52
|
-
```
|
|
53
|
-
✓ multi-agent-pipeline removed.
|
|
54
|
-
ℹ Personal access tokens preserved in Keychain.
|
|
55
|
-
```
|
|
56
|
-
Remind the user how to inspect the tokens (cross-platform - same command on every backend):
|
|
57
|
-
- `~/.claude/lib/credential-store.sh get "<service>"`
|
|
58
|
-
|
|
59
|
-
7. **Reinstall** (if the user wants to):
|
|
60
|
-
```bash
|
|
61
|
-
npx @mmerterden/multi-agent-pipeline install
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
## Notes
|
|
65
|
-
|
|
66
|
-
- This command does NOT remove the *installed copy* of the npm package. It only removes the distributed files. `npm uninstall -g @mmerterden/multi-agent-pipeline` is a separate step.
|
|
67
|
-
- `--dry-run` is always safe - zero side effects.
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: multi-agent-delete
|
|
3
|
-
language: en
|
|
4
|
-
description: "Uninstall the pipeline from Claude Code + Copilot CLI. Keychain access tokens are left untouched. Asks for double confirmation."
|
|
5
|
-
user-invocable: true
|
|
6
|
-
argument-hint: "[--dry-run] [--claude] [--copilot] [--target=<path>]"
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# multi-agent-delete - Token-Preserving Uninstall
|
|
10
|
-
|
|
11
|
-
**Input**: $ARGUMENTS
|
|
12
|
-
|
|
13
|
-
Removes the pipeline itself from the system. **Different from `multi-agent-purge`:**
|
|
14
|
-
|
|
15
|
-
| Command | What it deletes |
|
|
16
|
-
|---|---|
|
|
17
|
-
| `multi-agent-purge` | Active tasks' worktree / branch / log / state (development data) |
|
|
18
|
-
| `multi-agent-delete` | The pipeline itself: skills, commands, agents, scripts, rules - from every CLI |
|
|
19
|
-
|
|
20
|
-
## Never deleted
|
|
21
|
-
|
|
22
|
-
- Personal access tokens in the **Keychain / Credential Manager / libsecret** (GitHub, Jira, Bitbucket, Confluence, Telegram, Vercel, Firebase, etc.)
|
|
23
|
-
- `~/.claude/CLAUDE.md` and `~/.claude/multi-agent-preferences.json` (if the user provided them)
|
|
24
|
-
- User content OUTSIDE the `<!-- multi-agent-pipeline:begin/end -->` markers (`copilot-instructions.md`)
|
|
25
|
-
|
|
26
|
-
## Steps
|
|
27
|
-
|
|
28
|
-
1. **Determine the scope** - parse `$ARGUMENTS`:
|
|
29
|
-
- No target flag: all installed targets (default)
|
|
30
|
-
- `--claude / --copilot`: selective
|
|
31
|
-
- `--target=<path>`: adapter target (default cwd)
|
|
32
|
-
- `--dry-run`: only report, delete nothing
|
|
33
|
-
|
|
34
|
-
2. **Show a preview** (run the script with `--dry-run`):
|
|
35
|
-
```bash
|
|
36
|
-
node "$HOME/.copilot/scripts/uninstall.mjs" --dry-run --yes <flags>
|
|
37
|
-
```
|
|
38
|
-
Show the output to the user verbatim.
|
|
39
|
-
|
|
40
|
-
3. **First confirmation** - native `AskUserQuestion` picker (no typed y/N):
|
|
41
|
-
- `question`: "Delete the pipeline from the listed targets? Tokens are NOT touched." (`outputLanguage`)
|
|
42
|
-
- `header`: "Delete" · `options`: `{ label: "Continue", description: "Proceed to the final confirmation" }`, `{ label: "Cancel", description: "Keep everything installed" }`
|
|
43
|
-
- **Cancel** → exit.
|
|
44
|
-
|
|
45
|
-
4. **Second confirmation** (paranoia gate) - a second `AskUserQuestion` picker:
|
|
46
|
-
- `question`: "This is irreversible. Permanently remove the pipeline files now?" (`outputLanguage`)
|
|
47
|
-
- `header`: "Confirm" · `options`: `{ label: "Delete permanently", description: "Remove the distributed files; tokens are preserved" }`, `{ label: "Cancel", description: "Abort, change nothing" }`
|
|
48
|
-
- Anything other than **Delete permanently** → cancel.
|
|
49
|
-
|
|
50
|
-
5. **Delete** - run the real script with `--yes`:
|
|
51
|
-
```bash
|
|
52
|
-
node "$HOME/.copilot/scripts/uninstall.mjs" --yes <flags>
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
6. **Confirm**:
|
|
56
|
-
```
|
|
57
|
-
✓ multi-agent-pipeline removed.
|
|
58
|
-
ℹ Personal access tokens preserved in the Keychain.
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
7. **Reinstall** (if the user wants): `npx @mmerterden/multi-agent-pipeline install --copilot`
|
|
62
|
-
|
|
63
|
-
## Notes
|
|
64
|
-
|
|
65
|
-
- `--dry-run` is always safe - zero side effects.
|
|
66
|
-
- The adapter target is cwd. For a different repo, use `--target=<path>`.
|