February 4, 2026
Select agents to install to:
npx add-skill https://github.com/Yeachan-Heo/oh-my-claudecode/blob/main/skills/skill/SKILL.md -a claude-code --skill skillInstallation paths:
.claude/skills/skill/# Skill Management CLI Meta-skill for managing oh-my-claudecode skills via CLI-like commands. ## Subcommands ### /skill list Show all local skills organized by scope. **Behavior:** 1. Scan user skills at `~/.claude/skills/omc-learned/` 2. Scan project skills at `.omc/skills/` 3. Parse YAML frontmatter for metadata 4. Display in organized table format: ``` USER SKILLS (~/.claude/skills/omc-learned/): | Name | Triggers | Quality | Usage | Scope | |-------------------|--------------------|---------|-------|-------| | error-handler | fix, error | 95% | 42 | user | | api-builder | api, endpoint | 88% | 23 | user | PROJECT SKILLS (.omc/skills/): | Name | Triggers | Quality | Usage | Scope | |-------------------|--------------------|---------|-------|---------| | test-runner | test, run | 92% | 15 | project | ``` **Fallback:** If quality/usage stats not available, show "N/A" --- ### /skill add [name] Interactive wizard for creating a new skill. **Behavior:** 1. **Ask for skill name** (if not provided in command) - Validate: lowercase, hyphens only, no spaces 2. **Ask for description** - Clear, concise one-liner 3. **Ask for triggers** (comma-separated keywords) - Example: "error, fix, debug" 4. **Ask for argument hint** (optional) - Example: "<file> [options]" 5. **Ask for scope:** - `user` → `~/.claude/skills/omc-learned/<name>/SKILL.md` - `project` → `.omc/skills/<name>/SKILL.md` 6. **Create skill file** with template: ```yaml --- name: <name> description: <description> triggers: - <trigger1> - <trigger2> argument-hint: "<args>" --- # <Name> Skill ## Purpose [Describe what this skill does] ## When to Activate [Describe triggers and conditions] ## Workflow 1. [Step 1] 2. [Step 2] 3. [Step 3] ## Examples ``` /oh-my-claudecode:<name> example-arg ``` ## Notes [Additional context, edge cases, gotchas] ``` 7. **Report succe