2025-07-14 14:28:11 +02:00
|
|
|
# SuperClaude v3 🚀
|
2025-07-14 19:14:28 +05:30
|
|
|
[](https://opensource.org/licenses/MIT)
|
|
|
|
|
[](https://github.com/NomenAK/SuperClaude)
|
|
|
|
|
[](https://github.com/NomenAK/SuperClaude/issues)
|
|
|
|
|
[](https://github.com/NomenAK/SuperClaude/blob/master/CONTRIBUTING.md)
|
|
|
|
|
[](https://github.com/NomenAK/SuperClaude/graphs/contributors)
|
2025-07-14 14:28:11 +02:00
|
|
|
|
2025-07-14 16:33:03 +02:00
|
|
|
A framework that extends Claude Code with specialized commands, personas, and MCP server integration.
|
2025-07-14 14:28:11 +02:00
|
|
|
|
|
|
|
|
**📢 Status**: Initial release, fresh out of beta! Bugs may occur as we continue improving things.
|
|
|
|
|
|
|
|
|
|
## What is SuperClaude? 🤔
|
|
|
|
|
|
|
|
|
|
SuperClaude extends Claude Code with:
|
|
|
|
|
- 🛠️ **15 specialized commands** for development, analysis, and quality tasks
|
|
|
|
|
- 🎭 **Smart personas** that adapt behavior for different domains (frontend, security, architecture, etc.)
|
|
|
|
|
- 🔧 **MCP server integration** for documentation lookup, UI components, and browser automation
|
|
|
|
|
- 📋 **Enhanced task management** with progress tracking and validation
|
|
|
|
|
- ⚡ **Token optimization** for more efficient conversations
|
|
|
|
|
|
2025-07-14 16:33:03 +02:00
|
|
|
This is what we've been working on to make Claude Code more helpful for development workflows.
|
2025-07-14 14:28:11 +02:00
|
|
|
|
|
|
|
|
## Current Status 📊
|
|
|
|
|
|
|
|
|
|
✅ **What's Working Well:**
|
2025-07-14 16:33:03 +02:00
|
|
|
- Installation suite (rewritten from the ground up)
|
2025-07-14 14:28:11 +02:00
|
|
|
- Core framework with 9 documentation files
|
|
|
|
|
- 15 slash commands for various development tasks
|
|
|
|
|
- MCP server integration (Context7, Sequential, Magic, Playwright)
|
2025-07-14 16:33:03 +02:00
|
|
|
- Unified CLI installer for easy setup
|
2025-07-14 14:28:11 +02:00
|
|
|
|
|
|
|
|
⚠️ **Known Issues:**
|
|
|
|
|
- This is an initial release - bugs are expected
|
|
|
|
|
- Some features may not work perfectly yet
|
|
|
|
|
- Documentation is still being improved
|
|
|
|
|
- Hooks system was removed (coming back in v4)
|
|
|
|
|
|
|
|
|
|
## Key Features ✨
|
|
|
|
|
|
|
|
|
|
### Commands 🛠️
|
2025-07-14 16:33:03 +02:00
|
|
|
We focused on 15 essential commands for the most common tasks:
|
2025-07-14 14:28:11 +02:00
|
|
|
|
|
|
|
|
**Development**: `/build`, `/dev-setup`
|
|
|
|
|
**Analysis**: `/analyze`, `/review`, `/troubleshoot`
|
|
|
|
|
**Quality**: `/improve`, `/scan`, `/test`
|
|
|
|
|
**Others**: `/document`, `/deploy`, `/git`, `/migrate`, `/estimate`, `/task`, `/design`
|
|
|
|
|
|
|
|
|
|
### Smart Personas 🎭
|
|
|
|
|
Auto-activating specialists that adapt Claude's behavior:
|
|
|
|
|
- 🏗️ **architect** - Systems design and architecture
|
|
|
|
|
- 🎨 **frontend** - UI/UX and accessibility
|
|
|
|
|
- ⚙️ **backend** - APIs and infrastructure
|
|
|
|
|
- 🔍 **analyzer** - Investigation and root cause analysis
|
|
|
|
|
- 🛡️ **security** - Threat modeling and vulnerabilities
|
|
|
|
|
- ✍️ **scribe** - Documentation and technical writing
|
|
|
|
|
- *...and 5 more*
|
|
|
|
|
|
|
|
|
|
### MCP Integration 🔧
|
|
|
|
|
Specialized servers for different tasks:
|
|
|
|
|
- **Context7** - Official library documentation and patterns
|
|
|
|
|
- **Sequential** - Complex multi-step analysis and reasoning
|
|
|
|
|
- **Magic** - Modern UI component generation
|
|
|
|
|
- **Playwright** - Browser automation and E2E testing
|
|
|
|
|
|
2025-07-14 16:33:03 +02:00
|
|
|
## ⚠️ Upgrading from v2? Important!
|
|
|
|
|
|
|
|
|
|
If you're coming from SuperClaude v2, you'll need to clean up first:
|
|
|
|
|
|
|
|
|
|
1. **Uninstall v2** using its uninstaller if available
|
|
|
|
|
2. **Manual cleanup** - delete these if they exist:
|
|
|
|
|
- `~/.claude/shared/`
|
|
|
|
|
- `~/.claude/commands/`
|
|
|
|
|
- `~/.claude/CLAUDE.md`
|
|
|
|
|
3. **Then proceed** with v3 installation below
|
|
|
|
|
|
|
|
|
|
This is because v3 has a different structure and the old files can cause conflicts.
|
|
|
|
|
|
2025-07-14 14:28:11 +02:00
|
|
|
## Installation 📦
|
|
|
|
|
|
|
|
|
|
### Quick Start
|
|
|
|
|
```bash
|
|
|
|
|
# Clone the repo
|
|
|
|
|
git clone <repository-url>
|
|
|
|
|
cd SuperClaude
|
|
|
|
|
|
|
|
|
|
# Install with our unified CLI
|
|
|
|
|
python3 SuperClaude.py install --quick
|
|
|
|
|
|
|
|
|
|
# That's it! 🎉
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Other Installation Options
|
|
|
|
|
```bash
|
|
|
|
|
# Minimal install (just core framework)
|
|
|
|
|
python3 SuperClaude.py install --minimal
|
|
|
|
|
|
|
|
|
|
# Developer setup (everything)
|
|
|
|
|
python3 SuperClaude.py install --profile developer
|
|
|
|
|
|
|
|
|
|
# Interactive selection
|
|
|
|
|
python3 SuperClaude.py install
|
|
|
|
|
|
|
|
|
|
# See what's available
|
|
|
|
|
python3 SuperClaude.py install --list-components
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The installer handles everything: framework files, MCP servers, and Claude Code configuration.
|
|
|
|
|
|
|
|
|
|
## How It Works 🔄
|
|
|
|
|
|
|
|
|
|
SuperClaude enhances Claude Code through:
|
|
|
|
|
|
|
|
|
|
1. **Framework Files** - Core documentation installed to `~/.claude/` that guides Claude's behavior
|
|
|
|
|
2. **Slash Commands** - 15 specialized commands for different development tasks
|
|
|
|
|
3. **MCP Servers** - External services that add capabilities like documentation lookup and UI generation
|
|
|
|
|
4. **Smart Routing** - Automatic selection of tools and personas based on your requests
|
|
|
|
|
|
|
|
|
|
Everything is designed to work seamlessly with Claude Code's existing functionality.
|
|
|
|
|
|
|
|
|
|
## What's Coming in v4 🔮
|
|
|
|
|
|
|
|
|
|
We're working on the next version which will include:
|
|
|
|
|
- **Hooks System** - Event-driven enhancements (removed from v3, being redesigned)
|
|
|
|
|
- **MCP Suite** - Expanded server ecosystem
|
|
|
|
|
- **Better Performance** - Faster response times and smarter caching
|
|
|
|
|
- **More Personas** - Additional domain specialists
|
|
|
|
|
- **Cross-CLI Support** - Work with other AI coding assistants
|
|
|
|
|
|
|
|
|
|
## Configuration ⚙️
|
|
|
|
|
|
|
|
|
|
After installation, you can customize SuperClaude by editing:
|
|
|
|
|
- `~/.claude/settings.json` - Main configuration
|
|
|
|
|
- `~/.claude/*.md` - Framework behavior files
|
|
|
|
|
|
|
|
|
|
Most users won't need to change anything - it works well out of the box.
|
|
|
|
|
|
2025-07-14 16:33:03 +02:00
|
|
|
## Documentation 📖
|
|
|
|
|
|
|
|
|
|
Want to learn more? Check out our guides:
|
|
|
|
|
|
|
|
|
|
- 📚 [**User Guide**](Docs/superclaude-user-guide.md) - Complete overview and getting started
|
|
|
|
|
- 🛠️ [**Commands Guide**](Docs/commands-guide.md) - All 15 slash commands explained
|
|
|
|
|
- 🏳️ [**Flags Guide**](Docs/flags-guide.md) - Command flags and options
|
|
|
|
|
- 🎭 [**Personas Guide**](Docs/personas-guide.md) - Understanding the persona system
|
|
|
|
|
- 📦 [**Installation Guide**](Docs/installation-guide.md) - Detailed installation instructions
|
|
|
|
|
|
|
|
|
|
These guides have more details than this README and are kept up to date.
|
|
|
|
|
|
2025-07-14 14:28:11 +02:00
|
|
|
## Contributing 🤝
|
|
|
|
|
|
|
|
|
|
We welcome contributions! Areas where we could use help:
|
|
|
|
|
- 🐛 **Bug Reports** - Let us know what's broken
|
|
|
|
|
- 📝 **Documentation** - Help us explain things better
|
|
|
|
|
- 🧪 **Testing** - More test coverage for different setups
|
|
|
|
|
- 💡 **Ideas** - Suggestions for new features or improvements
|
|
|
|
|
|
|
|
|
|
The codebase is pretty straightforward Python + documentation files.
|
|
|
|
|
|
|
|
|
|
## Project Structure 📁
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
SuperClaude/
|
|
|
|
|
├── SuperClaude.py # Main installer CLI
|
|
|
|
|
├── SuperClaude/ # Framework files
|
|
|
|
|
│ ├── Core/ # Behavior documentation (COMMANDS.md, FLAGS.md, etc.)
|
|
|
|
|
│ ├── Commands/ # 15 slash command definitions
|
|
|
|
|
│ └── Settings/ # Configuration files
|
|
|
|
|
├── setup/ # Installation system
|
|
|
|
|
└── profiles/ # Installation profiles (quick, minimal, developer)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Architecture Notes 🏗️
|
|
|
|
|
|
|
|
|
|
The v3 architecture focuses on:
|
|
|
|
|
- **Simplicity** - Removed complexity that wasn't adding value
|
|
|
|
|
- **Reliability** - Better installation and fewer breaking changes
|
|
|
|
|
- **Modularity** - Pick only the components you want
|
|
|
|
|
- **Performance** - Faster operations with smarter caching
|
|
|
|
|
|
2025-07-14 16:33:03 +02:00
|
|
|
We learned a lot from v2 and tried to address the main pain points.
|
2025-07-14 14:28:11 +02:00
|
|
|
|
|
|
|
|
## FAQ 🙋
|
|
|
|
|
|
|
|
|
|
**Q: Why was the hooks system removed?**
|
|
|
|
|
A: It was getting complex and buggy. We're redesigning it properly for v4.
|
|
|
|
|
|
|
|
|
|
**Q: Does this work with other AI assistants?**
|
|
|
|
|
A: Currently Claude Code only, but v4 will have broader compatibility.
|
|
|
|
|
|
|
|
|
|
**Q: Is this stable enough for daily use?**
|
|
|
|
|
A: The core features work well, but expect some rough edges since it's a fresh release.
|
|
|
|
|
|
2025-07-14 19:14:28 +05:30
|
|
|
## SuperClaude Contributors
|
2025-07-14 14:28:11 +02:00
|
|
|
|
2025-07-14 19:14:28 +05:30
|
|
|
[](https://github.com/NomenAK/SuperClaude/graphs/contributors)
|
2025-07-14 14:28:11 +02:00
|
|
|
|
2025-07-14 19:14:28 +05:30
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
MIT - [See LICENSE file for details](https://opensource.org/licenses/MIT)
|
|
|
|
|
|
|
|
|
|
## Star History
|
|
|
|
|
|
|
|
|
|
<a href="https://www.star-history.com/#NomenAK/SuperClaude&Date">
|
|
|
|
|
<picture>
|
|
|
|
|
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=NomenAK/SuperClaude&type=Date&theme=dark" />
|
|
|
|
|
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=NomenAK/SuperClaude&type=Date" />
|
|
|
|
|
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=NomenAK/SuperClaude&type=Date" />
|
|
|
|
|
</picture>
|
|
|
|
|
</a>
|
2025-07-14 14:28:11 +02:00
|
|
|
---
|
|
|
|
|
|
2025-07-14 19:14:28 +05:30
|
|
|
*Built by developers, for developers. We hope you find it useful! 🙂*
|
|
|
|
|
|
|
|
|
|
---
|