← ClaudeAtlas

skill-togglelisted

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.
tdimino/claude-code-minoan · ★ 32 · Data & Documents · score 85
Install: claude install-skill tdimino/claude-code-minoan
# Skill Toggle Manage personal skills and plugin skills from one CLI. ## Usage ```bash python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py <command> [args] ``` ## Commands | Command | Action | |---------|--------| | `list` | Show all skills with status (enabled/disabled), source, description | | `list --enabled` | Only enabled skills | | `list --disabled` | Only disabled skills | | `list --plugins` | Only plugin skills | | `disable <name> [name...]` | Disable one or more skills (personal: moves to `disabled/`, plugin: flips settings.json) | | `enable <name> [name...]` | Enable one or more skills (reverse of disable) | | `status <name>` | Show details for a specific skill | | `search <query>` | Fuzzy match across all skill names and descriptions | | `clean` | Move orphan directories (no SKILL.md), zip files, and stale `.sh` scripts to `disabled/orphans/` | | `collection list` | Show all collections with skill/plugin counts | | `collection create <name> <skills...>` | Define a new collection from explicit skill list | | `collection save <name>` | Snapshot all currently-enabled skills as a collection | | `collection show <name>` | List skills in a collection with current enabled/disabled status | | `collection on <name>` | Enable all skills in the collection | | `collection off <name>` | Disable all skills in the collection | | `collection delete <name>` | Remove a collection definition | | `collection add <name> <skills...>` | Add skills to existing collection |