Comprehensive guides and tools for Claude Code workflows, custom commands, and AI-assisted development.
- Claude Code Custom Commands Guide - Complete guide to creating and using custom slash commands
- Claude Code Search Best Practices - Comprehensive guide to effective searching in Claude Code
- Claude Conversation Search Guide - Complete guide to searching your conversation history
- Claude Code Commands Collection - Production-ready custom commands including:
- Conversation Search: Multi-source search across all your Claude conversation history
- Multi-Mind Analysis: Collaborative multi-specialist analysis with dynamic role assignment
- Function Deep Dive: Line-by-line code analysis with performance insights
- Anti-Repetition Workflows: Progressive knowledge building across multiple rounds
For specific projects:
# Copy to your project
mkdir -p .claude/commands
cp claude-commands/*.md .claude/commands/For global use:
# Copy to global Claude directory
mkdir -p ~/.claude/commands
cp claude-commands/*.md ~/.claude/commands/# Basic multi-specialist analysis (3 rounds)
/project:multi-mind "Should we implement quantum error correction in our ML pipeline?"
# Extended analysis with custom rounds
/project:multi-mind "Climate change mitigation strategies" rounds=5
# Structured expert debate format
/project:multi-mind-debate "Scaling transformer architectures beyond GPU limits"# Search across all your Claude conversations
/project:search-prompts "machine learning pipeline"
/project:search-prompts "debugging memory issues"
/project:search-prompts "database optimization"# Analyze any function with detailed insights
/project:analyze-function train.py:detect_words_gpu
/project:analyze-function utils.js validateInput- Dynamic Specialist Assignment: AI automatically selects 4-6 experts based on topic complexity
- Error Decorrelation: Different specialists catch different types of blind spots
- Web Search Integration: Fresh knowledge acquisition each round
- Anti-Repetition Mechanisms: Progressive insight building without circular discussions
- Configurable Workflows: Adjust rounds and depth based on needs
Feel free to:
- Add new custom commands
- Improve existing guides
- Share your own Claude Code workflows
- Submit pull requests with enhancements
Open source - modify and adapt for your specific needs.