Contributing to Claude Code Templates
November 9, 2025 ยท View on GitHub
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.
๐งฉ Contributing Components
The easiest way to contribute is by adding individual components like agents, commands, MCPs, settings, or hooks.
๐ค Adding Agents
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
โก Adding Commands
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
๐ Adding MCPs (Model Context Protocol)
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
โ๏ธ Adding Settings
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
๐ช Adding Hooks
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
๐ฆ Contributing Templates
Templates are complete project configurations that include CLAUDE.md, .claude/* files, and .mcp.json.
Creating New Templates
-
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.)
Template Quality Standards
- 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
๐ ๏ธ Contributing to Additional Tools
For advanced contributors who want to improve the CLI tools like analytics, health check, and chat monitoring.
๐ Development Setup
Prerequisites
- Node.js 14+ (for the installer)
- npm or yarn
- Git
Project Setup
# 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 test
๐ Analytics Dashboard Development
The analytics dashboard provides real-time monitoring of Claude Code sessions.
Development Workflow
# 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:start
Architecture
src/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
Common Development Issues
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/refresh
Problem: WebSocket not updating
# Solution: Hard refresh browser (Ctrl+F5 or Cmd+Shift+R)
๐ฌ Chat Monitor Development
Mobile-optimized interface for viewing Claude conversations in real-time.
Architecture
src/chats/
โโโ components/ # UI components
โโโ services/ # API communication
โโโ websocket/ # Real-time updates
โโโ styles/ # Mobile-first CSS
Development Commands
# Start chat monitor
npm run chats:start
# Start with tunnel (requires cloudflared)
npm run chats:start -- --tunnel
# Test mobile interface
npm run chats:test
๐ Health Check Development
Comprehensive diagnostics tool for Claude Code installations.
Health Check Categories
- Installation Validation - Claude Code setup verification
- Configuration Check - Settings and file validation
- Performance Analysis - Memory, disk, network diagnostics
- Security Audit - Permission and access checks
Development
# 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
๐งช Testing
Component Testing
# 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
Template Testing
# 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
Tool Testing
# Test analytics
npm run analytics:test
# Test chat monitor
npm run chats:test
# Test health check
npm run health-check:test
๐ค Contribution Process
1. Fork and Clone
git clone https://github.com/your-username/claude-code-templates.git
cd claude-code-templates
2. Create Feature Branch
git checkout -b feature/your-contribution
3. Make Changes
- Follow the guidelines above for your contribution type
- Test thoroughly with real scenarios
- Include comprehensive documentation
4. Test Changes
cd cli-tool
npm test
npm start -- --dry-run
5. Submit Pull Request
- Clear description of changes
- Screenshots for UI changes
- Testing instructions
- Reference related issues
๐ฏ What We're Looking For
High Priority Components
- 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
High Priority Templates
- 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
Medium Priority Tools
- Analytics Enhancements - Better visualizations, export options
- Chat Monitor Features - Search, filtering, conversation history
- Health Check Improvements - More diagnostic categories, fix suggestions
๐ Getting Help
Community Support
- GitHub Issues - Report bugs or request features
- GitHub Discussions - Join community discussions
- Documentation - Complete guides at docs.aitmpl.com
Quick Start Guides
- Browse Components - aitmpl.com to see existing components
- Component Examples - Check existing components for structure reference
- Template Examples - Review successful templates for best practices
๐ License
By contributing to this project, you agree that your contributions will be licensed under the MIT License.
๐ Recognition
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! ๐