$npx -y skills add Soul-Brews-Studio/arra-oracle-skills-cli --skill skills-listList all Oracle skills with profile tier, type, and script status. Use when user says "skills list", "show skills", "what skills", "list all skills", "how many skills", or wants to see available skills by profile.
| 1 | # /skills-list — Show All Skills |
| 2 | |
| 3 | > See everything at a glance. Single source of truth. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ``` |
| 8 | /skills-list # Pretty table |
| 9 | /skills-list --json # Machine-readable JSON |
| 10 | ``` |
| 11 | |
| 12 | ## Run |
| 13 | |
| 14 | ```bash |
| 15 | python3 .claude/scripts/skills-list.py |
| 16 | ``` |
| 17 | |
| 18 | The script lives at `.claude/scripts/skills-list.py` in the repo (not in src/skills/). It reads STANDARD_SKILLS and LAB_SKILLS from `profiles.ts` (single source of truth) and scans all skill directories. |
| 19 | |
| 20 | If not in the repo directory, fall back: |
| 21 | ```bash |
| 22 | python3 ~/.claude/skills/skills-list/scripts/skills-list.py |
| 23 | ``` |
| 24 | |
| 25 | ### Output |
| 26 | |
| 27 | ``` |
| 28 | 📦 Oracle Skills — 41 total |
| 29 | |
| 30 | standard 15 /go standard |
| 31 | full 23 /go full |
| 32 | lab 41 /go lab |
| 33 | |
| 34 | # Skill Profile Type Scripts |
| 35 | ── ──────────────────────── ────────── ────────���─── ─────── |
| 36 | 1 about-oracle standard skill+agent |
| 37 | 2 recap standard skill |
| 38 | 3 awaken standard skill |
| 39 | ... |
| 40 | 41 xray standard skill |
| 41 | |
| 42 | standard=15 | full=23 | lab=41 |
| 43 | ``` |
| 44 | |
| 45 | ### JSON mode |
| 46 | |
| 47 | ```bash |
| 48 | python3 ~/.claude/skills/skills-list/scripts/skills-list.py --json |
| 49 | ``` |
| 50 | |
| 51 | Returns structured JSON with all skill metadata — useful for piping to other tools. |
| 52 | |
| 53 | --- |
| 54 | |
| 55 | ARGUMENTS: $ARGUMENTS |