Skill

migrate

Migrate from npm-installed metaswarm to the marketplace plugin — removes redundant files with safety checks

From metaswarm
Install
1
Run in your terminal
$
npx claudepluginhub dsifry/metaswarm-marketplace --plugin metaswarm
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

Migration Skill

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.


IMPORTANT: Safety & Messaging Guidelines

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 HEAD

No 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.


Step 1: Pre-flight Check

  1. Confirm this skill is running from the marketplace plugin (if this skill loaded, the plugin is active)
  2. Read .metaswarm/project-profile.json -- if "distribution": "plugin" is already set, inform the user migration was already completed and exit
  3. Verify .claude/plugins/metaswarm/.claude-plugin/plugin.json exists -- if not, there is nothing to migrate; inform the user and exit

If the plugin is not loaded, the user needs to install it first: /plugin marketplace add dsifry/metaswarm-marketplace


Step 2: Inventory Legacy Files

Scan for files installed by npx metaswarm init that are now provided by the marketplace plugin.

Candidates for removal:

CategoryPath 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.


Step 3: Content Verification

For each removal candidate, verify it is an unmodified metaswarm file using SHA-256 hash comparison.

Hash protocol:

  1. Read file content
  2. Normalize line endings to LF (\r\n -> \n, \r -> \n)
  3. Strip trailing whitespace from each line
  4. Strip trailing newlines
  5. Compute SHA-256 of normalized content
  6. Compare against hash of the corresponding file from the marketplace plugin's own directories (rubrics/, guides/, etc.)

Computing hashes from the plugin's live files ensures the hash list stays current -- no hardcoded hashes that drift.

Classification:

ResultAction
Hash matchesUnmodified -- add to deletion list
Hash differsUser-modified -- flag for user decision, never auto-delete
Not in hash listUnknown file -- skip entirely

Step 4: Dry Run Preview

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 -- .

Step 5: User Confirmation

Use AskUserQuestion:

  • Remind the user: "This stages the cleanup — nothing is committed yet. You can undo with git restore --staged . && git checkout -- ."
  • Ask: "Ready to clean up the redundant framework files?" (not "Ready to delete files?")
  • For each user-modified file, ask individually: keep, remove, or show diff
  • If the user chooses "diff", display the difference between their version and the plugin's, then re-ask

Step 6: Git Safety

Before executing removals:

  1. Run git status to check for uncommitted changes
  2. If uncommitted changes exist, warn: "Recommended to commit or stash before migrating so changes are in their own commit. Continue anyway?"
  3. If the user declines, exit

Step 7: Cleanup

Announce 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).


Step 8: Command Shim Creation

Write 6 shims to .claude/commands/ (same as setup skill):

ShimRoutes 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.


Step 9: Profile Update

Merge these fields into .metaswarm/project-profile.json (preserve existing fields):

{
  "distribution": "plugin",
  "migrated_at": "<ISO 8601 timestamp>",
  "migrated_from": "npm"
}

Step 10: Post-Migration Summary

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)

Rollback (Nothing Is Permanent)

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:

  • Before committing (full undo): git restore --staged . && git checkout -- .
  • After committing (full undo): git revert HEAD
  • Single file recovery: git checkout HEAD~1 -- <path>
  • Full re-install of old approach: npx metaswarm install (npm package still published)

Error Handling

ErrorAction
.metaswarm/project-profile.json missingCreate with minimal fields, proceed
git rm fails on a fileLog error, skip file, continue
Permission deniedWarn user, skip file, continue
Plugin not loadedExit with install instructions
metaswarm_version < 0.8.0Warn manual intervention may be needed

Anti-Patterns

Anti-PatternDo Instead
Auto-deleting modified filesFlag and ask explicitly
Deleting before confirming plugin worksPre-flight check first
Using rm -rf on tracked filesUse git rm (reversible)
Skipping dry run previewAlways show full preview
Removing project-local filesNever 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 contextAlways lead with the safety framing
Jumping straight to git rm commandsExplain what you're doing and why it's safe first
Stats
Stars132
Forks13
Last CommitFeb 27, 2026