Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Skill Seekers Documentation

Complete documentation for Skill Seekers v3.7.0


Welcome!

This is the official documentation for Skill Seekers - the universal tool for converting 18 source types (documentation sites, GitHub repos, PDFs, videos, Word docs, EPUB books, Jupyter notebooks, local HTML, OpenAPI specs, AsciiDoc, PowerPoint, RSS/Atom feeds, man pages, Confluence, Notion, Slack/Discord, and local codebases) into AI-ready skills for 21+ platforms.


Where Should I Start?

πŸš€ I'm New Here

Start with our Getting Started guides:

  1. Installation - Install Skill Seekers
  2. Quick Start - Create your first skill in 3 commands
  3. Your First Skill - Complete walkthrough
  4. Next Steps - Where to go from here
  5. Scan a Project - Bootstrap configs from a codebase

πŸ“– I Want to Learn

Explore our User Guides:

πŸ“š I Need Reference

Look up specific information:

πŸš€ I'm Ready for Advanced Topics

Power user features:


Quick Reference

The 3 Commands

# 1. Install
pip install skill-seekers

# 2. Create skill
skill-seekers create https://docs.django.com/

# 3. Package for Claude
skill-seekers package output/django --target claude

Common Commands

# Create from any source (auto-detects type)
skill-seekers create https://docs.django.com/
skill-seekers create facebook/react
skill-seekers create manual.pdf
skill-seekers create notebook.ipynb

# Scan a project for tech stack β€” emits one config per framework
skill-seekers scan ./my-react-app --out ./configs/scanned/

# Enhance skill
skill-seekers enhance output/my-skill/

# Package for platform
skill-seekers package output/my-skill/ --target claude

# Upload
skill-seekers upload output/my-skill-claude.zip

# Install complete workflow
skill-seekers install --config react --target claude

# Doctor / diagnostics
skill-seekers doctor

Documentation Structure

docs/
β”œβ”€β”€ README.md                 # This file - start here
β”œβ”€β”€ ARCHITECTURE.md          # How docs are organized
β”œβ”€β”€ UML_ARCHITECTURE.md      # Software architecture (UML diagrams)
β”œβ”€β”€ UNIFICATION_PLAN.md      # Grand Unification refactor plan + phase results
β”œβ”€β”€ BUG_AUDIT.md             # Full-codebase bug audit (historical record)
β”‚
β”œβ”€β”€ getting-started/         # For new users
β”‚   β”œβ”€β”€ 01-installation.md
β”‚   β”œβ”€β”€ 02-quick-start.md
β”‚   β”œβ”€β”€ 03-your-first-skill.md
β”‚   β”œβ”€β”€ 04-next-steps.md
β”‚   └── 05-scan-a-project.md
β”‚
β”œβ”€β”€ user-guide/              # Common tasks
β”‚   β”œβ”€β”€ 01-core-concepts.md
β”‚   β”œβ”€β”€ 02-scraping.md
β”‚   β”œβ”€β”€ 03-enhancement.md
β”‚   β”œβ”€β”€ 04-packaging.md
β”‚   β”œβ”€β”€ 05-workflows.md
β”‚   └── 06-troubleshooting.md
β”‚
β”œβ”€β”€ guides/                  # How-to guides
β”‚   β”œβ”€β”€ MCP_SETUP.md
β”‚   β”œβ”€β”€ MIGRATION_GUIDE.md
β”‚   β”œβ”€β”€ TESTING_GUIDE.md
β”‚   └── UPLOAD_GUIDE.md
β”‚
β”œβ”€β”€ integrations/            # Platform integrations
β”‚   β”œβ”€β”€ LANGCHAIN.md
β”‚   β”œβ”€β”€ LLAMA_INDEX.md
β”‚   β”œβ”€β”€ CURSOR.md
β”‚   └── ...
β”‚
β”œβ”€β”€ features/                # Feature deep-dives
β”‚   β”œβ”€β”€ BOOTSTRAP_SKILL.md
β”‚   β”œβ”€β”€ UNIFIED_SCRAPING.md
β”‚   └── ENHANCEMENT.md
β”‚
β”œβ”€β”€ reference/               # Technical reference
β”‚   β”œβ”€β”€ CLI_REFERENCE.md     # 19 commands
β”‚   β”œβ”€β”€ MCP_REFERENCE.md     # 40 MCP tools
β”‚   β”œβ”€β”€ CONFIG_FORMAT.md     # JSON spec
β”‚   └── ENVIRONMENT_VARIABLES.md
β”‚
β”œβ”€β”€ advanced/                # Power user topics
β”‚   β”œβ”€β”€ mcp-server.md
β”‚   β”œβ”€β”€ custom-workflows.md
β”‚   └── multi-source.md
β”‚
β”œβ”€β”€ archive/                 # Legacy docs
β”œβ”€β”€ blog/                    # Blog posts
β”œβ”€β”€ case-studies/            # Case studies
β”œβ”€β”€ plans/                   # Feature plans
β”œβ”€β”€ roadmap/                 # Roadmap
β”œβ”€β”€ strategy/                # Strategy docs
└── zh-CN/                   # Chinese translations

By Use Case

I Want to Build AI Skills

For Claude, Gemini, ChatGPT:

  1. Quick Start
  2. Enhancement Guide
  3. Workflows Guide

I Want to Build RAG Pipelines

For LangChain, LlamaIndex, vector DBs:

  1. Core Concepts
  2. Packaging Guide
  3. MCP Reference

I Want AI Coding Assistance

For Cursor, Windsurf, Cline, Roo, Aider, Bolt, Kilo, Continue, Kimi Code:

  1. Your First Skill
  2. Local Codebase Analysis
  3. skill-seekers install-agent --agent cursor

Version Information

  • Current Version: 3.7.0
  • Last Updated: 2026-06-11
  • Source Types: 18
  • Python Required: 3.10+

Contributing to Documentation

Found an issue? Want to improve docs?

  1. Edit files in the docs/ directory
  2. Follow the existing structure
  3. Submit a PR

See Contributing Guide for details.


External Links


License

MIT License - see LICENSE file.


Happy skill building! πŸš€