gitextract_4pfp0y5z/ ├── .cspell.json ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── documentation.md │ │ ├── feature_request.md │ │ └── question.md │ ├── SECURITY_REPORTING.md │ ├── TESTING.md │ ├── markdown-link-check-config.json │ ├── pull_request_template.md │ └── workflows/ │ ├── ci.yml │ ├── docs-check.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── 01-slash-commands/ │ ├── README.md │ ├── commit.md │ ├── doc-refactor.md │ ├── generate-api-docs.md │ ├── optimize.md │ ├── pr.md │ ├── push-all.md │ ├── setup-ci-cd.md │ └── unit-test-expand.md ├── 02-memory/ │ ├── README.md │ ├── directory-api-CLAUDE.md │ ├── personal-CLAUDE.md │ └── project-CLAUDE.md ├── 03-skills/ │ ├── .gitignore │ ├── README.md │ ├── blog-draft/ │ │ ├── SKILL.md │ │ └── templates/ │ │ ├── draft-template.md │ │ └── outline-template.md │ ├── brand-voice/ │ │ ├── SKILL.md │ │ ├── templates/ │ │ │ ├── email-template.txt │ │ │ └── social-post-template.txt │ │ └── tone-examples.md │ ├── claude-md/ │ │ └── SKILL.md │ ├── code-review/ │ │ ├── SKILL.md │ │ ├── scripts/ │ │ │ ├── analyze-metrics.py │ │ │ └── compare-complexity.py │ │ └── templates/ │ │ ├── finding-template.md │ │ └── review-checklist.md │ ├── doc-generator/ │ │ ├── SKILL.md │ │ └── generate-docs.py │ └── refactor/ │ ├── SKILL.md │ ├── references/ │ │ ├── code-smells.md │ │ └── refactoring-catalog.md │ ├── scripts/ │ │ ├── analyze-complexity.py │ │ └── detect-smells.py │ └── templates/ │ └── refactoring-plan.md ├── 04-subagents/ │ ├── README.md │ ├── clean-code-reviewer.md │ ├── code-reviewer.md │ ├── data-scientist.md │ ├── debugger.md │ ├── documentation-writer.md │ ├── implementation-agent.md │ ├── secure-reviewer.md │ └── test-engineer.md ├── 05-mcp/ │ ├── README.md │ ├── database-mcp.json │ ├── filesystem-mcp.json │ ├── github-mcp.json │ └── multi-mcp.json ├── 06-hooks/ │ ├── README.md │ ├── auto-adapt-mode.py │ ├── context-tracker-tiktoken.py │ ├── context-tracker.py │ ├── format-code.sh │ ├── log-bash.sh │ ├── notify-team.sh │ ├── pre-commit.sh │ ├── security-scan.sh │ └── validate-prompt.sh ├── 07-plugins/ │ ├── README.md │ ├── devops-automation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ ├── alert-analyzer.md │ │ │ ├── deployment-specialist.md │ │ │ └── incident-commander.md │ │ ├── commands/ │ │ │ ├── deploy.md │ │ │ ├── incident.md │ │ │ ├── rollback.md │ │ │ └── status.md │ │ ├── hooks/ │ │ │ ├── post-deploy.js │ │ │ └── pre-deploy.js │ │ ├── mcp/ │ │ │ └── kubernetes-config.json │ │ └── scripts/ │ │ ├── deploy.sh │ │ ├── health-check.sh │ │ └── rollback.sh │ ├── documentation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ ├── api-documenter.md │ │ │ ├── code-commentator.md │ │ │ └── example-generator.md │ │ ├── commands/ │ │ │ ├── generate-api-docs.md │ │ │ ├── generate-readme.md │ │ │ ├── sync-docs.md │ │ │ └── validate-docs.md │ │ ├── mcp/ │ │ │ └── github-docs-config.json │ │ └── templates/ │ │ ├── adr-template.md │ │ ├── api-endpoint.md │ │ └── function-docs.md │ └── pr-review/ │ ├── .claude-plugin/ │ │ └── plugin.json │ ├── README.md │ ├── agents/ │ │ ├── performance-analyzer.md │ │ ├── security-reviewer.md │ │ └── test-checker.md │ ├── commands/ │ │ ├── check-security.md │ │ ├── check-tests.md │ │ └── review-pr.md │ ├── hooks/ │ │ └── pre-review.js │ └── mcp/ │ └── github-config.json ├── 08-checkpoints/ │ ├── README.md │ └── checkpoint-examples.md ├── 09-advanced-features/ │ ├── README.md │ ├── config-examples.json │ └── planning-mode-examples.md ├── 10-cli/ │ └── README.md ├── CATALOG.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INDEX.md ├── LEARNING-ROADMAP.md ├── LICENSE ├── QUICK_REFERENCE.md ├── README.backup.md ├── README.md ├── RELEASE_NOTES.md ├── SECURITY.md ├── STYLE_GUIDE.md ├── claude_concepts_guide.md ├── clean-code-rules.md ├── coverage.xml ├── prompts/ │ └── remotion-video.md ├── resources/ │ ├── DESIGN-SYSTEM.md │ ├── INDEX.txt │ ├── MANIFEST.txt │ ├── QUICK-START.md │ └── README.md ├── resources.md └── scripts/ ├── README.md ├── build_epub.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt └── tests/ ├── __init__.py ├── conftest.py └── test_build_epub.py