Claude-code-minoan skill-toggle
Enable, disable, and manage Claude Code skills. Use when the user asks to enable/disable/toggle/manage skills, check skill status, list skills, manage skill collections, or clean up the skills directory.
install
source · Clone the upstream repo
git clone https://github.com/tdimino/claude-code-minoan
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/tdimino/claude-code-minoan "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/planning-productivity/skill-toggle" ~/.claude/skills/tdimino-claude-code-minoan-skill-toggle && rm -rf "$T"
manifest:
skills/planning-productivity/skill-toggle/SKILL.mdsource content
Skill Toggle
Manage personal skills and plugin skills from one CLI.
Usage
python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py <command> [args]
Commands
| Command | Action |
|---|---|
| Show all skills with status (enabled/disabled), source, description |
| Only enabled skills |
| Only disabled skills |
| Only plugin skills |
| Disable one or more skills (personal: moves to , plugin: flips settings.json) |
| Enable one or more skills (reverse of disable) |
| Show details for a specific skill |
| Fuzzy match across all skill names and descriptions |
| Move orphan directories (no SKILL.md), zip files, and stale scripts to |
| Show all collections with skill/plugin counts |
| Define a new collection from explicit skill list |
| Snapshot all currently-enabled skills as a collection |
| List skills in a collection with current enabled/disabled status |
| Enable all skills in the collection |
| Disable all skills in the collection |
| Remove a collection definition |
| Add skills to existing collection |
| Remove skills from existing collection |
How It Works
Personal skills: Moved between
~/.claude/skills/<name>/ (enabled) and ~/.claude/skills/disabled/<name>/ (disabled). The disabled/INDEX.md is auto-regenerated after every operation.
Plugin skills: The
enabledPlugins object in ~/.claude/settings.json is toggled. Accepts both plugin names (compound-engineering) and namespaced skill names (compound-engineering:deepen-plan)—the skill suffix is stripped and the entire plugin is toggled either way.
Collections: Named groups of skills stored as JSON in
~/.claude/skills/skill-toggle/collections/. Each collection lists personal skills and/or plugins that can be toggled as a unit. collection on research enables everything in the research collection; collection off research disables them. Collections are additive—turning one on only enables its skills, it doesn't disable anything outside the collection. Use collection save to snapshot your current enabled set.
Examples
# Disable two personal skills python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py disable smolvlm llama-cpp # Enable a previously disabled skill python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py enable webflow-migrate # Disable a plugin (all its skills go with it) python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py disable agent-evaluation # List only what's currently disabled python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py list --disabled # Clean orphan dirs and zip files python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py clean # Create a named collection of skills python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py collection create research academic-research ancient-near-east-research rlama exa-search linear-a-decipherment # Snapshot all currently-enabled skills as a collection python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py collection save baseline # Disable all skills in a collection at once python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py collection off research # Re-enable a collection python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py collection on research # Show what's in a collection with current status python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py collection show research