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 agentmods add instructions/thesethrose/copilot-skills/docs-to-skillgit clone --depth 1 https://github.com/TheSethRose/Copilot-SkillsWrote 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/instructions/thesethrose/copilot-skills/docs-to-skill)<a href="https://agentmods.dev/instructions/thesethrose/copilot-skills/docs-to-skill"><img src="https://agentmods.dev/badge/instructions/thesethrose/copilot-skills/docs-to-skill.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.04131 | $0.04131 |
| Opus 5 | $0.02065 | $0.02065 |
| Sonnet 5 | $0.00826 | $0.00826 |
| Haiku 4.5 | $0.00413 | $0.00413 |
Grade C, and why
Copilot-Skills docs-to-skill.instructions.md scanned grade C with 2 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 6d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- Clean old data periodically: `rm -rf output/*_data/` Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s https://docs.example.com/robots.txt | grep -i "disallow" How it starts
The opening of the file, as written. The whole thing — 596 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Docs to Skill - Instructions
When working with documentation scraping, skill generation, or queries containing "docs to skill" or "documentation converter", this context activates.
Core Purpose
Teach AI agents how to discover and use documentation scraping tools to transform ANY documentation website into production-ready Claude skills.
Key Distinction: This skill GENERATES Claude skills from external documentation. For project documentation, use /document-project.
Auto-Loaded Behaviors
When user mentions "docs to skill" or "scrape docs"
Immediate Actions:
- Suggest
/docs-to-skillskill - Discover available documentation scraping tools
- Validate tool capabilities
- Guide workflow selection
Discovery Pattern:
# Find documentation scraping tools
find . -name "*doc*scrap*" -o -name "*skill*seek*" -type d
# Validate Python scraping tools
find . -name "doc_scraper.py" -type f
# Check for configuration directories
find . -name "configs" -type d -path "*/examples/*" -o -path "*/tools/*"
When user has documentation URL
Immediate Actions:
- Discover available tool
- Check for matching preset
- Estimate documentation size
- Recommend appropriate strategy
Decision Tree:
Has URL → Find tool → Check presets → Estimate → Choose strategy
↓
<500pg 500-10K >10K
↓ ↓ ↓
Standard +Checkpoint Split
When analyzing documentation sites
Validate Before Scraping:
- Check
robots.txtcompliance - Identify documentation structure
- Estimate total pages
- Recommend selectors and patterns
- Suggest appropriate rate limiting (0.5s minimum)
Tool Discovery Protocol
Step 1: Find Available Tools
# Search for documentation scraping directories
SCRAPER_DIRS=$(find . -maxdepth 3 -name "*doc*scrap*" -o -name "*skill*seek*" -type d)
# Search for scraping scripts
SCRAPER_SCRIPTS=$(find . -name "doc_scraper.py" -o -name "*scrape*.py" -type f)
# Common locations to check:
# - examples/Skill_Seekers/
# - examples/*/cli/
# - tools/doc_scraper/
# - scripts/scraping/
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.
- 6d ago First seen · 596 lines · 4,131 tokens per session scan C 8f8981d08372
Copilot-Skills docs-to-skill.instructions.md is an instructions file published in the GitHub repository TheSethRose/Copilot-Skills (3 stars, last pushed 9mo ago), licensed MIT. It adds 4,131 tokens to every session, about $0.0207 per session on Opus 5. A static security scan graded it C with 2 findings (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.
Other instructions, from other repositories
turbo CLAUDE.md
Claude Code instructions for tobihagemann/turbo, covering turbo, project structure and key files.
platform-skills copilot-instructions.md
Copilot instructions for nitinjain999/platform-skills, covering platform engineering instructions for github copilot, version: 1.40.0, source: https://github.com/nitinjain999/platform-skills, response contract and core principles.
claude-code-toolkit CLAUDE.md
Claude Code instructions for robertguss/claude-code-toolkit, covering claude.md, project overview, build commands, package a single skill for claude.ai upload and package all skills.
agent-teacher CLAUDE.md
Claude Code instructions for JackyYang258/agent-teacher, covering agentteacher, before you start, common commands and project-specific hard rules.
github-copilot-superpowers subagents.instructions.md
Instructions for kasuken/github-copilot-superpowers, covering subagent instructions (ssot), terminology, agent role: orchestrator only, ⚠️ absolute rules (non-negotiable) and mcp delegation rules.
multai CLAUDE.md
Claude Code instructions for alo-exp/multai, covering multai — claude code instructions, 0. session startup (automatic), project overview, 1. automated enforcement and 2. active workflow.