Skill Builder (Skill Seekers)
Auto-detects the source type — docs site, GitHub repo, PDF, video, codebase — and turns it into a packaged AI skill.
AutomationIntermediate★ 14,733⑂ 1,500AI score 8/10Last updated: Aug 9, 2026
What it does
This is an orchestration skill for the Skill Seekers MCP server and its ~40 tools. It infers the source type straight from your input:
https://...→ documentation scraping (scrape_docs)owner/repoorgithub.com/...→ repository analysis (scrape_github)*.pdf→ PDF extraction (scrape_pdf)- YouTube/Vimeo links → transcript conversion (
scrape_video) - Local directory → codebase analysis (
scrape_codebase) - Jupyter, OpenAPI, AsciiDoc, PPTX, RSS, manpages →
scrape_generic
It then follows a standard pipeline: generate config → estimate scope → scrape → optional AI enhancement → package for the target platform → export to a vector DB (Weaviate, Chroma, FAISS, Qdrant). When the MCP server isn't connected, it falls back to the skill-seekers create <source> CLI instead of stopping.
Who it's for
- Teams turning internal or open-source docs into LLM-ready knowledge
- Skill authors and DevRel folks who ship many skills
- Data/AI engineers loading knowledge bases into vector stores for RAG
- Anyone who needs to resync existing skills when upstream docs change
Examples
- "Build a skill from https://docs.stripe.com" → config generation, page estimation, scraping, and Claude packaging in one pass.
- "Analyze vercel/next.js and extract how-to guides" →
scrape_github+extract_test_examples+build_how_to_guides. - "Turn this 40-minute YouTube tutorial into a skill and load it into Chroma" → transcript scraping, skill build, then
export_to_chroma.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the distribution/claude-plugin/skills/skill-builder folder from the GitHub repo yusufkaraaslan/Skill_Seekers into my ~/.claude/skills/skill-builder/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/yusufkaraaslan/Skill_Seekers.git && mkdir -p ~/.claude/skills && cp -r Skill_Seekers/distribution/claude-plugin/skills/skill-builder ~/.claude/skills/ && pip install "skill-seekers[mcp]"⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/yusufkaraaslan/Skill_Seekers.git - Copy the skill folder:
mkdir -p ~/.claude/skills && cp -r Skill_Seekers/distribution/claude-plugin/skills/skill-builder ~/.claude/skills/ - Install the Python package:
pip install "skill-seekers[mcp]"(Python 3.10+ recommended). - Register the MCP server once:
claude mcp add skill-seekers -- python -m skill_seekers.mcp.server_fastmcp - Restart Claude Code and confirm tools like
scrape_docsandpackage_skillappear in your tool list. - Try it: "Build a skill from this docs site." If MCP isn't available, the same pipeline runs via
skill-seekers create <source>.
View source on GitHub ↗License: MIT