skilllisted
Install: claude install-skill MeroZemory/oh-my-droid
# Skill Management CLI
Meta-skill for managing oh-my-droid skills via CLI-like commands.
## Subcommands
### /skill list
Show all local skills organized by scope.
**Behavior:**
1. Scan user skills at `~/.factory/skills/omc-learned/`
2. Scan project skills at `.omd/skills/`
3. Parse YAML frontmatter for metadata
4. Display in organized table format:
```
USER SKILLS (~/.factory/skills/omc-learned/):
| Name | Triggers | Quality | Usage | Scope |
|-------------------|--------------------|---------|-------|-------|
| error-handler | fix, error | 95% | 42 | user |
| api-builder | api, endpoint | 88% | 23 | user |
PROJECT SKILLS (.omd/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` → `~/.factory/skills/omc-learned/<name>/SKILL.md`
- `projec