Skill Builder
Convert documentation, repos, PDFs, and videos into AI-ready skills automatically.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/skill-builder-yusufkaraaslan/— the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
Automatically detect source types and build AI skills using Skill Seekers. Use when the user wants to create skills from documentation, repos, PDFs, videos, or other knowledge sources.
What this skill does
Skill Builder
You have access to the Skill Seekers MCP server which provides 40 tools for converting knowledge sources into AI-ready skills.
When to Use This Skill
Use this skill when the user:
- Wants to create an AI skill from a documentation site, GitHub repo, PDF, video, or other source
- Needs to convert documentation into a format suitable for LLM consumption
- Wants to update or sync existing skills with their source documentation
- Needs to export skills to vector databases (Weaviate, Chroma, FAISS, Qdrant)
- Asks about scraping, converting, or packaging documentation for AI
Source Type Detection
Automatically detect the source type from user input:
| Input Pattern | Source Type | Tool to Use |
|---|---|---|
https://... (not GitHub/YouTube) | Documentation | scrape_docs |
owner/repo or github.com/... | GitHub | scrape_github |
*.pdf | scrape_pdf | |
| YouTube/Vimeo URL or video file | Video | scrape_video |
| Local directory path | Codebase | scrape_codebase |
*.ipynb, *.html, *.yaml (OpenAPI), *.adoc, *.pptx, *.rss, *.1-.8 | Various | scrape_generic |
| JSON config file | Unified | Use config with scrape_docs |
Recommended Workflow
- Detect source type from the user's input
- Generate or fetch config using
generate_configorfetch_configif needed - Estimate scope with
estimate_pagesfor documentation sites - Scrape the source using the appropriate scraping tool
- Enhance with
enhance_skillif the user wants AI-powered improvements - Package with
package_skillfor the target platform - Export to vector DB if requested using
export_to_*tools
Available MCP Tools
Config Management
generate_config— Generate a scraping config from a URLlist_configs— List available preset configsvalidate_config— Validate a config file
Scraping (use based on source type)
scrape_docs— Documentation sitesscrape_github— GitHub repositoriesscrape_pdf— PDF filesscrape_video— Video transcriptsscrape_codebase— Local code analysisscrape_generic— Jupyter, HTML, OpenAPI, AsciiDoc, PPTX, RSS, manpage, Confluence, Notion, chat
Post-processing
enhance_skill— AI-powered skill enhancementpackage_skill— Package for target platformupload_skill— Upload to platform APIinstall_skill— End-to-end install workflow
Advanced
detect_patterns— Design pattern detection in codeextract_test_examples— Extract usage examples from testsbuild_how_to_guides— Generate how-to guides from testssplit_config— Split large configs into focused skillsexport_to_weaviate,export_to_chroma,export_to_faiss,export_to_qdrant— Vector DB export
Related skills
Word Document Editor
anthropics
Create, edit, and format Word documents with tables, images, and tracked changes.
Ask Questions If Underspecified
trailofbits
Ask clarifying questions before starting work on ambiguous requests.
CLAUDE.md Optimizer
daymade
Optimize your CLAUDE.md file for clarity, efficiency, and maintainability.
Claude Skills Troubleshooter
daymade
Diagnose and fix plugin installation, enablement, and activation problems.