Skip to content
Β 
Β 

Latest commit

Β 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Claude Code Tresor πŸ†

A world-class collection of Claude Code utilities: autonomous skills, expert agents, slash commands, and prompts that supercharge your development workflow.

License: MIT Version Claude Code Contributions Welcome

Author: Alireza Rezvani Created: September 16, 2025 Updated: October 24, 2025 (v2.0.0 - Major update!) License: MIT Repository: https://github.com/alirezarezvani/claude-code-tresor


πŸŽ‰ What's New in v2.0.0

Major Feature: Skills Layer - Autonomous background helpers that work automatically!

  • ✨ 8 New Skills - Automatic code quality, security scanning, test suggestions, and documentation
  • πŸ”„ 3-Tier Architecture - Skills (automatic) β†’ Agents (manual) β†’ Commands (workflows)
  • πŸ“š Comprehensive Guides - Getting Started, Architecture, Migration
  • πŸ›‘οΈ Zero Breaking Changes - All existing agents and commands work exactly as before
  • 🎯 Simple & Intuitive - Skills work without configuration, sandboxing is optional

Upgrading? See MIGRATION-GUIDE.md for seamless upgrade with zero breaking changes.


🎯 What is Claude Code Tresor?

Claude Code Tresor is the ultimate collection of professional-grade utilities for Claude Code users. Whether you're a solo developer or part of a team, this repository provides battle-tested tools that integrate seamlessly into your development workflow.

🌟 Why Choose Claude Code Tresor?

  • πŸš€ Production-Ready: All utilities are tested and used in real-world projects
  • πŸ“š Comprehensive: Covers the entire development lifecycle
  • πŸ› οΈ Easy Installation: One-command setup with automated updates
  • 🎨 Customizable: Adapt templates to your specific needs and tech stack
  • πŸ‘₯ Team-Friendly: Includes collaboration guidelines and standards
  • πŸ“– Well-Documented: Every component includes detailed examples and usage guides

✨ What's Included

πŸš€ Slash Commands (4 Essential)

Transform your development workflow with these powerful commands:

Command Purpose Example Usage
/scaffold Generate project structures, components, and boilerplate /scaffold react-component UserProfile --hooks --tests
/review Automated code review with security and performance analysis /review --scope staged --checks security,performance
/test-gen Create comprehensive test suites automatically /test-gen --file utils.js --coverage 90
/docs-gen Generate documentation from code and comments /docs-gen api --format openapi

πŸ€– Specialized Agents (8 Expert)

Expert-level assistance for complex development tasks:

Agent Expertise Best For
@code-reviewer Code quality, security, performance analysis PR reviews, code audits, best practices
@test-engineer Testing strategies, test creation, QA Unit tests, integration tests, coverage analysis
@docs-writer Technical documentation, user guides API docs, README files, troubleshooting guides
@architect System design, technology evaluation Architecture reviews, design decisions
@debugger Root cause analysis, troubleshooting Production issues, complex bugs
@security-auditor Security assessment, OWASP compliance Security audits, vulnerability analysis
@performance-tuner Performance optimization, profiling Performance issues, bottleneck analysis
@refactor-expert Code refactoring, clean architecture Technical debt, code modernization

✨ Skills (8 Autonomous) - NEW!

Automatic background helpers that work while you code:

Skill What It Does Triggers On
code-reviewer Real-time code quality checks File edits, saves
test-generator Suggests missing tests automatically New functions, untested code
git-commit-helper Generates commit messages from diff git diff --staged
security-auditor Detects vulnerabilities (SQL injection, XSS) Auth code, API endpoints
secret-scanner Blocks commits with exposed secrets Pre-commit, API keys in code
dependency-auditor Checks dependencies for CVEs package.json changes
api-documenter Auto-generates OpenAPI specs API routes added
readme-updater Keeps README current Project changes, features

Skills vs Agents: Skills work automatically in the background. Agents require manual invocation (@agent) for deep analysis.

Learn more: Skills Guide Β· Getting Started Β· Architecture

πŸ“ Curated Prompt Templates (20+)

Ready-to-use prompts for common development scenarios:

  • Frontend Development: React, Vue, Angular, JavaScript/TypeScript
  • Backend Development: APIs, databases, authentication, microservices
  • Debugging & Analysis: Error analysis, performance troubleshooting
  • Best Practices: Clean code, security, refactoring strategies

πŸ“ Development Standards

Professional coding standards and style guides:

  • JavaScript/TypeScript style guide with ESLint/Prettier configs
  • Git workflows with conventional commits
  • Code review checklists and PR templates
  • Team collaboration guidelines

πŸ’‘ Real-World Examples

Complete workflow demonstrations:

  • React App Setup: Full modern React application from scratch
  • API Development: RESTful APIs with testing and documentation
  • Performance Optimization: Systematic performance improvement
  • CI/CD Pipelines: Automated testing and deployment

πŸ“¦ Source Library (200+ Components)

Extensive collection of additional utilities in the sources/ directory:

  • 80+ Specialized Agents: Marketing, design, operations, AI automation
  • Advanced Slash Commands: Tools and workflow automation
  • Extended Templates: Industry-specific prompts and patterns

πŸš€ Quick Start

Option 1: Automated Installation (Recommended)

# Clone the repository
git clone https://github.com/alirezarezvani/claude-code-tresor.git
cd claude-code-tresor

# Run the installation script (installs skills + agents + commands)
chmod +x scripts/install.sh
./scripts/install.sh

# Or install selectively:
./scripts/install.sh --skills          # Skills only (autonomous helpers)
./scripts/install.sh --agents          # Agents only (manual experts)
./scripts/install.sh --commands        # Commands only (workflows)

What's installed:

  • βœ… 8 Skills - Automatic background helpers
  • βœ… 8 Agents - Manual expert sub-agents
  • βœ… 4 Commands - Workflow automation

First time? See GETTING-STARTED.md for 5-minute quick start.

Option 2: Manual Installation

# Copy skills to Claude Code directory
cp -r skills/* ~/.claude/skills/

# Copy commands to Claude Code directory
cp -r commands/* ~/.claude/commands/

# Copy agents to Claude Code directory
cp -r agents/* ~/.claude/agents/

# Copy resources for reference
cp -r prompts standards examples ~/claude-code-resources/

Option 3: Selective Installation

# Install only slash commands
./scripts/install.sh --commands-only

# Install only agents
./scripts/install.sh --agents-only

# Install only resources (prompts, standards, examples)
./scripts/install.sh --resources-only

πŸ› οΈ Usage Examples

πŸ—οΈ Project Setup

# Create a complete React application
/scaffold react-app my-project --typescript --tailwind --tests

# Generate API endpoints with tests
/scaffold express-api user-service --auth --database --tests

πŸ” Code Review

# Comprehensive code review
@code-reviewer Please review this component for:
- React best practices
- Performance optimization
- Security considerations
- Accessibility compliance

# Automated PR review
/review --scope pr --checks security,performance,style

πŸ§ͺ Testing

# Generate comprehensive tests
@test-engineer Create unit tests for this utility function with:
- Edge case coverage
- Error handling tests
- Performance benchmarks

# Automated test generation
/test-gen --file components/UserCard.tsx --framework jest

πŸ“– Documentation

# Generate API documentation
/docs-gen api --format openapi --include-examples

# Create user guides
@docs-writer Create a user guide for this authentication system with:
- Setup instructions
- Usage examples
- Troubleshooting guide

πŸ“ Repository Structure

claude-code-tresor/
β”œβ”€β”€ πŸ“– README.md                    # This file - complete overview
β”œβ”€β”€ βš–οΈ LICENSE                      # MIT License
β”œβ”€β”€ 🀝 CONTRIBUTING.md              # Contribution guidelines
β”œβ”€β”€ πŸ“š GETTING-STARTED.md           # 5-minute quick start guide
β”œβ”€β”€ πŸ—οΈ ARCHITECTURE.md              # 3-tier system explanation
β”œβ”€β”€ πŸ”„ MIGRATION-GUIDE.md           # Upgrade guide for existing users
β”œβ”€β”€
β”œβ”€β”€ ✨ skills/                      # 8 Autonomous Skills (NEW v2.0!)
β”‚   β”œβ”€β”€ development/                # code-reviewer, test-generator, git-commit-helper
β”‚   β”œβ”€β”€ security/                   # security-auditor, secret-scanner, dependency-auditor
β”‚   β”œβ”€β”€ documentation/              # api-documenter, readme-updater
β”‚   β”œβ”€β”€ README.md                   # Skills guide
β”‚   └── TEMPLATES.md                # Custom skill templates
β”œβ”€β”€
β”œβ”€β”€ πŸ€– agents/                      # 8 Specialized Agents
β”‚   β”œβ”€β”€ code-reviewer/              # Code quality expert
β”‚   β”œβ”€β”€ test-engineer/              # Testing specialist
β”‚   β”œβ”€β”€ docs-writer/                # Documentation expert
β”‚   β”œβ”€β”€ architect/                  # System design expert
β”‚   β”œβ”€β”€ debugger/                   # Debugging specialist
β”‚   β”œβ”€β”€ security-auditor/           # Security expert
β”‚   β”œβ”€β”€ performance-tuner/          # Performance optimization
β”‚   └── refactor-expert/            # Code refactoring
β”œβ”€β”€
β”œβ”€β”€ ⚑ commands/                     # 4 Slash Commands
β”‚   β”œβ”€β”€ development/                # Project scaffolding and tools
β”‚   β”œβ”€β”€ testing/                    # Test generation and analysis
β”‚   β”œβ”€β”€ documentation/              # Doc generation utilities
β”‚   └── workflow/                   # PR reviews and automation
β”œβ”€β”€
β”œβ”€β”€ πŸ“ prompts/                     # Prompt Templates
β”‚   β”œβ”€β”€ code-generation/            # Frontend & backend prompts
β”‚   β”œβ”€β”€ debugging/                  # Error analysis prompts
β”‚   β”œβ”€β”€ architecture/               # System design prompts
β”‚   └── best-practices/             # Code quality prompts
β”œβ”€β”€
β”œβ”€β”€ πŸ“ standards/                   # Development Standards
β”‚   β”œβ”€β”€ style-guides/               # Language-specific guides
β”‚   β”œβ”€β”€ git-workflows/              # Git best practices
β”‚   └── templates/                  # PR and issue templates
β”œβ”€β”€
β”œβ”€β”€ πŸ’‘ examples/                    # Real-World Examples
β”‚   β”œβ”€β”€ workflows/                  # Complete project workflows
β”‚   β”œβ”€β”€ integrations/               # Service integration examples
β”‚   └── case-studies/               # Detailed project case studies
β”œβ”€β”€
β”œβ”€β”€ πŸ“¦ sources/                     # Extended Source Library
β”‚   β”œβ”€β”€ agents/                     # 200+ additional agents
β”‚   └── slash-commands/             # Advanced command utilities
β”œβ”€β”€
└── πŸ”§ scripts/                     # Utility Scripts
    β”œβ”€β”€ install.sh                  # Easy installation
    └── update.sh                   # Update utilities

🎯 Getting Started Paths

πŸ‘Ά New to Claude Code?

  1. Install: Run ./scripts/install.sh (installs skills + agents + commands)
  2. Observe: Skills work automatically - start coding and watch them detect issues
  3. Try Command: /scaffold react-component TestComponent --tests
  4. Invoke Agent: @code-reviewer for deep analysis
  5. Learn: Browse GETTING-STARTED.md for 5-min quick start

πŸƒβ€β™‚οΈ Ready to Build?

  1. Skills monitor: Automatic background checks (code quality, security, tests)
  2. Agent analysis: @code-reviewer, @test-engineer for deep dives
  3. Command workflows: /review --scope staged, /test-gen --file utils.js
  4. Full workflow: Skills detect β†’ Agents analyze β†’ Commands orchestrate

πŸ‘₯ Team Lead?

  1. Standards: Implement standards/style-guides/javascript.md
  2. Workflows: Set up standards/git-workflows/conventional-commits.md
  3. Templates: Use standards/templates/ for consistency
  4. Training: Share examples/ with your team

πŸ”§ Power User?

  1. Customize: Adapt templates in prompts/ for your needs
  2. Extend: Explore additional utilities in sources/
  3. Contribute: Add your own utilities following CONTRIBUTING.md
  4. Automate: Build custom workflows using the utilities

πŸš€ Updates & Maintenance

Automatic Updates

# Update all utilities
./scripts/update.sh

# Check for updates without applying
./scripts/update.sh --check

# Update specific components
./scripts/update.sh --commands-only

Stay Current

  • ⭐ Star this repository to get notified of updates
  • πŸ‘€ Watch releases for new features and utilities
  • πŸ“’ Join discussions to suggest improvements
  • 🀝 Contribute your own utilities and improvements

🀝 Contributing

We welcome contributions from the community! Here's how to get involved:

Quick Contributions

  • πŸ› Report bugs in GitHub Issues
  • πŸ’‘ Suggest features in GitHub Discussions
  • πŸ“– Improve documentation with clarifications
  • ⭐ Share your experience with others

Code Contributions

  • πŸ”§ Add new utilities following our standards
  • 🎨 Improve existing code with enhancements
  • πŸ§ͺ Add test coverage for utilities
  • πŸ“š Create examples for complex workflows

Process

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-utility
  3. Follow our standards in standards/ directory
  4. Test your changes thoroughly
  5. Submit a pull request using our template

See CONTRIBUTING.md for detailed guidelines.


πŸ“Š Project Stats

  • ✨ Skills: 8 autonomous background helpers (NEW v2.0!)
  • πŸ€– Agents: 8 expert sub-agents for deep analysis
  • ⚑ Commands: 4 workflow orchestration commands
  • πŸ“ Prompt Templates: 20+ battle-tested prompts
  • πŸ“ Standards: 5 comprehensive style guides
  • πŸ’‘ Examples: 10+ real-world workflows
  • πŸ“¦ Source Library: 200+ additional components
  • ⏱️ Installation Time: < 2 minutes
  • πŸ“ˆ Version: 2.0.0 (Major update: Skills layer!)
  • πŸ”„ Active Development: Continuously updated

πŸ† Success Stories

Individual Developers

"Claude Code Tresor cut my React setup time from hours to minutes. The testing utilities alone saved me weeks of work!" - Sarah K., Frontend Developer

Development Teams

"Our code quality improved dramatically after implementing the standards and review workflows. PRs are now focused on logic, not style." - Mike R., Tech Lead

Agencies & Consultancies

"We use Claude Code Tresor as our standard toolkit. It ensures consistency across all client projects and speeds up delivery." - Jennifer L., CTO


πŸ“„ License & Usage

This project is licensed under the MIT License - see LICENSE for details.

You Can:

  • βœ… Use for commercial and personal projects
  • βœ… Modify and distribute
  • βœ… Create derivative works
  • βœ… Include in proprietary software

Requirements:

  • πŸ“„ Include copyright notice and license
  • 🏷️ Credit original author when sharing

πŸ™ Acknowledgments

  • Claude Code Team: For creating an amazing development platform
  • Open Source Community: For inspiration and best practices
  • Contributors: Everyone who has helped improve these utilities
  • Users: For feedback and real-world testing

Special thanks to developers worldwide who believe in sharing knowledge and tools to make development better for everyone.


πŸ“ž Support & Community

Get Help

  • πŸ“‹ Issues: GitHub Issues for bugs and feature requests
  • πŸ’¬ Discussions: GitHub Discussions for questions and ideas
  • πŸ“– Documentation: Browse examples/ directory for detailed guides
  • πŸ” Search: Use repository search to find specific utilities

Connect

Professional Support

For professional support, custom utilities, or team training:

  • πŸ“§ Email: [Your professional email]
  • πŸ’Ό Consulting: Available for custom development and team training

⭐ Star History

If you find Claude Code Tresor valuable, please consider starring the repository! It helps others discover these utilities and motivates continued development.

Star History Chart


Made with ❀️ by Alireza Rezvani

Empowering developers with world-class Claude Code utilities

License: MIT PRs Welcome Code Quality

πŸš€ Get Started Now | πŸ“š View Examples | 🀝 Contribute

About

A world-class collection of Claude Code utilities: autonomous skills, expert agents, slash commands, and prompts that supercharge your development workflow

Resources

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages