Implements comprehensive integration of ALL C3.x codebase analysis features
into unified skills, transforming basic GitHub scraping into comprehensive
codebase intelligence with architectural insights.
**What C3.5 Does:**
- Generates comprehensive ARCHITECTURE.md with 8 sections
- Integrates ALL C3.x outputs (patterns, examples, guides, configs, architecture)
- Defaults to ON for GitHub sources with local_repo_path
- Adds --skip-codebase-analysis CLI flag
**ARCHITECTURE.md Sections:**
1. Overview - Project description
2. Architectural Patterns (C3.7) - MVC, MVVM, Clean Architecture, etc.
3. Technology Stack - Frameworks, libraries, languages
4. Design Patterns (C3.1) - Factory, Singleton, Observer, etc.
5. Configuration Overview (C3.4) - Config files with security warnings
6. Common Workflows (C3.3) - How-to guides summary
7. Usage Examples (C3.2) - Test examples statistics
8. Entry Points & Directory Structure - File organization
**Directory Structure:**
output/{name}/references/codebase_analysis/
├── ARCHITECTURE.md (main deliverable)
├── patterns/ (C3.1 design patterns)
├── examples/ (C3.2 test examples)
├── guides/ (C3.3 how-to tutorials)
├── configuration/ (C3.4 config patterns)
└── architecture_details/ (C3.7 architectural patterns)
**Key Features:**
- Default ON: enable_codebase_analysis=true when local_repo_path exists
- CLI flag: --skip-codebase-analysis to disable
- Enhanced SKILL.md with Architecture & Code Analysis summary
- Graceful degradation on C3.x failures
- New config properties: enable_codebase_analysis, ai_mode
**Changes:**
- unified_scraper.py: Added _run_c3_analysis(), modified _scrape_github(), CLI flag
- unified_skill_builder.py: Added 7 methods for C3.x generation + SKILL.md enhancement
- config_validator.py: Added validation for C3.x properties
- Updated 5 configs: react, django, fastapi, godot, svelte-cli
- Added 9 integration tests in test_c3_integration.py
- Updated CHANGELOG.md with complete C3.5 documentation
**Related:**
- Closes #75
- Creates #238 (type: "local" support - separate task)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
174 lines
4.6 KiB
TOML
174 lines
4.6 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "skill-seekers"
|
|
version = "2.5.2"
|
|
description = "Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Yusuf Karaaslan"}
|
|
]
|
|
keywords = [
|
|
"claude",
|
|
"ai",
|
|
"documentation",
|
|
"scraping",
|
|
"skills",
|
|
"llm",
|
|
"mcp",
|
|
"automation"
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Documentation",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Text Processing :: Markup :: Markdown",
|
|
]
|
|
|
|
# Core dependencies
|
|
dependencies = [
|
|
"requests>=2.32.5",
|
|
"beautifulsoup4>=4.14.2",
|
|
"PyGithub>=2.5.0",
|
|
"GitPython>=3.1.40",
|
|
"mcp>=1.25,<2",
|
|
"httpx>=0.28.1",
|
|
"httpx-sse>=0.4.3",
|
|
"PyMuPDF>=1.24.14",
|
|
"Pillow>=11.0.0",
|
|
"pytesseract>=0.3.13",
|
|
"pydantic>=2.12.3",
|
|
"pydantic-settings>=2.11.0",
|
|
"python-dotenv>=1.1.1",
|
|
"jsonschema>=4.25.1",
|
|
"click>=8.3.0",
|
|
"Pygments>=2.19.2",
|
|
"pathspec>=0.12.1",
|
|
"networkx>=3.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
# MCP server dependencies (included by default, but optional)
|
|
mcp = [
|
|
"mcp>=1.25,<2",
|
|
"httpx>=0.28.1",
|
|
"httpx-sse>=0.4.3",
|
|
"uvicorn>=0.38.0",
|
|
"starlette>=0.48.0",
|
|
"sse-starlette>=3.0.2",
|
|
]
|
|
|
|
# LLM platform-specific dependencies
|
|
# Google Gemini support
|
|
gemini = [
|
|
"google-generativeai>=0.8.0",
|
|
]
|
|
|
|
# OpenAI ChatGPT support
|
|
openai = [
|
|
"openai>=1.0.0",
|
|
]
|
|
|
|
# All LLM platforms combined
|
|
all-llms = [
|
|
"google-generativeai>=0.8.0",
|
|
"openai>=1.0.0",
|
|
]
|
|
|
|
# All optional dependencies combined (dev dependencies now in [dependency-groups])
|
|
all = [
|
|
"mcp>=1.25,<2",
|
|
"httpx>=0.28.1",
|
|
"httpx-sse>=0.4.3",
|
|
"uvicorn>=0.38.0",
|
|
"starlette>=0.48.0",
|
|
"sse-starlette>=3.0.2",
|
|
"google-generativeai>=0.8.0",
|
|
"openai>=1.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/yusufkaraaslan/Skill_Seekers"
|
|
Repository = "https://github.com/yusufkaraaslan/Skill_Seekers"
|
|
"Bug Tracker" = "https://github.com/yusufkaraaslan/Skill_Seekers/issues"
|
|
Documentation = "https://github.com/yusufkaraaslan/Skill_Seekers#readme"
|
|
|
|
[project.scripts]
|
|
# Main unified CLI
|
|
skill-seekers = "skill_seekers.cli.main:main"
|
|
|
|
# Individual tool entry points
|
|
skill-seekers-scrape = "skill_seekers.cli.doc_scraper:main"
|
|
skill-seekers-github = "skill_seekers.cli.github_scraper:main"
|
|
skill-seekers-pdf = "skill_seekers.cli.pdf_scraper:main"
|
|
skill-seekers-unified = "skill_seekers.cli.unified_scraper:main"
|
|
skill-seekers-enhance = "skill_seekers.cli.enhance_skill_local:main"
|
|
skill-seekers-enhance-status = "skill_seekers.cli.enhance_status:main"
|
|
skill-seekers-package = "skill_seekers.cli.package_skill:main"
|
|
skill-seekers-upload = "skill_seekers.cli.upload_skill:main"
|
|
skill-seekers-estimate = "skill_seekers.cli.estimate_pages:main"
|
|
skill-seekers-install = "skill_seekers.cli.install_skill:main"
|
|
skill-seekers-install-agent = "skill_seekers.cli.install_agent:main"
|
|
skill-seekers-codebase = "skill_seekers.cli.codebase_scraper:main"
|
|
skill-seekers-patterns = "skill_seekers.cli.pattern_recognizer:main"
|
|
skill-seekers-how-to-guides = "skill_seekers.cli.how_to_guide_builder:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["skill_seekers*"]
|
|
namespaces = false
|
|
|
|
[tool.setuptools.package-data]
|
|
skill_seekers = ["py.typed"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
python_classes = ["Test*"]
|
|
python_functions = ["test_*"]
|
|
addopts = "-v --tb=short --strict-markers"
|
|
markers = [
|
|
"asyncio: mark test as an async test",
|
|
"slow: mark test as slow running",
|
|
]
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
|
|
[tool.coverage.run]
|
|
source = ["src/skill_seekers"]
|
|
omit = ["*/tests/*", "*/__pycache__/*", "*/venv/*"]
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = [
|
|
"pragma: no cover",
|
|
"def __repr__",
|
|
"raise AssertionError",
|
|
"raise NotImplementedError",
|
|
"if __name__ == .__main__.:",
|
|
"if TYPE_CHECKING:",
|
|
"@abstractmethod",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.4.2",
|
|
"pytest-asyncio>=0.24.0",
|
|
"pytest-cov>=7.0.0",
|
|
"coverage>=7.11.0",
|
|
]
|