guide

A command that explains installed skills and slash commands and helps choose among them. It can provide an overview, inspect dependencies, compare a skill pack, or recommend a tool for a stated goal.

In plain words
What is it for?
Use it to browse available add-ons, investigate a specific command, check dependencies, compare packs, or get a recommendation.
Why use it?
It removes the need to remember what each installed add-on does or which one fits a task.

Command

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/vv1nn/skill-guide/guide
Clone the repo
git clone --depth 1 https://github.com/VV1NN/skill-guide
Per session 67 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,220 The whole file, excluding the scripts and references it only reads on demand.
Security scan E 3 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00067 $0.03220
Opus 5 $0.00034 $0.01610
Sonnet 5 $0.00013 $0.00644
Haiku 4.5 $0.00007 $0.00322

Measured yesterday against content hash bb688ef8d100, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade E, and why

guide scanned grade E with 3 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

- forge: `curl -L https://foundry.paradigm.xyz | bash && foundryup`

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

[ -n "$TEMP_DIR" ] && rm -rf "$TEMP_DIR"

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

git curl jq gh docker; do
commands/guide.md · 365 lines

How it starts

The opening of the file, as written. The whole thing — 365 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/guide -- Skill Navigator

You are a skill navigator helping the user understand their installed Claude Code skills and commands.

Detect the user's language from their input and respond entirely in that language.

Step 1: Determine the mode

Based on the argument provided by the user ($ARGUMENTS):

  • No arguments or empty --> Run Overview Mode
  • --check --> Run Dependency Check Mode
  • --diff <repo-url-or-skill-pack-name> --> Run Diff Mode
  • Argument matches an installed skill or command name (e.g., hunt, recon, web3-audit) --> Run Deep Dive Mode
  • Argument is a sentence or goal description (e.g., "I want to test website security") --> Run Recommendation Mode

Step 2: Scan installed skills and commands

Use the Bash tool to scan the filesystem:

# Use bash explicitly to avoid zsh glob no-match errors
bash -c '
# Scan user-level skills
for f in ~/.claude/skills/*/SKILL.md; do
  [ -f "$f" ] || continue
  [ -s "$f" ] || continue  # skip empty files
  name=$(grep "^name:" "$f" | head -1 | sed "s/name: *//")
  # Fallback: use directory name if no name field
  [ -z "$name" ] && name=$(basename "$(dirname "$f")")
  desc=$(grep "^description:" "$f" | head -1 | sed "s/description: *//" | cut -c1-150)
  [ -z "$desc" ] && desc="(no description available)"
  echo "SKILL|$name|$desc"
done

# Scan project-level skills
for f in .claude/skills/*/SKILL.md; do
  [ -f "$f" ] || continue
  [ -s "$f" ] || continue
  name=$(grep "^name:" "$f" | head -1 | sed "s/name: *//")
  [ -z "$name" ] && name=$(basename "$(dirname "$f")")
  desc=$(grep "^description:" "$f" | head -1 | sed "s/description: *//" | cut -c1-150)
  [ -z "$desc" ] && desc="(no description available)"
  echo "SKILL|$name|$desc (project)"
done

# Scan user-level commands
for f in ~/.claude/commands/*.md; do
  [ -f "$f" ] || continue
  [ -s "$f" ] || continue
  cmd=$(basename "$f" .md)
  desc=$(grep "^description:" "$f" | head -1 | sed "s/description: *//" | cut -c1-150)
  [ -z "$desc" ] && desc="(no description available)"
  echo "CMD|/$cmd|$desc"
done

# Scan project-level commands
for f in .claude/commands/*.md; do
  [ -f "$f" ] || continue
  [ -s "$f" ] || continue
  cmd=$(basename "$f" .md)
  desc=$(grep "^description:" "$f" | head -1 | sed "s/description: *//" | cut -c1-150)
  [ -z "$desc" ] && desc="(no description available)"
  echo "CMD|/$cmd|$desc (project)"
done
'

Read the full file on GitHub · 365 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 365 lines · 67 tokens per session scan E bb688ef8d100

Subscribe to this mod's changes

guide is a command published in the GitHub repository VV1NN/skill-guide (5 stars, last pushed 4mo ago), licensed MIT. It adds 67 tokens to every session and 3,220 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it E with 3 findings (downloads and executes remote code, recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.