Best Claude Code framework that actually save time. Built by a dev tired of typing "please act like a senior engineer" in every conversation.
Repo: notlikeDev/CCPlugins
What's inside
CCPlugins 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 StuffCCPlugins?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 # Implementation progress
โโโ state.json # Session state and decisions
fix-imports/ # Created by /fix-imports command
โโโ plan.md # Import fixes plan
โโโ state.json # Resolution progress
security-scan/ # Created by /security-scan command
โโโ plan.md # Vulnerabilities and fixes
โโโ state.json # Remediation progress
scaffold/ # Created by /scaffold command
โโโ plan.md # Scaffolding plan
โโโ state.json # Created files tracking
Multi-Agent Architecture Complex commands orchestrate specialized sub-agents:
Performance Optimizations
##Technical Notes
Why This Approach Works (Based on Anthropic's Research):
Key Principles:
Native Tool Integration: All commands leverage Claude Code CLI's native capabilities:
Safety-First Design:
git add -A
git commit -m "Pre-operation checkpoint" || echo "No changes to commit"
Conversational Interface: Commands use first-person collaborative language ("I'll analyze your code...") rather than imperative commands, creating a natural partnership interaction that improves model performance.
Framework Agnostic: Intelligent detection without hardcoded assumptions enables universal compatibility across technology stacks.
Custom commands appear with a (user) tag in Claude Code CLI to distinguish them from built-in commands. This is normal and indicates your commands are properly installed.
/commit
Smart Git Commit (user) โ Your custom command
/help
Show help โ Built-in command
| Task | Manual Time | With CCPlugins | Time Saved |
|---|---|---|---|
| Security analysis | 45-60 min | 3-5 min | ~50 min |
| Architecture review | 30-45 min | 5-8 min | ~35 min |
| Feature scaffolding | 25-40 min | 2-3 min | ~30 min |
| Git commits | 5-10 min | 30 sec | ~9 min |
| Code cleanup | 20-30 min | 1 min | ~25 min |
| Import fixing | 15-25 min | 1-2 min | ~20 min |
| Code review | 20-30 min | 2-4 min | ~20 min |
| Issue prediction | 60+ min | 5-10 min | ~50 min |
| TODO resolution | 30-45 min | 3-5 min | ~35 min |
| Code adaptation | 40-60 min | 3-5 min | ~45 min |
Total: 4-5 hours saved per week with professional-grade analysis
Create your own commands by adding markdown files to ~/.claude/commands/:
# My Custom Command
I'll help you with your specific workflow.
[Your instructions here]
Commands support arguments via $ARGUMENTS:
/mycommand some-file.js
# $ARGUMENTS will contain "some-file.js"
Use commands in automated workflows:
# Quality pipeline
claude "/security-scan" && claude "/review" && claude "/test"
# Pre-commit validation
claude "/format" && claude "/commit"
# Feature development
claude "/scaffold api-users" && claude "/test"
# Complete workflow
claude "/security-scan" && claude "/create-todos" && claude "/todos-to-issues"
# TODO resolution workflow
claude "/find-todos" && claude "/fix-todos" && claude "/test"
Perfect for development routines:
# Morning routine
claude "/session-start"
claude "/security-scan"
# During development
claude "/scaffold user-management"
claude "/review"
claude "/format"
# End of day
claude "/commit"
claude "/session-end"
All commands that interact with git include security instructions to prevent AI attribution:
Commands with git protection:
/commit, /scaffold, /make-it-pretty, /cleanproject, /fix-imports, /review, /security-scan/contributing, /todos-to-issues, /predict-issues, /find-todos, /create-todos, /fix-todosThese commands will NEVER:
You can modify these instructions in individual command files if needed.
We welcome contributions that help developers save time. See CONTRIBUTING.md for guidelines.
MIT License - see LICENSE file for details. Built by a developer tired of typing "please act like a senior engineer" in every conversation.
Last Updated: August 2, 2025 (Based on Anthropic Claude Code CLI documentation v2025.08.01)
.github/
ISSUE_TEMPLATE/
bug_report.md
feature_request.md
pull_request_template.md
workflows/
test.yml
.gitignore
CHANGELOG.md
commands/
cleanproject.md
commit.md
contributing.md
create-todos.md
docs.md
explain-like-senior.md
find-todos.md
fix-imports.md
fix-todos.md
format.md
implement.md
make-it-pretty.md
predict-issues.md
refactor.md
remove-comments.md
review.md
scaffold.md
security-scan.md
session-end.md
session-start.md
test.md
todos-to-issues.md
understand.md
undo.md
CONTRIBUTING.md
install.py
install.sh
LICENSE
README.md
uninstall.py
uninstall.shFAQ
ccplugins is a Claude Code plugin with hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.