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