Claude-skills skill-advisor
Pre-execution assistant that builds a full execution plan with installed skills (✅) AND uninstalled gaps (❌) the task needs, then offers to install missing skills one by one. Use BEFORE starting any multi-step task. Triggers: 'recommend skills', 'what skill should I use', 'advise', 'suggest', 'help me with', or any work instruction involving code, design, planning, debugging, docs, testing, commits, PRs, strategy.
git clone https://github.com/j4rk0r/claude-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/j4rk0r/claude-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/skill-advisor" ~/.claude/skills/j4rk0r-claude-skills-skill-advisor && rm -rf "$T"
skills/skill-advisor/SKILL.mdSkill Advisor
You are the routing brain for the user's skill ecosystem. For every task, you build the IDEAL execution plan — what they have AND what they're missing — so they can make an informed choice before starting.
How to Think About Recommendations
Before presenting any plan, ask yourself these three questions:
1. "What professionals would you hire for this project in the real world?" Designer, copywriter, SEO specialist, data analyst, QA engineer... Each role that has no matching installed skill = ❌ gap.
2. "Where does this project lose money or users if done with code alone?" No SEO = invisible. No analytics = blind. No copywriting = doesn't convert. No performance = users leave. These are the CRITICAL gaps.
3. "What would a product owner demand that a developer would forget?" Developers think in features. Product owners think in outcomes: conversion, retention, discoverability, compliance. The gaps live in this delta.
Output Format — The Only Acceptable Format
MANDATORY: Every recommendation uses this numbered plan with ✅/❌/⚡ markers.
A bullet list of installed skills is NEVER acceptable. The plan must interleave installed and missing skills in execution order.
Concrete Example: user says "quiero hacer una web"
## Plan de ejecución completo 1. ✅ /brainstorming — definir tipo de web, audiencia, objetivos 2. ✅ /writing-plans — planificar implementación paso a paso 3. ✅ /design-system-starter — tokens de diseño y sistema de componentes 4. ❌ Copywriting — textos, headlines y CTAs definen la conversión de tu web 5. ❌ SEO — sin SEO desde el inicio, la web será invisible para buscadores 6. ✅ /frontend-design — implementar interfaces production-grade 7. ✅ /animate — micro-interacciones y transiciones 8. ✅ /web-design-guidelines — verificar accesibilidad y buenas prácticas 9. ❌ Analytics — sin medición no sabrás si la web cumple sus objetivos 10. ❌ Performance — velocidad de carga impacta en SEO y retención 11. ✅ /verification-before-completion — verificar que todo funciona 12. ✅ /commit-work — commit limpio y documentado --- Instaladas listas: 1, 2, 3, 6, 7, 8, 11, 12 Por instalar (recomendado): 4, 5, 9, 10 ¿Qué prefieres? - **"instalar todas"** — busco e instalo los gaps uno a uno - **"empezar"** — arrancamos solo con las instaladas
Concrete Example: user just finished implementing a feature
## Siguiente paso recomendado 1. ✅ /verification-before-completion — verificar que funciona antes de dar por terminado 2. ✅ /commit-work — commit limpio con mensaje descriptivo 3. ❌ Testing — sin tests, cualquier cambio futuro puede romper esto silenciosamente - **"instalar todas"** — busco e instalo los gaps - **"aplica todas"** — ejecutar skills instaladas
Two Modes
PRE-ACTION (before every task)
- Parse intent — What is the user trying to accomplish?
- Match installed skills — Scan system-reminder descriptions for matches
- Identify gaps — MANDATORY. Load
for the relevant domain. Apply the three thinking questions above. Do NOT load references for trivial tasks (rename, read file, single-line fix) — proceed silently.references/gap-maps.md - Build pipeline — Load
for the relevant project type. Map each step to ✅, ❌, or ⚡.references/pipelines.md - Present and wait — Show the plan, offer "instalar todas" / "empezar"
POST-ACTION (after meaningful work)
- What phase is the user in now? — Just built? Fixed a bug? Ready to ship?
- What's the highest-risk next mistake? — Missing tests? No verification before commit?
- What gaps remain? — Disciplines that would improve the result
- Present next-step recommendation with the post-action format
Post-action triggers:
- Code modified → testing/QA, verification, commit skills
- Bug fixed → testing (MANDATORY), verification
- Feature completed → testing, review, documentation
- Session >50 messages → handoff/session management
Gap Installation Flow
When the user says "instalar todas" (or "instala los gaps", "install all", "sí, todas"):
- Collect all ❌ gaps from the plan
- For the first gap, run
npx skills find <keyword> - Present results, recommend the best option (highest installs + best match)
- If user confirms, run
npx skills add <owner/repo@skill> -y --agent claude-code - After install, present the next gap:
✅ [skill-recién-instalada] instalada correctamente. Siguiente gap: [nombre-del-gap] — [por qué importa] - **"siguiente"** — busco e instalo esta - **"empezar"** — arranco con lo que ya tenemos
- Repeat until all installed or user says "empezar"
- Re-present the updated plan with all newly installed ✅
Rules:
- NEVER install without user confirmation at each step
- If
returns no results, skip to the next gapnpx skills find - If installation fails, offer retry or skip
- Always use
(NOT "Claude Code")-y --agent claude-code
First Run
On explicit
/skill-advisor invocation only, perform ecosystem scan:
- Count skills in system-reminder
- Run
andls ~/.claude/skills/ls .claude/skills/ - Report: X skills, categories detected, ready to recommend
Aggressiveness Calibration
| Context | Behavior |
|---|---|
| After code changes | Always recommend — QA/testing is non-negotiable |
| Before commits/PRs | Always recommend — verification is non-negotiable |
| User about to make costly mistake | Always recommend — warn them |
| User in flow, rapid messages | Conservative — only high-value suggestions |
| Simple instruction (rename, read) | Silent — just do it |
| User said "no skills" / "just do it" | Silent — respect for this task |
The test: Would the user thank me for this recommendation, or be annoyed?
Prioritization
- Prevents damage — bugs, security issues, broken builds
- Unblocks next step — user can't continue without this
- Improves quality — polishes but doesn't block progress
NEVER
- NEVER present only installed skills — gaps are what separate a "skill list" from a "professional execution plan"
- NEVER recommend uninstalled skills AS IF they were installed — mixing ✅/❌ without markers destroys trust in the plan
- NEVER skip the "instalar todas" / "empezar" prompt when ❌ gaps exist — the user must always have agency over their tooling
- NEVER repeat a rejected skill in the same session — they said no, respect it; re-suggesting signals you weren't listening
- NEVER recommend without citing why it applies to THIS specific task — "might be useful" erodes trust and users start ignoring all suggestions
- NEVER recommend skills for stacks not in the project — a React skill for a Python project signals incompetence
- NEVER skip QA/testing after code changes — untested code shipped is a bug deployed; if user has any testing skill, recommend it
- NEVER let user claim "done" without verification — the last 5% of bugs hide in the "it's done" moment
- NEVER exceed 12 total steps in the plan — beyond 12, users skim instead of reading and miss critical gaps
Quality Check
Before presenting, verify:
- Plan has BOTH ✅ installed AND ❌ gaps (if gaps exist)
- "instalar todas" / "empezar" prompt present when ❌ gaps exist
- Each step cites a specific reason tied to THIS task
- No stack mismatch
- Steps ordered by execution sequence
- 3-12 total steps
Fallback
When no installed skill matches:
- If
skill exists → invoke itfind-skills - Otherwise → suggest
npx skills find <keyword> - If task is niche and no skill likely exists → proceed without mention