- mkdocs.yml: Material theme with dark/light mode, search, tabs, sitemap - scripts/generate-docs.py: auto-generates docs from all SKILL.md files - docs/index.md: landing page with domain overview and quick install - docs/getting-started.md: installation guide for Claude Code, Codex, OpenClaw - docs/skills/: 170 skill pages + 9 domain index pages - .github/workflows/static.yml: MkDocs build + GitHub Pages deploy - .gitignore: exclude site/ build output Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
674 B
Plaintext
40 lines
674 B
Plaintext
# IDE and OS
|
|
.vscode
|
|
.DS_Store
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Specific archive exclusions (NOT all .zip - skill packages are intentional)
|
|
medium-content-pro.zip
|
|
v1-10-2025-medium-content-pro.zip
|
|
|
|
# Project-specific exclusions
|
|
AGENTS.md
|
|
PROMPTS.md
|
|
medium-content-pro/*
|
|
medium-content-pro 2/*
|
|
documentation/GIST_CONTENT.md
|
|
documentation/implementation/*__pycache__/
|
|
ARTICLE-FEEDBACK-AND-OPTIMIZED-VERSION.md
|
|
CLAUDE-CODE-LOCAL-MAC-PROMPT.md
|
|
CLAUDE-CODE-SEO-FIX-COPYPASTE.md
|
|
GITHUB_ISSUE_RESPONSES.md
|
|
|
|
# Archive folder (historical/backup files)
|
|
archive/
|
|
|
|
# MkDocs build output
|
|
site/
|