Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Skill Builder (Skill Seekers)

Auto-detects any knowledge source — docs site, GitHub repo, PDF, video, codebase — and turns it into a packaged AI skill.

UtilitiesIntermediate15,0201,532AI score 9/10Last updated: Sep 20, 2026

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

  1. "Build a skill from https://docs.example.com" → estimate page count, run scrape_docs, then package_skill
  2. "Turn vercel/next.js into a skill" → scrape_github plus extract_test_examples for real usage snippets
  3. "Load this PDF manual into Chroma" → scrape_pdf followed by export_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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal and clone the repo: git clone https://github.com/yusufkaraaslan/Skill_Seekers.git
  2. Copy the skill folder into place: mkdir -p ~/.claude/skills && cp -r Skill_Seekers/distribution/claude-plugin/skills/skill-builder ~/.claude/skills/
  3. Install the Python package: pip install "skill-seekers[mcp]"
  4. Register the MCP server: claude mcp add skill-seekers -- python -m skill_seekers.mcp.server_fastmcp (skip if installed as the bundled plugin)
  5. Restart Claude Code and confirm scrape_docs and package_skill appear in the tool list.
  6. If they don't, you can still run the same pipeline via CLI: skill-seekers create <source>.