Fix installation instructions - one-line curl install doesn't work
- Remove broken one-line curl install commands - Add proper git clone + run installer instructions - Add clear explanation that repo must be cloned first - Fix Windows WSL and Git Bash instructions - Add warning about curl in PowerShell The installer script needs access to files in the repository (skills/, agents/, hooks/, etc.) so one-line piping won't work. Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
42
README.md
42
README.md
@@ -8,44 +8,50 @@
|
||||
[](LICENSE)
|
||||
[](https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade)
|
||||
|
||||
## ⚡ Quick One-Liners
|
||||
## ⚡ Quick Installation
|
||||
|
||||
### Linux / macOS (Bash)
|
||||
```bash
|
||||
# 🎯 SuperCharge Claude Code (all customizations)
|
||||
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash
|
||||
# Clone the repository
|
||||
git clone https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade.git
|
||||
cd SuperCharged-Claude-Code-Upgrade
|
||||
|
||||
# 🔧 Install Claude Code + Z.AI API
|
||||
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash
|
||||
|
||||
# 📖 Show manual instructions (no installation)
|
||||
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/install-claude-code.sh | bash -s -- --manual
|
||||
# 🎯 Run the installer
|
||||
./supercharge.sh
|
||||
```
|
||||
|
||||
### Windows Installation Options
|
||||
|
||||
#### Option 1: WSL (Windows Subsystem for Linux) - **Recommended**
|
||||
```powershell
|
||||
# Open PowerShell or Command Prompt, then run:
|
||||
wsl bash -c "curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash"
|
||||
# Clone and run in WSL
|
||||
wsl bash -c "git clone https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade.git && cd SuperCharged-Claude-Code-Upgrade && ./supercharge.sh"
|
||||
```
|
||||
|
||||
#### Option 2: Git Bash
|
||||
```bash
|
||||
# Open Git Bash and run:
|
||||
curl -fsSL https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh | bash
|
||||
# Clone the repository
|
||||
git clone https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade.git
|
||||
cd SuperCharged-Claude-Code-Upgrade
|
||||
|
||||
# Run the installer
|
||||
./supercharge.sh
|
||||
```
|
||||
|
||||
#### Option 3: Download & Run
|
||||
#### Option 3: Manual Download
|
||||
```powershell
|
||||
# Download the script
|
||||
Invoke-WebRequest -Uri "https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/raw/main/supercharge.sh" -OutFile "supercharge.sh"
|
||||
# 1. Download and extract the ZIP from:
|
||||
# https://github.rommark.dev/admin/SuperCharged-Claude-Code-Upgrade/archive/refs/heads/main.zip
|
||||
|
||||
# Run in WSL
|
||||
wsl bash supercharge.sh
|
||||
# 2. Open WSL and navigate to extracted folder
|
||||
wsl
|
||||
|
||||
# 3. Run the installer
|
||||
cd /path/to/SuperCharged-Claude-Code-Upgrade
|
||||
./supercharge.sh
|
||||
```
|
||||
|
||||
> **⚠️ Important:** Do NOT run curl commands directly in PowerShell. The syntax is different. Use WSL or Git Bash for bash commands.
|
||||
> **⚠️ Important:** The installer requires access to files in the repository (skills, agents, hooks, etc.). One-line curl installs won't work - you must clone the full repository first.
|
||||
|
||||
---
|
||||
|
||||
|
||||
Reference in New Issue
Block a user