-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Bruno Boto edited this page Jan 16, 2026
·
2 revisions
A comprehensive collection of commands, prompts, and utilities for Claude Code.
# Clone the repository
git clone https://github.com/webuild-ai/claude-toolkit.git
cd claude-toolkit
# Install all commands
make install
# Or install specific commands
make install-cmd CMD=sanitycheck
make install-cmd CMD=commit# List all available commands
make list
# Check installation status
make checkOnce installed, commands are available in any Claude Code session:
/sanitycheck # Run comprehensive pre-commit checks
/commit # Create conventional commits
/pr-review # Review pull requests
/test-coverage # Analyze test coverage
π― Commands
25 specialized slash commands across 7 categories:
- Git & PR Workflows (5) - Commits, PRs, rebasing
- Code Quality (4) - Refactoring, dead code, type safety
- Testing (4) - Test generation, coverage, E2E
- Documentation (3) - API docs, READMEs, architecture
- Development (3) - Setup, dependencies, builds
- Infrastructure (4) - Terraform, Docker, env config
- AI/Agent (3) - Workflows, MCP servers, debugging
π Prompts
8 reusable prompt templates:
- Validation - Security, multi-cloud, Terraform
- Analysis - Code smells, performance, Docker
- Generation - Tests, commit messages
π Schemas
10 JSON schemas for:
- Command outputs
- Validation rules
- Configuration structures
π‘ Examples
8 real-world examples:
- Command outputs
- Multi-step workflows
- CI/CD integrations
- Start with Getting Started
- Try the Pre-Commit Workflow
- Read Frequently Asked Questions
- Explore Advanced Workflows
- Learn Custom Command Creation
- Check Best Practices
Commands use zsh -i -c "npm ..." for npm commands. If using a different shell:
| Shell | Syntax |
|---|---|
| Bash | bash -c "npm ..." |
| Fish | fish -c "npm ..." |
| Direct | npm ... |
Add to ~/.claude/CLAUDE.md:
## Pre-Commit Requirements
### Sanity Check Before Commits
**ALWAYS** run `/sanitycheck` before creating any git commit.We welcome contributions! See:
- Command Reference - Detailed command documentation
- Tutorials & Guides - Step-by-step tutorials
- FAQ - Common questions and solutions
- Main Repository - Source code
- Issues - Report bugs or request features
- Discussions - Ask questions or share ideas
MIT License - See LICENSE for details.
Made with β€οΈ for the Claude Code community