yusufkaraaslan/Skill_Seekers

Pythonskillseekersweb.com

Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills with automatic conflict detection

ai-toolsautomationclaude-aiclaude-skillsdocumentationdocumentation-generatorpythonweb-scrapingmcpmcp-servergithubocr
Star Growth
Stars
14.9k
Forks
1.5k
Weekly Growth
+63
Issues
47
5k10k
Oct 25Jan 26May 26Sep 26
ArtifactsPyPI
README

Skill Seekers

Skill Seekers

English | ็ฎ€ไฝ“ไธญๆ–‡ | ๆ—ฅๆœฌ่ชž | ํ•œ๊ตญ์–ด | Espaรฑol | Franรงais | Deutsch | Portuguรชs | Tรผrkรงe | ุงู„ุนุฑุจูŠุฉ | เคนเคฟเคจเฅเคฆเฅ€ | ะ ัƒััะบะธะน

Version License: MIT Python 3.10+ MCP Integration Tested PyPI version PyPI - Downloads Website GitHub Repo stars PyPI Downloads

yusufkaraaslan%2FSkill_Seekers | Trendshift

๐Ÿง  The data layer for AI systems. Skill Seekers turns documentation sites, GitHub repos, PDFs, videos, notebooks, wikis, and more โ€” 18 source types โ€” into structured knowledge assets, ready to power AI Skills (Claude, Gemini, OpenAI), RAG pipelines (LangChain, LlamaIndex, Pinecone), and AI coding assistants (Cursor, Windsurf, Cline). Prepare once, export to 22 targets.

๐Ÿ’› Sponsors

Launch Partner

Atlas Cloud
Launch Partner

Atlas Cloud โ€” A full-modal, OpenAI-compatible AI inference platform. Skill Seekers supports it as a packaging/enhancement target via --target atlas with ATLAS_API_KEY.

Silver Sponsors

RapidProxy
Sponsor โ€” Silver

Become a sponsor ยท GitHub Sponsors


๐Ÿš€ Quick Start

# 1. Install
pip install skill-seekers

# 2. Create a skill from any source
skill-seekers create https://docs.djangoproject.com/

# 3. Package it for your AI platform
skill-seekers package output/django --target claude

You now have output/django-claude.zip, ready to use.

# Pick a different AI agent for enhancement (default: claude)
skill-seekers create https://docs.djangoproject.com/ --agent kimi
skill-seekers create https://docs.djangoproject.com/ --agent-cmd "my-custom-agent run"

๐Ÿ›ฐ๏ธ AI-driven project scan

Point scan at a project and an AI agent reads its manifests, README, Dockerfile/CI and sampled source imports โ€” then emits one config per detected framework, plus a <project>-codebase.json for your own code:

skill-seekers scan ./my-react-app --out ./configs/scanned/
# โ†’ react.json, vite.json, tailwind.json, jest.json, my-react-app-codebase.json

skill-seekers create ./configs/scanned/react.json

If a detection has no existing preset, the AI generates a fresh config; on exit you can optionally publish it back to the community registry.

All 18 source types

skill-seekers create facebook/react            # GitHub repository
skill-seekers create ./my-project              # Local codebase
skill-seekers create manual.pdf                # PDF
skill-seekers create report.docx               # Word
skill-seekers create book.epub                 # EPUB
skill-seekers create notebook.ipynb            # Jupyter
skill-seekers create openapi.yaml              # OpenAPI/Swagger
skill-seekers create presentation.pptx         # PowerPoint
skill-seekers create guide.adoc                # AsciiDoc
skill-seekers create page.html                 # Local HTML (or a whole dir)
skill-seekers create feed.rss                  # RSS/Atom
skill-seekers create curl.1                    # Man page

# Video (YouTube, Vimeo, or local โ€” needs skill-seekers[video])
skill-seekers create --video-url https://www.youtube.com/watch?v=... --name mytutorial
skill-seekers create --setup                   # auto-install GPU-aware visual deps

skill-seekers create --space-key TEAM --name wiki               # Confluence
skill-seekers create --database-id ... --name docs              # Notion
skill-seekers create --chat-export-path ./slack-export --name team-chat  # Slack/Discord

See the Scraping Guide for every source type and its options.


๐Ÿ“ฆ Installation

pip install skill-seekers              # Core: scraping, GitHub, PDF, packaging
pip install skill-seekers[all-llms]    # + every LLM platform
pip install skill-seekers[mcp]         # + MCP server
pip install skill-seekers[all]         # Everything

Not sure what you need? Run the wizard: skill-seekers-setup

All installation extras
Install Adds
skill-seekers[gemini] Google Gemini support
skill-seekers[openai] OpenAI ChatGPT support
skill-seekers[all-llms] All LLM platforms
skill-seekers[mcp] MCP server for Claude Code, Cursor, etc.
skill-seekers[video] YouTube/Vimeo transcript & metadata extraction
skill-seekers[video-full] + Whisper transcription & visual frame extraction
skill-seekers[jupyter] Jupyter Notebook support
skill-seekers[pptx] PowerPoint support
skill-seekers[confluence] Confluence wiki support
skill-seekers[notion] Notion pages support
skill-seekers[rss] RSS/Atom feed support
skill-seekers[chat] Slack/Discord chat export support
skill-seekers[asciidoc] AsciiDoc support
skill-seekers[all] Everything

Video visual deps (GPU-aware): after installing skill-seekers[video-full], run skill-seekers create --setup to auto-detect your GPU and install the matching PyTorch variant + easyocr.

Prerequisites: Python 3.10+, Git. New here? โ†’ Bulletproof Quick Start ๐ŸŽฏ


๐Ÿ“š Documentation

I want to... Read this
Get started quickly Quick Start โ€” 3 commands to your first skill
Understand the concepts Core Concepts
Scrape sources Scraping Guide โ€” all 18 source types
Enhance skills with AI Enhancement Guide ยท Enhancement Modes
Export skills Packaging Guide
Build workflows Workflows
Look up a command CLI Reference โ€” all 19 commands
Configure Config Format ยท Environment Variables
Set up MCP MCP Setup ยท MCP Reference
Integrate with RAG / IDEs LangChain ยท RAG Pipelines ยท Cursor ยท Windsurf ยท Cline
Handle huge doc sets Large Documentation โ€” 10Kโ€“40K+ pages
Understand the architecture UML Architecture โ€” 14 diagrams
Fix a problem Troubleshooting

Complete documentation index: docs/README.md


๐ŸŽฏ What you get

Use case Output Powers
AI Skills Comprehensive SKILL.md + reference files Claude Code, Gemini, GPT
RAG pipelines Chunked documents with rich metadata LangChain, LlamaIndex, Haystack
Vector databases Pre-formatted data ready for upsert Pinecone, Chroma, Weaviate, FAISS, Qdrant
AI coding assistants Context files your IDE AI reads automatically Cursor, Windsurf, Cline, Continue.dev

Export targets (22)

skill-seekers package output/react --target claude      # โ†’ Claude Skill (ZIP + YAML)
skill-seekers package output/react --target langchain   # โ†’ LangChain Documents
skill-seekers package output/react --target llama-index # โ†’ LlamaIndex TextNodes
skill-seekers package output/react --target ibm-bob     # โ†’ IBM Bob skill directory

LLM platforms (12): claude ยท gemini ยท openai ยท minimax ยท opencode ยท kimi ยท deepseek ยท qwen ยท openrouter ยท together ยท fireworks ยท markdown RAG & vector (8): langchain ยท llama-index ยท haystack ยท chroma ยท faiss ยท weaviate ยท qdrant ยท pinecone Other (2): atlas ยท ibm-bob

See the Feature Matrix for per-platform support details.

Why it matters

  • โšก 99% faster โ€” days of manual data prep โ†’ 15โ€“45 minutes
  • ๐ŸŽฏ Real skill quality โ€” 500+ line SKILL.md files with examples, patterns, and guides
  • ๐Ÿ“Š RAG-ready chunks โ€” smart chunking preserves code blocks and context
  • ๐Ÿ”„ Multi-source โ€” combine docs + GitHub + PDFs + videos into one knowledge asset
  • ๐ŸŒ One prep, every target โ€” export to 22 targets without re-scraping
  • โœ… Battle-tested โ€” 3,900+ tests, 68 workflow presets, production-ready

โœจ Key capabilities

Documentation scraping โ€” SPA discovery, llms.txt, smart categorization

Three-layer discovery for JavaScript SPA sites (sitemap.xml โ†’ llms.txt โ†’ headless browser rendering), automatic llms.txt detection (10ร— faster when present), smart topic categorization, and a lenient HTML parser fallback so broken markup still scrapes.

โ†’ Scraping Guide ยท llms.txt Support

GitHub & codebase analysis (C3.x) โ€” AST parsing, pattern detection, how-to guides

Three-stream architecture: code analysis (AST, design patterns, tests), documentation (README, docs/, wiki), and community (issues, PRs, metadata). The C3.x pipeline adds 10 GoF pattern detectors across 9 languages, usage examples extracted from tests, AI-written how-to guides, config extraction, and architecture overviews.

skill-seekers create ./my-project --preset quick          # 1โ€“2 min, surface level
skill-seekers create ./my-project --preset standard       # balanced (default)
skill-seekers create ./my-project --preset comprehensive  # deep, exhaustive

โ†’ Pattern Detection ยท How-To Guides ยท Test Example Extraction

AI enhancement โ€” API or local agents, 68 workflow presets

Every AI call runs through one transport, in API mode (Anthropic, Google Gemini, OpenAI, Moonshot/Kimi, MiniMax) or LOCAL mode (Claude Code, Kimi Code, Codex, Copilot, OpenCode, custom agents โ€” no API costs). Control depth with --enhance-level 0-3 and pick an agent with --agent.

โ†’ Enhancement Guide ยท Enhancement Modes ยท Multi-Agent Setup

Unified multi-source scraping โ€” combine many sources into one skill

One config can pull documentation, GitHub, PDFs, videos, and more into a single knowledge asset, with conflict detection and pairwise synthesis across sources.

โ†’ Unified Scraping

Video extraction โ€” transcripts, frames, on-screen code

YouTube, Vimeo, and local files. Three-tier transcript fallback (subtitles โ†’ YouTube transcript API โ†’ local Whisper), plus optional visual extraction that OCRs on-screen code from sampled frames.

โ†’ Video Guide

Quality, sync & scale

Quality scoring with a gate (skill-seekers quality output/react/ --threshold 7), provisional English readability metrics (informational โ€” they never affect the score), doc-change detection with scheduled re-scrapes and notifications, streaming ingestion for very large doc sets, and incremental updates.

โ†’ Large Documentation ยท Code Quality


๐Ÿ”Œ MCP Integration (40 tools)

Skill Seekers ships an MCP server for Claude Code, Cursor, Windsurf, VS Code + Cline, and IntelliJ IDEA.

# stdio mode (Claude Code, VS Code + Cline)
python -m skill_seekers.mcp.server_fastmcp

# HTTP mode (Cursor, Windsurf, IntelliJ)
python -m skill_seekers.mcp.server_fastmcp --transport http --port 8765

Then just ask your assistant: "Package and upload the React skill."

โ†’ MCP Setup ยท MCP Reference ยท HTTP Transport


๐Ÿค– Installing to AI agents

Skills install automatically into 19 AI coding agents:

skill-seekers install-agent output/react/ --agent cursor
skill-seekers install-agent output/react/ --agent all      # every detected agent
skill-seekers install-agent output/react/ --agent cursor --dry-run
Agent Path Scope
Claude Code ~/.claude/skills/ Global
Cursor .cursor/skills/ Project
VS Code / Copilot .github/skills/ Project
Amp ~/.amp/skills/ Global
Goose ~/.config/goose/skills/ Global
OpenCode ~/.opencode/skills/ Global
Letta ~/.letta/skills/ Global
Aide ~/.aide/skills/ Global
Windsurf ~/.windsurf/skills/ Global
Neovate ~/.neovate/skills/ Global
Roo Code .roo/skills/ Project
Cline .cline/skills/ Project
Aider ~/.aider/skills/ Global
Bolt .bolt/skills/ Project
Kilo Code .kilo/skills/ Project
Continue ~/.continue/skills/ Global
Kimi Code ~/.kimi/skills/ Global
IBM Bob .bob/skills/ Project

Uploading to Claude

export ANTHROPIC_API_KEY=sk-ant-...
skill-seekers package output/react/ --upload   # package + upload
skill-seekers upload output/react.zip          # upload an existing zip

No API key? Package it and upload output/react.zip manually at claude.ai/skills.

โ†’ Upload Guide


โš™๏ธ How it works

graph LR
    A[Documentation Website] --> B[Skill Seekers]
    B --> C[Scraper]
    B --> D[AI Enhancement]
    B --> E[Packager]
    C --> F[Organized References]
    D --> F
    F --> E
    E --> G[AI Skill .zip]
    G --> H[Upload to AI Platform]
  1. Scrape โ€” extract every page (checking llms.txt first)
  2. Categorize โ€” organize content into topics (API, guides, tutorials, โ€ฆ)
  3. Enhance โ€” AI writes a comprehensive SKILL.md with examples
  4. Package โ€” bundle into a platform-ready artifact
  5. Upload โ€” ship it to your AI platform (optional)

Architecture

8 core modules + 5 utility modules (~200 classes):

Module Purpose
CLICore Git-style command dispatcher, source auto-detection
Scrapers 18 source-type extractors on a shared build layer
Adaptors 22 output platform formats behind one SkillAdaptor ABC
Analysis C3.x codebase pipeline, 10 GoF pattern detectors
Enhancement AI improvement via a single AgentClient transport
Packaging Package, upload, and install skills
MCP FastMCP server (40 tools, 10 tool modules)
Sync Doc change detection and notification

โ†’ UML Architecture ยท API Reference ยท Skill Architecture


๐Ÿ†• New in v3.9.0

  • HTML parser fallback for broken markup (#96) โ€” severely malformed pages no longer scrape as empty; well-formed pages are byte-identical.
  • Transient-failure retries โ€” the doc scraper (#97) and MCP fetch_config (#92) now retry connection blips and 5xx with backoff; 4xx still fails fast.
  • Whisper transcription fallback (#420) โ€” local videos without subtitles finally get a real transcript.
  • MiniMax image OCR + registry-driven multimodal providers (#423) โ€” providers declare their wire protocol and image capability; China-issued keys work against the right endpoint.
  • Token-lean GitHub issue defaults (#169) โ€” GitHub skills no longer bundle full closed-issue history by default.
  • Env-driven CORS across all three servers (#422, #424) โ€” no more wildcard origins with credentials.

Full history: CHANGELOG.md


๐Ÿ“ˆ Performance

Documentation size Time Output
Small (< 100 pages) 5โ€“10 min ~2 MB
Medium (100โ€“500 pages) 15โ€“30 min ~10 MB
Large (500โ€“2,000 pages) 30โ€“60 min ~40 MB
Huge (10Kโ€“40K+ pages) Use stream See Large Documentation

๐Ÿ› Troubleshooting

skill-seekers doctor          # diagnose installation & environment
skill-seekers sync-config     # detect config drift

Common issues and fixes: Troubleshooting Guide ยท TROUBLESHOOTING.md


๐Ÿค Contributing

Contributions are welcome โ€” see CONTRIBUTING.md.


๐Ÿ“ License

MIT โ€” see LICENSE.

๐Ÿ”’ Security

MseeP.ai Security Assessment Badge


๐ŸŒ Ecosystem

Skill Seekers is a multi-repo project:

Repository Description Links
Skill_Seekers Core CLI & MCP server (this repo) PyPI
skillseekersweb Website & documentation Live
skill-seekers-configs Community config repository
skill-seekers-action GitHub Action for CI/CD
skill-seekers-plugin Claude Code plugin
homebrew-skill-seekers Homebrew tap for macOS

Want to contribute? The website and configs repos are great starting points for new contributors!

Related repositories
farion1231/cc-switch

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

Rustcrates.ioskillMIT Licenseai-toolsclaude-code
ccswitch.io
131.4k9.1k
browser-use/browser-use

๐ŸŒ Make websites accessible for AI agents. Automate tasks online with ease.

PythonPyPIMIT Licensellmai-agents
browser-use.com
112.8k12.4k
zylon-ai/private-gpt

Complete API layer for private AI applications on local models: RAG, skills, tools, MCP, text-to-sql, and more. Works with any OpenAI-compatible inference server.

PythonPyPIApache License 2.0aiai-tools
zylon.ai/private-gpt
57.5k7.6k
medusajs/medusa

The world's most flexible commerce platform for agents and developers

TypeScriptnpmlibraryOthernodejsmedusa
medusajs.com
36.2k5.2k
linshenkx/prompt-optimizer

An AI prompt optimizer for writing better prompts and getting better AI results.

TypeScriptnpmOtherllmprompt
prompt.always200.com
34.2k4k
JCodesMore/ai-website-cloner-template

Clone any website with one command using AI coding agents

JavaScriptnpmskillMIT Licenseaiai-agents
dsc.gg/jcodesmore
34k5k
Gitlawb/openclaude

runs anywhere. uses anything

TypeScriptnpmcliOtheraiai-agent
openclaude.gitlawb.com
32.9k9.1k
jackwener/OpenCLI

Make Any Website into CLI & Use your logged-in browser by AI agent.

JavaScriptnpmcliApache License 2.0ai-agentai-agents
opencli.info
29k2.9k
nocobase/nocobase

NocoBase is an open-source AI + no-code platform for building business systems fast. Instead of generating everything from scratch, AI works on top of production-proven infrastructure and a WYSIWYG no-code interface, so you get both speed and reliability.

TypeScriptnpmOtherno-codelow-code
nocobase.com
24.1k2.9k
wanshuiyin/Auto-claude-code-research-in-sleep

ARIS โš”๏ธ (Auto-Research-In-Sleep) โ€” Lightweight Markdown-only skills for autonomous ML research: cross-model review loops, idea discovery, and experiment automation. No framework, no lock-in โ€” works with Claude Code, Codex, OpenClaw, or any LLM agent.

PythonPyPIMIT Licenseai-researchautonomous-agent
15.8k1.4k
plandex-ai/plandex

Open source AI coding agent. Designed for large projects and real world tasks.

GoGo ModulescliMIT Licenseaiai-developer-tools
plandex.ai
15.6k1.2k
Usagi-org/ai-goofish-monitor

ๅŸบไบŽ Playwright ๅ’ŒAIๅฎž็Žฐ็š„้—ฒ้ฑผๅคšไปปๅŠกๅฎžๆ—ถ/ๅฎšๆ—ถ็›‘ๆŽงไธŽๆ™บ่ƒฝๅˆ†ๆž็ณป็ปŸ๏ผŒ้…ๅค‡ไบ†ๅŠŸ่ƒฝๅฎŒๅ–„็š„ๅŽๅฐ็ฎก็†UIใ€‚ๅธฎๅŠฉ็”จๆˆทไปŽ้—ฒ้ฑผๆตท้‡ๅ•†ๅ“ไธญ๏ผŒๆ‰พๅˆฐๅฟƒไปชไบงๅ“ใ€‚

PythonPyPIMIT Licenseaiplaywright
14.3k2.5k