Skill Builder (Skill Seekers)
Auto-detects any knowledge source — docs site, GitHub repo, PDF, video, codebase — and turns it into a packaged AI skill.
What it does
It inspects your input to decide whether it's a documentation URL, an owner/repo GitHub reference, a PDF, a YouTube video, or a local codebase, then routes it to the right scraper. From there it follows a 7-step pipeline: generate config → estimate scope → scrape → AI enhance → package → export to a vector DB.
- Drives ~40 Skill Seekers MCP tools (
scrape_docs,scrape_github,scrape_pdf,scrape_video,package_skill, ...) - Exports to Weaviate, Chroma, FAISS, and Qdrant
- Ships a CLI fallback (
skill-seekers create) for when the MCP server isn't connected
Who it's for
- Anyone turning internal or open-source documentation into Claude-ready skills
- Teams who need to re-sync skills when upstream docs change
- Developers loading documentation into a vector store for RAG
Example uses
- "Build a skill from https://docs.example.com" → estimate page count, run
scrape_docs, thenpackage_skill - "Turn vercel/next.js into a skill" →
scrape_githubplusextract_test_examplesfor real usage snippets - "Load this PDF manual into Chroma" →
scrape_pdffollowed byexport_to_chroma
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/yusufkaraaslan/Skill_Seekers/HEAD/distribution/claude-plugin/skills/skill-builder/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
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 and clone the repo:
git clone https://github.com/yusufkaraaslan/Skill_Seekers.git - Copy the skill folder into place:
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]" - Register the MCP server:
claude mcp add skill-seekers -- python -m skill_seekers.mcp.server_fastmcp(skip if installed as the bundled plugin) - Restart Claude Code and confirm
scrape_docsandpackage_skillappear in the tool list. - If they don't, you can still run the same pipeline via CLI:
skill-seekers create <source>.