Skip to content
Bruno Boto edited this page Jan 16, 2026 · 2 revisions

Welcome to Claude Toolkit

A comprehensive collection of commands, prompts, and utilities for Claude Code.

Commands Prompts Schemas

πŸš€ Quick Start

Installation

# 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

Verify Installation

# List all available commands
make list

# Check installation status
make check

Using Commands

Once 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

πŸ“š What's Inside

🎯 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

πŸŽ“ Learning Path

New Users

  1. Start with Getting Started
  2. Try the Pre-Commit Workflow
  3. Read Frequently Asked Questions

Experienced Users

  1. Explore Advanced Workflows
  2. Learn Custom Command Creation
  3. Check Best Practices

πŸ”§ Configuration

Shell Compatibility

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 ...

Auto-run Sanitycheck

Add to ~/.claude/CLAUDE.md:

## Pre-Commit Requirements

### Sanity Check Before Commits
**ALWAYS** run `/sanitycheck` before creating any git commit.

🀝 Contributing

We welcome contributions! See:

πŸ“– Documentation

πŸ’¬ Support

  • Issues - Report bugs or request features
  • Discussions - Ask questions or share ideas

πŸ“„ License

MIT License - See LICENSE for details.


Made with ❀️ for the Claude Code community