Best Claude Code framework that actually save time. Built by a dev tired of typing "please act like a senior engineer" in every conversation.
# Add to your Claude Code skills
git clone https://github.com/brennercruvinel/CCPluginsCCPlugins V2 is currently in active development due to recent Anthropic updates (SDK improvements, native subagents, context memory, and enhanced CLI capabilities). Several slash commands have become redundant as Claude Code CLI now handles them natively.
V2 will be a complete architectural redesign focusing on what Claude Code still can't do efficiently.
Current version (v1) remains stable and functional.
██████╗██╗ █████╗ ██╗ ██╗██████╗ ███████╗ ██████╗ ██████╗ ██████╗ ███████╗
██╔════╝██║ ██╔══██╗██║ ██║██╔══██╗██╔════╝ ██╔════╝██╔═══██╗██╔══██╗██╔════╝
██║ ██║ ███████║██║ ██║██║ ██║█████╗ ██║ ██║ ██║██║ ██║█████╗
██║ ██║ ██╔══██║██║ ██║██║ ██║██╔══╝ ██║ ██║ ██║██║ ██║██╔══╝
╚██████╗███████╗██║ ██║╚██████╔╝██████╔╝███████╗ ╚██████╗╚██████╔╝██████╔╝███████╗
╚═════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝
██████╗ ██╗ ██╗ ██╗ ██████╗ ██╗███╗ ██╗███████╗
██╔══██╗██║ ██║ ██║██╔════╝ ██║████╗ ██║██╔════╝
██████╔╝██║ ██║ ██║██║ ███╗██║██╔██╗ ██║███████╗
██╔═══╝ ██║ ██║ ██║██║ ██║██║██║╚██╗██║╚════██║
██║ ███████╗╚██████╔╝╚██████╔╝██║██║ ╚████║███████║
╚═╝ ╚══════╝ ╚═════╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝╚══════╝
Boring Stuff
No comments yet. Be the first to share your thoughts!
CCPlugins?Professional commands for Claude Code CLI that save 2-3 hours per week on repetitive development tasks.
😊 Ask Claude to fix a bug → Get 15 test files
😤 Request a simple refactor → Receive a dissertation on clean code
🤪 "Please add a button" → Complete UI framework rewrite
😭 Every conversation → "Act like a senior engineer who doesn't overengineer"
Active Development Notice: CCPlugins is continuously evolving based on real-world usage. We thoroughly test each command and refine them as we discover gaps and opportunities. This ensures you're always getting battle-tested, production-ready tools that solve actual developer problems.
CCPlugins is a curated set of 24 professional commands that extend Claude Code CLI with enterprise-grade development workflows. These commands leverage Claude's contextual understanding while providing structured, predictable outcomes optimized for Opus 4 and Sonnet 4 models.
Mac/Linux:
curl -sSL https://raw.githubusercontent.com/brennercruvinel/CCPlugins/main/install.sh | bash
Windows/Cross-platform:
python install.py
git clone https://github.com/brennercruvinel/CCPlugins.git
cd CCPlugins
python install.py
# Mac/Linux
./uninstall.sh
# Windows/Cross-platform
python uninstall.py
24 professional commands optimized for Claude Code CLI's native capabilities with enhanced validation and refinement phases.
/cleanproject # Remove debug artifacts with git safety
/commit # Smart conventional commits with analysis
/format # Auto-detect and apply project formatter
/scaffold feature-name # Generate complete features from patterns
/test # Run tests with intelligent failure analysis
/implement url/path/feature # Import and adapt code from any source with validation phase
/refactor # Intelligent code restructuring with validation & de-para mapping
/review # Multi-agent analysis (security, performance, quality, architecture)
/security-scan # Vulnerability analysis with extended thinking & remediation tracking
/predict-issues # Proactive problem detection with timeline estimates
/remove-comments # Clean obvious comments, preserve valuable docs
/fix-imports # Repair broken imports after refactoring
/find-todos # Locate and organize development tasks
/create-todos # Add contextual TODO comments based on analysis results
/fix-todos # Intelligently implement TODO fixes with context
/understand # Analyze entire project architecture and patterns
/explain-like-senior # Senior-level code explanations with context
/contributing # Complete contribution readiness analysis
/make-it-pretty # Improve readability without functional changes
/session-start # Begin documented sessions with CLAUDE.md integration
/session-end # Summarize and preserve session context
/docs # Smart documentation management and updates
/todos-to-issues # Convert code TODOs to GitHub issues
/undo # Safe rollback with git checkpoint restore
Complex commands now include validation phases to ensure completeness:
/refactor validate # Find remaining old patterns, verify 100% migration
/implement validate # Check integration completeness, find loose ends
Advanced analysis for complex scenarios:
Natural workflow suggestions without over-engineering:
/test after major changes/commit at logical checkpoints/cleanproject:src/
├── UserService.js
├── UserService.test.js
├── UserService_backup.js # Old version
├── debug.log # Debug output
├── test_temp.js # Temporary test
└── notes.txt # Dev notes
/cleanproject:src/
├── UserService.js # Clean production code
└── UserService.test.js # Actual tests preserved
CCPlugins transforms Claude Code CLI into an intelligent development assistant through a sophisticated yet elegant architecture:
Developer → /command → Claude Code CLI → Command Definition → Intelligent Execution
↑ ↓
←←←←←←←←←←←←←←←←← Clear Feedback & Results ←←←←←←←←←←←←←←←←←←←
When you type a command:
~/.claude/commands/Intelligent Instructions
<think>) for complex decision-makingNative Tool Integration
Safety-First Design
Universal Compatibility
Session Continuity
Commands like /implement and /refactor maintain state across Claude sessions:
# Each command creates its own folder in project root:
refactor/ # Created by /refactor command
├── plan.md # Refactoring roadmap
└── state.json # Completed transformations
implement/ # Created by /implement command
├── plan.md # Implementatio