mit einem Klick
migrate
// Migrate from npm-installed metaswarm to the marketplace plugin — removes redundant files with safety checks
// Migrate from npm-installed metaswarm to the marketplace plugin — removes redundant files with safety checks
Interactive project setup — detects your project, configures metaswarm, writes project-local files
Use when starting work on any task, when the user mentions metaswarm, or when the user wants to begin tracked development work
Diagnostic status report — shows metaswarm installation state, project setup, and potential issues
4-phase execution loop for work units - IMPLEMENT, VALIDATE, ADVERSARIAL REVIEW, COMMIT
Create comprehensive GitHub issues with TDD plans, acceptance criteria, and agent instructions for autonomous PR lifecycle management
Address PR review feedback systematically — fetch inline comments, review bodies, handle outside-diff-range comments, resolve threads with proper attribution
| name | migrate |
| description | Migrate from npm-installed metaswarm to the marketplace plugin — removes redundant files with safety checks |
Migrate a project from npm-installed metaswarm (npx metaswarm init) to the marketplace plugin. Removes redundant embedded files with a safety protocol that prevents data loss.
When to use: The SessionStart hook detects .claude/plugins/metaswarm/.claude-plugin/plugin.json (legacy embedded plugin) and recommends running this skill.
The user MUST understand this before any file list is shown:
Before presenting any migration preview or file list, ALWAYS lead with this framing:
What this migration does: The marketplace plugin now provides all the skills, commands, rubrics, and guides that were previously copied into your project directory. This migration simply removes those redundant copies — the originals now live in the plugin itself.
Nothing is lost: Your project-specific files (CLAUDE.md, .coverage-thresholds.json, .beads/, bin/, scripts/) are NEVER touched. Only duplicate metaswarm framework files are removed.
Fully reversible: All removals are staged with
git rm(not permanently deleted). Before you commit:
- Undo everything:
git restore --staged . && git checkout -- .- After committing:
git revert HEADNo commit is made automatically — you review and commit when you're satisfied.
Tone: Be reassuring, not alarming. Say "cleaning up XX redundant copies" not "deleting XX files". Say "these files now live in the plugin" not "these files will be removed". Frame the migration as housekeeping, not destruction.
When showing file counts: If there are many files (e.g., 40+), explain that the large count is because the old npm installer copied the entire plugin framework into .claude/plugins/metaswarm/ — that one directory accounts for most of the count, and it's all framework code that's now served directly by the plugin.
.metaswarm/project-profile.json -- if "distribution": "plugin" is already set, inform the user migration was already completed and exit.claude/plugins/metaswarm/.claude-plugin/plugin.json exists -- if not, there is nothing to migrate; inform the user and exitIf the plugin is not loaded, the user needs to install it first: /plugin marketplace add dsifry/metaswarm-marketplace
Scan for files installed by npx metaswarm init that are now provided by the marketplace plugin.
Candidates for removal:
| Category | Path pattern |
|---|---|
| Embedded plugin | .claude/plugins/metaswarm/ (entire directory) |
| Rubrics | .claude/rubrics/*.md |
| Guides | .claude/guides/*.md |
| Old commands | .claude/commands/metaswarm-setup.md, .claude/commands/metaswarm-update-version.md |
NEVER removed (project-local files): CLAUDE.md, .coverage-thresholds.json, .metaswarm/project-profile.json, .beads/, bin/, scripts/, .github/workflows/, .claude/commands/ shims.
For each removal candidate, verify it is an unmodified metaswarm file using SHA-256 hash comparison.
Hash protocol:
\r\n -> \n, \r -> \n)Computing hashes from the plugin's live files ensures the hash list stays current -- no hardcoded hashes that drift.
Classification:
| Result | Action |
|---|---|
| Hash matches | Unmodified -- add to deletion list |
| Hash differs | User-modified -- flag for user decision, never auto-delete |
| Not in hash list | Unknown file -- skip entirely |
Display the complete migration plan before any changes. Lead with the safety framing from the guidelines above, then show the preview:
## Migration Preview
These are redundant copies of framework files that are now provided by the plugin.
All removals are staged (not committed) — you can undo everything before committing.
### Redundant framework files to clean up (XX files)
These are unmodified copies that the plugin now provides directly:
- .claude/plugins/metaswarm/ (embedded plugin copy — XX files, now served by marketplace plugin)
- .claude/rubrics/<each matching file> (now in plugin's rubrics/)
- .claude/guides/<each matching file> (now in plugin's guides/)
- .claude/commands/metaswarm-setup.md (replaced by plugin command)
- .claude/commands/metaswarm-update-version.md (replaced by plugin command)
### Files you've customized (require your decision)
- .claude/rubrics/code-review-rubric.md (MODIFIED — your changes are preserved until you decide)
### Your project files (NEVER touched)
- CLAUDE.md, .coverage-thresholds.json, .metaswarm/, .beads/, bin/, scripts/
### What gets added
- 6 command shims in .claude/commands/ (thin wrappers that route to plugin commands)
- .metaswarm/project-profile.json updated with "distribution": "plugin"
### How to undo (before committing)
git restore --staged . && git checkout -- .
Use AskUserQuestion:
git restore --staged . && git checkout -- ."Before executing removals:
git status to check for uncommitted changesAnnounce what you're doing: Before running any commands, say:
"Staging the redundant files for removal. These are all framework copies — your project files are untouched. Nothing is committed yet."
Git-tracked files -- use git rm (staged, reversible via git checkout):
git rm -rf .claude/plugins/metaswarm/
git rm .claude/rubrics/<each confirmed file>
git rm .claude/guides/<each confirmed file>
git rm .claude/commands/metaswarm-setup.md
git rm .claude/commands/metaswarm-update-version.md
After running: Reassure: "Done — XX files staged for removal. These are only staged, not committed. Run git status to see the staged changes, or git restore --staged . && git checkout -- . to undo."
Untracked files -- use rm -f (unlikely but handle gracefully).
Empty directories -- remove .claude/rubrics/ and .claude/guides/ if empty after cleanup. Do NOT remove .claude/commands/ (shims remain).
Write 6 shims to .claude/commands/ (same as setup skill):
| Shim | Routes to |
|---|---|
start-task.md | /metaswarm:start-task |
prime.md | /metaswarm:prime |
review-design.md | /metaswarm:review-design |
self-reflect.md | /metaswarm:self-reflect |
pr-shepherd.md | /metaswarm:pr-shepherd |
brainstorm.md | /metaswarm:brainstorm |
Each shim:
<!-- Created by metaswarm setup. Routes to the metaswarm plugin. Safe to delete if you uninstall metaswarm. -->
Invoke the `/metaswarm:<command-name>` skill with any arguments the user provided.
If a shim already exists with different content, ask before overwriting.
Merge these fields into .metaswarm/project-profile.json (preserve existing fields):
{
"distribution": "plugin",
"migrated_at": "<ISO 8601 timestamp>",
"migrated_from": "npm"
}
Display what was done and next steps:
## Migration Complete
Cleaned up XX redundant framework files that are now provided by the marketplace plugin.
Your project files (CLAUDE.md, .coverage-thresholds.json, .beads/, etc.) were not touched.
### What changed
- Removed XX redundant framework copies (now served by plugin)
- Added 6 command shims to .claude/commands/
- Updated project profile to "distribution": "plugin"
### Next steps
1. Review staged changes: `git diff --cached --stat`
2. Commit when satisfied: `git commit -m "chore: migrate metaswarm from npm to marketplace plugin"`
3. Verify everything works: try `/start-task`
### If anything seems wrong
- Undo before committing: `git restore --staged . && git checkout -- .`
- Undo after committing: `git revert HEAD`
- Full re-install: `npx metaswarm install` (npm package still available)
All removals use git rm, which only stages changes — files are NOT deleted from git history. The migration never auto-commits, so the user always has a chance to review and undo:
git restore --staged . && git checkout -- .git revert HEADgit checkout HEAD~1 -- <path>npx metaswarm install (npm package still published)| Error | Action |
|---|---|
.metaswarm/project-profile.json missing | Create with minimal fields, proceed |
git rm fails on a file | Log error, skip file, continue |
| Permission denied | Warn user, skip file, continue |
| Plugin not loaded | Exit with install instructions |
metaswarm_version < 0.8.0 | Warn manual intervention may be needed |
| Anti-Pattern | Do Instead |
|---|---|
| Auto-deleting modified files | Flag and ask explicitly |
| Deleting before confirming plugin works | Pre-flight check first |
Using rm -rf on tracked files | Use git rm (reversible) |
| Skipping dry run preview | Always show full preview |
| Removing project-local files | Never touch CLAUDE.md, .beads/, bin/, scripts/ |
| Saying "deleting XX files" or "removing XX files" | Say "cleaning up XX redundant copies" |
| Showing file list without safety context | Always lead with the safety framing |
Jumping straight to git rm commands | Explain what you're doing and why it's safe first |