We welcome contributions! Help us make Claude Code even better for everyone.
📋 Before contributing, please read our Code of Conduct to ensure a respectful and inclusive environment for all community members.
The easiest way to contribute is by adding individual components like agents, commands, MCPs, settings, or hooks.
Agents are AI specialists for specific domains (security, performance, frameworks, etc.).
-
Create Agent File
# Navigate to appropriate category cd cli-tool/components/agents/[category]/ # Create your agent file touch your-agent-name.md
-
Agent File Structure
# Agent Name Agent description and purpose. ## Expertise - Specific domain knowledge - Key capabilities - Use cases ## Instructions Detailed instructions for Claude on how to act as this agent. ## Examples Practical examples of agent usage.
-
Available Categories
development-team/- Full-stack developers, architectsdomain-experts/- Security, performance, accessibility specialistscreative-team/- Content creators, designersbusiness-team/- Product managers, analystsdevelopment-tools/- Tool specialists, DevOps experts
-
Creating New Categories If your agent doesn't fit existing categories, create a new one:
# Create new category folder cd cli-tool/components/agents/ mkdir your-new-category # Add your agent file to the new category cd your-new-category/ touch your-agent-name.md
Commands are custom slash commands that extend Claude Code functionality.
-
Create Command File
cd cli-tool/components/commands/[category]/ touch your-command-name.md -
Command File Structure
# /command-name Brief command description. ## Purpose What this command accomplishes. ## Usage How to use the command with examples. ## Implementation Technical details of what the command does.
-
Command Categories
code-generation/- Generate code, tests, documentationanalysis/- Code analysis, optimization, debuggingproject-management/- File operations, project structuretesting/- Test generation, validation, coveragedeployment/- Build, deploy, CI/CD operations
-
Creating New Categories If your command doesn't fit existing categories, create a new one:
# Create new category folder cd cli-tool/components/commands/ mkdir your-new-category # Add your command file to the new category cd your-new-category/ touch your-command-name.md
MCPs provide external service integrations for Claude Code.
-
Create MCP File
cd cli-tool/components/mcps/[category]/ touch your-service-mcp.json -
MCP File Structure
{ "mcpServers": { "service-name": { "command": "npx", "args": ["-y", "@your-org/mcp-server"], "env": { "API_KEY": "<YOUR_API_KEY>", "BASE_URL": "https://api.service.com" } } } } -
MCP Categories
audio/- Audio processing, text-to-speech, transcription servicesintegration/- GitHub, GitLab, Jiradatabase/- PostgreSQL, MySQL, MongoDBcloud/- AWS, Azure, GCP servicesdevtools/- Build tools, testing frameworksai-services/- OpenAI, Anthropic, other AI APIs
-
Creating New Categories If your MCP doesn't fit existing categories, create a new one:
# Create new category folder cd cli-tool/components/mcps/ mkdir your-new-category # Add your MCP file to the new category cd your-new-category/ touch your-service-mcp.json
Settings configure Claude Code behavior and performance.
-
Create Settings File
cd cli-tool/components/settings/[category]/ touch your-setting-name.json -
Settings File Structure
{ "setting-category": { "parameter": "value", "description": "What this setting controls" } } -
Settings Categories
performance/- Memory, timeout, cache settingsui/- Interface customization, themesmcp/- MCP server configurationssecurity/- Access control, permissions
-
Creating New Categories If your setting doesn't fit existing categories, create a new one:
# Create new category folder cd cli-tool/components/settings/ mkdir your-new-category # Add your setting file to the new category cd your-new-category/ touch your-setting-name.json
Hooks provide automation triggers for different development events.
-
Create Hook File
cd cli-tool/components/hooks/[category]/ touch your-hook-name.json -
Hook File Structure
{ "hooks": { "hook-name": { "event": "trigger-event", "command": "action-to-perform", "description": "What this hook does" } } } -
Hook Categories
git/- Pre-commit, post-commit, pre-pushdevelopment/- File changes, build eventstesting/- Test execution, coverage checks
-
Creating New Categories If your hook doesn't fit existing categories, create a new one:
# Create new category folder cd cli-tool/components/hooks/ mkdir your-new-category # Add your hook file to the new category cd your-new-category/ touch your-hook-name.json
Templates are complete project configurations that include CLAUDE.md, .claude/* files, and .mcp.json.
-
Create Template Directory
cd cli-tool/templates/ mkdir your-template-name cd your-template-name
-
Template Structure
your-template-name/ ├── CLAUDE.md # Main configuration ├── .claude/ │ ├── settings.json # Automation hooks │ └── commands/ # Template-specific commands ├── .mcp.json # MCP server configuration └── README.md # Template documentation -
CLAUDE.md Guidelines
- Include project-specific configuration
- Add development commands and workflows
- Document best practices and conventions
- Include security guidelines
- Provide testing standards
-
Template Categories
- Framework-specific (React, Vue, Angular, etc.)
- Language-specific (Python, TypeScript, Go, etc.)
- Domain-specific (API development, machine learning, etc.)
- Industry-specific (e-commerce, fintech, etc.)
- Comprehensive Configuration - Include all necessary Claude Code setup
- Clear Documentation - Well-documented CLAUDE.md with examples
- Practical Commands - Useful slash commands for the domain
- Proper MCPs - Relevant external integrations
- Testing - Test template with real projects
For advanced contributors who want to improve the CLI tools like analytics, health check, and chat monitoring.
- Node.js 14+ (for the installer)
- npm or yarn
- Git
# Clone the repository
git clone https://github.com/davila7/claude-code-templates.git
cd claude-code-templates
# Navigate to the CLI tool directory
cd cli-tool
# Install dependencies
npm install
# Link for local testing
npm link
# Run test suite
npm testThe analytics dashboard provides real-time monitoring of Claude Code sessions.
# Start analytics dashboard
npm run analytics:start
# Clear cache during development
curl -X POST http://localhost:3333/api/cache/clear -H "Content-Type: application/json" -d '{"type":"all"}'
# Refresh data
curl http://localhost:3333/api/refresh
# Restart server completely
pkill -f analytics && sleep 3 && npm run analytics:startsrc/analytics/
├── core/ # Business logic
│ ├── StateCalculator.js # Conversation state detection
│ ├── ProcessDetector.js # Running process detection
│ ├── ConversationAnalyzer.js # Message parsing
│ └── FileWatcher.js # Real-time file monitoring
├── data/ # Data management
│ └── DataCache.js # Multi-level caching
├── notifications/ # Real-time communication
│ ├── WebSocketServer.js # Server-side WebSocket
│ └── NotificationManager.js # Event-driven notifications
└── utils/ # Utilities
└── PerformanceMonitor.js # System health monitoring
Problem: Changes don't appear in dashboard
# Solution: Clear cache and refresh
curl -X POST http://localhost:3333/api/cache/clear -H "Content-Type: application/json" -d '{"type":"conversations"}'
curl http://localhost:3333/api/refreshProblem: WebSocket not updating
# Solution: Hard refresh browser (Ctrl+F5 or Cmd+Shift+R)Mobile-optimized interface for viewing Claude conversations in real-time.
src/chats/
├── components/ # UI components
├── services/ # API communication
├── websocket/ # Real-time updates
└── styles/ # Mobile-first CSS
# Start chat monitor
npm run chats:start
# Start with tunnel (requires cloudflared)
npm run chats:start -- --tunnel
# Test mobile interface
npm run chats:testComprehensive diagnostics tool for Claude Code installations.
- Installation Validation - Claude Code setup verification
- Configuration Check - Settings and file validation
- Performance Analysis - Memory, disk, network diagnostics
- Security Audit - Permission and access checks
# Run health check
npm run health-check
# Add new health check
# 1. Create check in src/health-checks/
# 2. Add to health check registry
# 3. Test with various scenarios# Test component installation
npx claude-code-templates@latest --agent your-agent --dry-run
npx claude-code-templates@latest --command your-command --dry-run
npx claude-code-templates@latest --mcp your-mcp --dry-run# Test template installation
npx claude-code-templates@latest --template your-template --dry-run
# Test with specific scenarios
npm start -- --language python --framework django --dry-run
npm start -- --language javascript --framework react --dry-run# Test analytics
npm run analytics:test
# Test chat monitor
npm run chats:test
# Test health check
npm run health-check:testgit clone https://github.com/your-username/claude-code-templates.git
cd claude-code-templatesgit checkout -b feature/your-contribution- Follow the guidelines above for your contribution type
- Test thoroughly with real scenarios
- Include comprehensive documentation
cd cli-tool
npm test
npm start -- --dry-run- Clear description of changes
- Screenshots for UI changes
- Testing instructions
- Reference related issues
- Security Agents - Security auditing, vulnerability scanning
- Performance Commands - Optimization, profiling, monitoring
- Cloud MCPs - AWS, Azure, GCP integrations
- Framework Agents - React, Vue, Angular, Next.js specialists
- Modern Frameworks - Svelte, SvelteKit, Astro, Qwik
- Backend Frameworks - NestJS, Fastify, Hono, tRPC
- Full-Stack - T3 Stack, create-remix-app, SvelteKit
- Mobile - React Native, Expo, Flutter
- Analytics Enhancements - Better visualizations, export options
- Chat Monitor Features - Search, filtering, conversation history
- Health Check Improvements - More diagnostic categories, fix suggestions
- GitHub Issues - Report bugs or request features
- GitHub Discussions - Join community discussions
- Documentation - Complete guides at docs.aitmpl.com
- Browse Components - aitmpl.com to see existing components
- Component Examples - Check existing components for structure reference
- Template Examples - Review successful templates for best practices
By contributing to this project, you agree that your contributions will be licensed under the MIT License.
All contributors are recognized in our:
- GitHub Contributors page
- Release Notes for significant contributions
- Community Discussions for helpful contributions
Thank you for helping make Claude Code Templates better for everyone! 🚀