This repository contains Anthropic Claude commands as markdown files.
Each command uses the format:
@command.md <TASK_DESCRIPTION>`
In this repository, see the directory commands
.
Read the command markdown files and decide which ones you want to use.
In your project top directory, create a directory .claude
.
In your directory .claude
, create a directory commands
.
Copy any of the command markdown files from this repository directory commands
to your project directory commands
.
Ask an architect:
@ask-architect.md How to design a microservices architecture for an e-commerce platform handling 10M+ users
Implement a new feature:
@code.md Implement user authentication system with login, registration, and password reset
Review the code:
@review.md user authentication module
Generate tests:
@test.md user authentication functionality
Optimize performance:
@optimize.md login API response time
Check deployment:
@check-deploy.md production environment
Debug a problem:
@debug.md User login returns intermittent 500 errors
Code a fix:
@code.md Fix login service concurrency issues
Test the fix:
@test.md login concurrent scenarios
Check deployment:
@check-deploy.md hotfix branch
Architecture guidance:
@ask-architect.md Should we use event sourcing or traditional CRUD for our order management system
System design consultation:
@ask-architect.md How to handle data consistency across microservices in a distributed transaction
Technology strategy:
@ask-architect.md Comparing GraphQL vs REST API for our mobile-first application
Implementation planning:
@code.md Implement API gateway pattern with rate limiting and circuit breaker
Refactoring analysis:
@refactor.md user service module with high complexity
Review code:
@review.md refactored user service
Optimize performance:
@optimize.md refactored service performance
Test supplementation:
@test.md refactored user service