Production-ready modular Claude Code framework with 30+ commands, token optimization, and MCP server integration. Achieves 2-10x productivity gains through systematic command organization and hierarchical configuration.
# Add to your Claude Code skills
git clone https://github.com/oxygen-fragment/claude-modularA comprehensive, production-ready modular framework template for Claude Code that achieves 2-10x productivity gains through proven patterns, token optimization, and systematic development workflows.
git clone https://github.com/your-username/claude-modular.git
cd claude-modular
cp templates/CLAUDE.md.template CLAUDE.md
# Edit CLAUDE.md with your project-specific details
# Copy the .claude directory to your project root
cp -r .claude /path/to/your/project/
# Customize configuration for your environment
cd /path/to/your/project/.claude/config
# Edit settings.json, development.json, etc.
# In your project with Claude Code
/project:setup-environment
/project:create-feature user-authentication
/test:generate-tests
/dev:code-review
your-project/
āāā .claude/ # Framework configuration
ā āāā config/ # Environment-specific settings
ā ā āāā settings.json # Base configuration
ā ā āāā development.json # Dev environment
ā ā āāā staging.json # Staging environment
ā ā āāā production.json # Production environment
ā āāā commands/ # Modular command library
ā āāā project/ # Project management
ā āāā development/ # Development workflow
ā āāā testing/ # Testing automation
ā āāā deployment/ # Deployment operations
ā āāā documentation/ # Documentation generation
āāā CLAUDE.md # Your project-specific configuration
āāā [your project files]
Each command follows a proven XML structure:
<instructions>
<context>When and why to use this command</context>
<requirements>Prerequisites and dependencies</requirements>
<executio...