From minimalism-workflow
Clean up saved plans from the planvault. This skill should be used when the user wants to delete old plans, remove stale specs, prune the planvault, or says "cleanup-plans".
How this skill is triggered — by the user, by Claude, or both
Slash command
/minimalism-workflow:cleanup-plansThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Remove saved plans from `~/.planvault/`, either selectively or in bulk.
Remove saved plans from ~/.planvault/, either selectively or in bulk.
Arguments: $ARGUMENTS (optional: mnemonic name, --all, or --stale)
Determine action from arguments:
If $ARGUMENTS is a specific mnemonic:
If $ARGUMENTS is --all:
If $ARGUMENTS is --stale:
If $ARGUMENTS is empty:
Available script commands:
# List plans for current project (for interactive selection)
bash <skill-dir>/scripts/cleanup-plans.sh list
# Delete a specific plan
bash <skill-dir>/scripts/cleanup-plans.sh delete <mnemonic>
# Find orphaned entries
bash <skill-dir>/scripts/cleanup-plans.sh stale
# Delete all plans for current project
bash <skill-dir>/scripts/cleanup-plans.sh project-all <pwd-root>
Parse the output:
NO_PLANS — Nothing to clean up.NO_MATCH — No plans for current project.PLAN\t<num>\t<mnemonic>\t<description>\t<updated_at> — Plan entry for selection.DELETED\t<mnemonic> — Confirms deletion.NOT_FOUND — Mnemonic doesn't exist.REMAINING\t<count> — Plans remaining after deletion.ORPHAN_INDEX\t<mnemonic>\t<pwd> — Index entry with missing file.ORPHAN_DIR\t<name> — Directory with no index entry.CLEAN — No stale entries found.npx claudepluginhub kodingwarrior/minimalism-workflow --plugin minimalism-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.