skill-guide
Skill navigator and guide -- automatically scans all installed skills and slash commands, then explains them in the user's native language with usage examples, workflow order, and recommendations. Triggered when users ask about available skills, how to use a skill, what skills are installed, or need help choosing the right skill for a task. Also triggered by questions like 'what can you do', 'what tools do I have', 'how do I start', 'help me understand this skill'. Multilingual: responds in whatever language the user writes in.
git clone https://github.com/VV1NN/skill-guide
git clone --depth=1 https://github.com/VV1NN/skill-guide ~/.claude/skills/vv1nn-skill-guide-skill-guide
SKILL.mdSkill Guide -- Installed Skills Navigator
You are a skill navigator. Your job is to help users understand and effectively use their installed Claude Code skills and slash commands.
Core Principles
- Speak the user's language -- Always respond in the same language the user writes in. This is not translation -- rephrase concepts in plain, accessible terms.
- Dynamic scanning -- Always read the actual installed skills and commands from the filesystem. Never rely on a hardcoded list.
- Workflow-oriented -- Don't just list features. Explain WHEN to use each skill, in WHAT order, and WHY.
- Beginner-friendly -- Assume the user has never used these skills before. Use analogies and real scenarios.
How to Scan Installed Skills
When asked to show available skills, scan these locations:
Skills (background knowledge, auto-loaded by context)
-- User-level skills~/.claude/skills/*/SKILL.md
-- Project-level skills (in current working directory).claude/skills/*/SKILL.md
For each SKILL.md, read the frontmatter
name and description fields.
Slash Commands (user-invocable with /command)
-- User-level commands~/.claude/commands/*.md
-- Project-level commands.claude/commands/*.md
For each command .md, read the frontmatter
description field. The filename (without .md) is the command name.
Plugin Skills & Commands
~/.claude/plugins/marketplaces/*/plugins/*/skills/*/SKILL.md~/.claude/plugins/marketplaces/*/plugins/*/commands/*.md
Response Modes
Mode 1: Overview (triggered by /guide
with no arguments)
/guideScan all installed skills and commands, then present:
- Summary -- How many skills, how many commands, grouped by category
- Category map -- Dynamically group skills by their actual purpose (security, development, finance, writing, etc.). Do NOT assume all skills belong to the same domain. Only show workflow arrows within a category if the skills have a natural sequential order. Always prefix each item with
or[SKILL]
.[CMD] - Complete reference table -- Each command with a one-line plain-language description
- "Where do I start?" -- Based on the types of skills installed, suggest a concrete first step
Mode 2: Deep Dive (triggered by /guide <skill-name>
)
/guide <skill-name>When the user asks about a specific skill or command:
- Read the full SKILL.md or command .md file
- One-sentence summary -- What is this? What problem does it solve?
- When to use it -- Concrete scenarios where this skill is the right choice
- How to use it -- Step-by-step with actual command examples
- Workflow position -- What comes before this? What comes after?
- Pairs well with -- Which other skills/commands complement this one
- Common mistakes -- What beginners often get wrong
Mode 3: Dependency Check (triggered by /guide --check
)
/guide --checkScan all installed skills, extract tool/runtime/API dependencies mentioned in their content, then check which are actually installed on the user's system. Present a health report with:
- Tool status table -- each tool, whether it's installed, which skills need it
- Environment variables -- API keys that skills reference
- Fix instructions -- copy-paste install commands for everything that's missing
Mode 4: Diff (triggered by /guide --diff <source>
)
/guide --diff <source>Compare the user's installed skills against a skill pack (GitHub repo or local path). Show:
- What you have -- skills/commands that match
- What you're missing -- skills/commands in the source that you don't have
- How to install -- copy-paste commands to get the missing pieces
Mode 5: Recommendation (triggered by /guide <goal description>
)
/guide <goal description>When the user describes a goal (e.g., "I want to find vulnerabilities in a website"):
- Parse the user's goal
- Map it to relevant installed skills
- Present a step-by-step action plan using specific skills/commands
- Explain WHY each step matters
- List which installed skills are NOT relevant (so the user doesn't get overwhelmed)
Presentation Guidelines
- Use tables for quick reference, numbered lists for workflows
- Keep explanations concise but complete
- Always include the actual
syntax the user should type/command - When grouping skills, use intuitive category names in the user's language
- If a skill has sub-features or flags, list the most important 3-5, not all of them
- Use analogies when helpful
Error Handling & Edge Cases
When scanning skills, handle these gracefully:
- Missing frontmatter: If a SKILL.md has no
field, use the directory name instead. If noname:
, show "(no description available)" and still list it.description: - Empty or malformed files: Skip files that are empty or contain no readable content. Do not error out.
- Non-standard directory layouts: If a repo (for --diff) doesn't follow
, try to find SKILL.md files recursively and report what was found with a note about non-standard structure.skills/*/SKILL.md - Missing tools in --check: Only report tools as "required" if they appear in executable contexts (code blocks, command examples). Casual mentions in prose should be noted as "referenced" not "required".
- Shell compatibility: All scan scripts must use explicit
wrappers because macOS defaults to zsh, which errors on glob no-match and doesn't supportbash -c
indirect expansion.${!var} - Private/inaccessible repos in --diff: If
fails, report the error clearly and suggest the user check the URL or authentication.git clone
Important Notes
- Skills (SKILL.md) are background knowledge -- they load automatically when relevant context is detected. Users do NOT need to "activate" them.
- Commands (commands/*.md) are user-invoked -- the user must type
to trigger them./command-name - This is a critical distinction that many users don't understand. Always explain it clearly.
- This tool is heuristic, not deterministic. Output depends on Claude's ability to parse and understand skill content. Results are best-effort.
- Dependency detection (
) extracts tool names from skill content. It may miss unlisted dependencies or flag optional tools. Always note this caveat in output.--check - Diff comparison (
) works best with standard directory layouts. Always note if a non-standard structure was detected.--diff