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-modularGuides for using mcp servers skills like claude-modular.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T15:09:03.109Z",
"npmAuditRan": true,
"pipAuditRan": true
}claude-modular is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by oxygen-fragment. 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. It has 286 GitHub stars.
Yes. claude-modular passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/oxygen-fragment/claude-modular" and add it to your Claude Code skills directory (see the Installation section above).
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-modular against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
A 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>
<execution>Step-by-step implementation</execution>
<validation>Quality checks and acceptance criteria</validation>
<examples>Concrete usage examples</examples>
</instructions>
/project:create-feature - Full feature scaffolding with tests and docs/project:scaffold-component - Component creation with boilerplate/project:setup-environment - Development environment initialization/dev:code-review - Structured code review with automated analysis/dev:refactor-analysis - Code improvement recommendations/dev:debug-session - Systematic debugging and problem solving/test:generate-tests - Comprehensive test suite generation/test:coverage-analysis - Test coverage assessment and improvement/test:integration-tests - Integration test creation and execution/deploy:prepare-release - Release preparation with quality gates/deploy:deploy-staging - Staging deployment with validation/deploy:rollback-procedure - Emergency rollback execution/docs:api-docs - API documentation generation/docs:update-readme - README maintenance and updates/docs:architecture-review - Architecture documentation and reviewThe framework supports layered configuration inheritance:
// Base settings.json
{
"defaults": {
"max_tokens_per_session": 50000,
"progressive_disclosure": true
}
}
// development.json overrides
{
"extends": "./settings.json",
"overrides": {
"defaults": {
"max_tokens_per_session": 100000
}
}
}
{
"security": {
"require_env_vars": true,
"audit_logging": true,
"permission_validation": true,
"secret_scanning": true
}
}
templates/CLAUDE.md.template with your technologies# Setup new project
/project:setup-environment
# Create a feature
/project:create-feature user-authentication --type=service
# Review code
/dev:code-review --focus=security,performance
# Deploy to staging
/deploy:deploy-staging
# Complex feature development
/project:create-feature payment-processing --framework=express --database=postgresql
# Comprehensive testing
/test:generate-tests --types=unit,integration,e2e
/test:coverage-analysis --target=90%
# Production deployment
/deploy:prepare-release --type=major
/deploy:deploy-staging --validate
/deploy:rollback-procedure --preserve-data
git checkout -b feature/new-commandMIT License - see LICENSE file for details.
Based on research papers:
If you want to help me out you can
Start building better, faster, and more consistently with Claude Code's modular framework.