██████╗ ██╗ █████╗ ██╗ ██╗ ██████╗ ███████╗ ██╔════╝ ██║ ██╔══██╗ ██║ ██║ ██╔══██╗ ██╔════╝ ██║ ██║ ███████║ ██║ ██║ ██║ ██║ █████╗ ██║ ██║ ██╔══██║ ██║ ██║ ██║ ██║ ██╔══╝ ╚██████╗ ███████╗ ██║ ██║ ╚██████╔╝ ██████╔╝ ███████╗ ╚═════╝ ╚══════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝
███████╗ ██╗ ██████╗ ██╗ ██╗ ██╔════╝ ██║ ██╔═══██╗ ██║ ██║ █████╗ ██║ ██║ ██║ ██║ █╗ ██║ ██╔══╝ ██║ ██║ ██║ ██║███╗██║ ██║ ███████╗ ╚██████╔╝ ╚███╔███╔╝ ╚═╝ ╚══════╝ ╚═════╝ ╚══╝╚══╝
> Supercharge Claude Code with Workflows
Download powerful slash commands that transform Claude Code into your personal code reviewer and refactoring assistant.
// AVAILABLE_COMMANDS
Two powerful workflows ready to use in Claude Code
>
/review
Comprehensive code review analyzing security, performance, bugs, code quality, and best practices.
// features
- -Security vulnerability detection
- -Performance bottleneck analysis
- -Bug and edge case identification
- -Code quality assessment
- -Best practices compliance check
- -Severity-ranked findings report
>
/refactor
Identifies refactoring opportunities with before/after examples and effort estimates.
// features
- -Extract functions/classes suggestions
- -Logic simplification opportunities
- -DRY violation detection
- -Design pattern recommendations
- -Naming improvement suggestions
- -Prioritized action items
// USAGE_EXAMPLES
Simple commands, powerful results
examples
$/review src/auth.ts
Review a single authentication file
$/review src/api/*.ts src/utils/helpers.ts
Review multiple files or use glob patterns
$/refactor components/Dashboard.tsx
Get refactoring suggestions for a component
$/refactor lib/
Analyze an entire directory for improvements
// INSTALLATION
Set up in seconds
setup
# Step 1: Create the commands directory in your project
$ mkdir -p .claude/commands# Step 2: Download the command files
$ Download from this page and place in .claude/commands/
# Step 3: Use in Claude Code
$ /review your-file.ts
$ /refactor your-file.ts
>
Project Structure
your-project/ ├── .claude/ │ └── commands/ │ ├── review.md <- Code review command │ └── refactor.md <- Refactoring command ├── src/ └── ...