Skill_Seekers/
โ
โโโ ๐ Root Documentation
โ โโโ README.md # Main documentation (start here!)
โ โโโ CLAUDE.md # Quick reference for Claude Code
โ โโโ QUICKSTART.md # 3-step quick start guide
โ โโโ ROADMAP.md # Development roadmap
โ โโโ TODO.md # Current sprint tasks
โ โโโ STRUCTURE.md # This file
โ โโโ LICENSE # MIT License
โ โโโ .gitignore # Git ignore rules
โ
โโโ ๐ง CLI Tools (cli/)
โ โโโ doc_scraper.py # Main scraping tool
โ โโโ estimate_pages.py # Page count estimator
โ โโโ enhance_skill.py # AI enhancement (API-based)
โ โโโ enhance_skill_local.py # AI enhancement (LOCAL, no API)
โ โโโ package_skill.py # Skill packaging tool
โ โโโ run_tests.py # Test runner
โ
โโโ ๐ MCP Server (mcp/)
โ โโโ server.py # Main MCP server
โ โโโ requirements.txt # MCP dependencies
โ โโโ README.md # MCP setup guide
โ
โโโ ๐ configs/ # Preset configurations
โ โโโ godot.json
โ โโโ react.json
โ โโโ vue.json
โ โโโ django.json
โ โโโ fastapi.json
โ โโโ kubernetes.json
โ โโโ steam-economy-complete.json
โ
โโโ ๐งช tests/ # Test suite (71 tests, 100% pass rate)
โ โโโ test_config_validation.py
โ โโโ test_integration.py
โ โโโ test_scraper_features.py
โ
โโโ ๐ docs/ # Detailed documentation
โ โโโ CLAUDE.md # Technical architecture
โ โโโ ENHANCEMENT.md # AI enhancement guide
โ โโโ USAGE.md # Complete usage guide
โ โโโ TESTING.md # Testing guide
โ โโโ UPLOAD_GUIDE.md # How to upload skills
โ
โโโ ๐ .github/ # GitHub configuration
โ โโโ SETUP_GUIDE.md # GitHub project setup
โ โโโ ISSUES_TO_CREATE.md # Issue templates
โ โโโ ISSUE_TEMPLATE/ # Issue templates
โ
โโโ ๐ฆ output/ # Generated skills (git-ignored)
โโโ {name}_data/ # Scraped raw data (cached)
โโโ {name}/ # Built skills
โโโ SKILL.md # Main skill file
โโโ references/ # Reference documentation
The repository is organized as a monorepo with two main components:
cli/): Standalone Python scripts for direct command-line usagemcp/): Model Context Protocol server for Claude Code integrationBoth components share the same configuration files and output directory.
Config (configs/*.json)
โ
CLI Tools OR MCP Server
โ
Scraper (cli/doc_scraper.py)
โ
Output (output/{name}_data/)
โ
Builder (cli/doc_scraper.py)
โ
Skill (output/{name}/)
โ
Enhancer (optional)
โ
Packager (cli/package_skill.py)
โ
Skill .zip (output/{name}.zip)