Skill_Seekers skill-builder
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.
install
source · Clone the upstream repo
git clone https://github.com/yusufkaraaslan/Skill_Seekers
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/yusufkaraaslan/Skill_Seekers "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/skill-seekers" ~/.claude/skills/yusufkaraaslan-skill-seekers-skill-builder-b30c8d && rm -rf "$T"
manifest:
skills/skill-seekers/SKILL.mdsource content
Skill Builder
You have access to the Skill Seekers MCP server which provides 35 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 |
|---|---|---|
(not GitHub/YouTube) | Documentation | |
or | GitHub | |
| | |
| YouTube/Vimeo URL or video file | Video | |
| Local directory path | Codebase | |
, , (OpenAPI), , , , - | Various | |
| JSON config file | Unified | Use config with |
Recommended Workflow
- Detect source type from the user's input
- Generate or fetch config using
orgenerate_config
if neededfetch_config - Estimate scope with
for documentation sitesestimate_pages - Scrape the source using the appropriate scraping tool
- Enhance with
if the user wants AI-powered improvementsenhance_skill - Package with
for the target platformpackage_skill - Export to vector DB if requested using
toolsexport_to_*
Available MCP Tools
Config Management
— Generate a scraping config from a URLgenerate_config
— List available preset configslist_configs
— Validate a config filevalidate_config
Scraping (use based on source type)
— Documentation sitesscrape_docs
— GitHub repositoriesscrape_github
— PDF filesscrape_pdf
— Video transcriptsscrape_video
— Local code analysisscrape_codebase
— Jupyter, HTML, OpenAPI, AsciiDoc, PPTX, RSS, manpage, Confluence, Notion, chatscrape_generic
Post-processing
— AI-powered skill enhancementenhance_skill
— Package for target platformpackage_skill
— Upload to platform APIupload_skill
— End-to-end install workflowinstall_skill
Advanced
— Design pattern detection in codedetect_patterns
— Extract usage examples from testsextract_test_examples
— Generate how-to guides from testsbuild_how_to_guides
— Split large configs into focused skillssplit_config
,export_to_weaviate
,export_to_chroma
,export_to_faiss
— Vector DB exportexport_to_qdrant