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.
npx skills add girofu/skill-fetch --skill skill-fetchgit clone --depth 1 https://github.com/girofu/skill-fetchWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/girofu/skill-fetch/skill-fetch)<a href="https://agentmods.dev/skills/girofu/skill-fetch/skill-fetch"><img src="https://agentmods.dev/badge/skills/girofu/skill-fetch/skill-fetch.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00092 | $0.03378 |
| Opus 5 | $0.00046 | $0.01689 |
| Sonnet 5 | $0.00018 | $0.00676 |
| Haiku 4.5 | $0.00009 | $0.00338 |
Grade A, and why
skill-fetch scanned grade A with 1 finding 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 7d ago.
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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
allowed-tools: ["Bash", "Read", "Write", "Edit", "Glob", "WebFetch", "shell", "read_file", "write_file", "execute_command", "fetch", "curl"] How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill Fetch
Search, score, and install agent skills from multiple registries in parallel.
When to Use
- A skill-eval hook outputs "MISSING EXTERNAL SKILL"
- The current task requires domain expertise not available locally
- The user asks to "fetch skill", "search for a skill", or "install a skill"
Critical Rules
- Never use
skillsmp_get_skill_contentto preview before deciding — search descriptions are sufficient. Only use as a fallback if installation fails. - Stop on first results, continue only on zero (max 5 rounds) — any round with ≥1 result proceeds to analysis.
- Only the user can decide to skip — the LLM must never skip installation on its own.
- Always use plain-text interaction — do not use AskUserQuestion. Output analysis and wait for the user to reply with a number or command.
- Show up to 5 results per page — with full analysis (content, pros, cons, repo URL) so the user can make an informed decision.
Platform Compatibility
This skill works across 6+ AI coding agents (Claude Code, Cursor, Codex, Gemini CLI, Windsurf, Amp). Tool names adapt automatically. See references/platform-adapters.md for the full mapping table.
Procedure
Step 0: SkillsMP MCP Self-Check (Claude Code only)
Before searching, verify that the SkillsMP MCP server is available:
- First, try loading deferred tools: Run
ToolSearch("skillsmp")to load any deferred SkillsMP MCP tools. In Claude Code, MCP tools are often deferred (not loaded until requested) and have namespaced names likemcp__skillsmp__skillsmp_search. TheToolSearchcall resolves these. - After ToolSearch, check if any
skillsmp_*ormcp__skillsmp__*tool is now available - If available → proceed to Step 1
- If still not available → run:
claude mcp add --scope user skillsmp -- npx -y skillsmp-mcp-server - Inform the user: "SkillsMP MCP server has been registered. It will be available after restarting the session. Continuing search with the remaining 7 sources for now."
- Proceed to Step 1 (SkillsMP sources will be skipped this session, but available in future sessions)
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/installation-guide.md 11 KB
- references/interaction-patterns.md 14 KB
- references/local-index.md 3.4 KB
- references/platform-adapters.md 4.0 KB
- references/quality-signals.md 5.2 KB
- references/search-sources.md 10 KB
- scripts/fetch-skill-bundle.sh 4.0 KB runs code
- scripts/fetch-skillhub.sh 981 B runs code
- scripts/fetch-skills-directory.sh 1.4 KB runs code
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.
- 7d ago First seen · 184 lines · 92 tokens per session scan A c3b1a1cb3451
skill-fetch is a skill published in the GitHub repository girofu/skill-fetch (30 stars, last pushed 3mo ago), licensed MIT. It adds 92 tokens to every session and 3,378 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
github-pr-review
Handles PR review comments and feedback resolution. Use when user wants to resolve PR comments, handle review feedback, fix review comments, address PR review, check review status, respond to reviewer, verify PR readiness, review PR comments, analyze review feedback, evaluate PR comments, assess review suggestions, or…
privacy-guard
Prevents private infrastructure details (node hostnames, internal project names, local usernames and personal emails, absolute home paths, private and VPN IP ranges) from leaking into public repositories through commits, PRs, docs or release artifacts. Use when working in a public or soon-to-be-public repo, before…
github-pr-merge
Merges GitHub Pull Requests after validating pre-merge checklist. Use when user wants to merge PR, close PR, finalize PR, complete merge, approve and merge, or execute merge. Runs pre-merge validation (tests, lint, CI, comments), confirms with user, merges with proper format, handles post-merge cleanup.
github-pr-creation
Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates task completion, generates Conventional Commits title and description, suggests labels. NOTE - for merging existing…
git-commit
Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md.
orchestrating-development
MUST USE when the user asks to orchestrate the full development pipeline from an approved spec: plan writing, N plan-review rounds, batched implementation, and N code-review rounds run autonomously, stopping only on major errors, ending before merge/PR. Triggers on: "orchestrate the development", "orchestrate…