mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Added PyPI v3 setup and readme updates
This commit is contained in:
20
README.md
20
README.md
@@ -1,5 +1,7 @@
|
||||
# SuperClaude v3 🚀
|
||||
[](https://opensource.org/licenses/MIT)
|
||||
[](https://pypi.org/project/SuperClaude/)
|
||||
|
||||
[](https://github.com/NomenAK/SuperClaude)
|
||||
[](https://github.com/NomenAK/SuperClaude/issues)
|
||||
[](https://github.com/NomenAK/SuperClaude/blob/master/CONTRIBUTING.md)
|
||||
@@ -91,16 +93,22 @@ This is because v3 has a different structure and the old files can cause conflic
|
||||
|
||||
### Quick Start
|
||||
```bash
|
||||
pip install SuperClaude
|
||||
#Install with python-pip
|
||||
```
|
||||
### Install via Git
|
||||
```bash
|
||||
# Clone the repo
|
||||
git clone https://github.com/NomenAK/SuperClaude.git
|
||||
cd SuperClaude
|
||||
|
||||
# Install with our unified CLI
|
||||
python3 SuperClaude.py install --quick
|
||||
pip install .
|
||||
|
||||
# That's it! 🎉
|
||||
```
|
||||
|
||||
|
||||
**Missing Python?**
|
||||
```bash
|
||||
# Linux (Ubuntu/Debian)
|
||||
@@ -116,16 +124,16 @@ brew install python3
|
||||
### Other Installation Options
|
||||
```bash
|
||||
# Minimal install (just core framework)
|
||||
python3 SuperClaude.py install --minimal
|
||||
python3 SuperClaude install --minimal
|
||||
|
||||
# Developer setup (everything)
|
||||
python3 SuperClaude.py install --profile developer
|
||||
python3 SuperClaude install --profile developer
|
||||
|
||||
# Interactive selection
|
||||
python3 SuperClaude.py install
|
||||
python3 SuperClaude install
|
||||
|
||||
# See what's available
|
||||
python3 SuperClaude.py install --list-components
|
||||
python3 SuperClaude install --list-components
|
||||
```
|
||||
|
||||
The installer handles everything: framework files, MCP servers, and Claude Code configuration.
|
||||
@@ -186,7 +194,7 @@ The codebase is pretty straightforward Python + documentation files.
|
||||
|
||||
```
|
||||
SuperClaude/
|
||||
├── SuperClaude.py # Main installer CLI
|
||||
├── setup.py # pypi setup file
|
||||
├── SuperClaude/ # Framework files
|
||||
│ ├── Core/ # Behavior documentation (COMMANDS.md, FLAGS.md, etc.)
|
||||
│ ├── Commands/ # 16 slash command definitions
|
||||
|
||||
Reference in New Issue
Block a user