mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Update installation-guide.md
Added new installation process doc Signed-off-by: Mithun Gowda B <mithungowda.b7411@gmail.com>
This commit is contained in:
@@ -29,6 +29,48 @@ SuperClaude install
|
|||||||
|
|
||||||
# That's it! 🎉
|
# That's it! 🎉
|
||||||
```
|
```
|
||||||
|
### Option C: From npm (Global, after publishing)
|
||||||
|
```bash
|
||||||
|
npm install -g superclaude
|
||||||
|
superclaude --help
|
||||||
|
```
|
||||||
|
- Requires package to be published on npmjs.org.
|
||||||
|
- Installs the npm wrapper and sets up SuperClaude via pip.
|
||||||
|
|
||||||
|
### Option D: From npm (Local Project)
|
||||||
|
```bash
|
||||||
|
npm install superclaude
|
||||||
|
npx superclaude --help
|
||||||
|
```
|
||||||
|
- Installs SuperClaude wrapper inside your project.
|
||||||
|
- Use `npx` to run it locally.
|
||||||
|
- Also requires publishing to npmjs.org.
|
||||||
|
|
||||||
|
### Option E: From GitHub (Works without npm publish)
|
||||||
|
```bash
|
||||||
|
# Global install directly from GitHub
|
||||||
|
yarn global add github:SuperClaude-Org/SuperClaude_Framework
|
||||||
|
# or
|
||||||
|
npm install -g github:SuperClaude-Org/SuperClaude_Framework
|
||||||
|
|
||||||
|
superclaude --help
|
||||||
|
```
|
||||||
|
```bash
|
||||||
|
# Local project install from GitHub
|
||||||
|
npm install github:SuperClaude-Org/SuperClaude_Framework
|
||||||
|
npx superclaude --help
|
||||||
|
```
|
||||||
|
- Works immediately without publishing to npm registry.
|
||||||
|
|
||||||
|
### Option F: With npx (No Install Needed)
|
||||||
|
```bash
|
||||||
|
npx superclaude --help
|
||||||
|
```
|
||||||
|
- Runs SuperClaude instantly.
|
||||||
|
- First run may install Python package via pip.
|
||||||
|
- Subsequent runs skip reinstallation unless explicitly updated.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
**What you just got:**
|
**What you just got:**
|
||||||
- ✅ 21 intelligent commands that auto-activate specialized capabilities
|
- ✅ 21 intelligent commands that auto-activate specialized capabilities
|
||||||
@@ -479,4 +521,4 @@ Thanks for trying SuperClaude! We hope it makes your development workflow smooth
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
*Last updated: August 2025 - Let us know if anything in this guide is wrong or confusing!*
|
*Last updated: August 2025 - Let us know if anything in this guide is wrong or confusing!*
|
||||||
|
|||||||
Reference in New Issue
Block a user