From 9b2588cff520068b1569c371be5697d5a939ee9f Mon Sep 17 00:00:00 2001 From: uroma Date: Thu, 22 Jan 2026 19:03:36 +0000 Subject: [PATCH] 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 --- README.md | 42 ++++++++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 43b6f47..39a78ce 100644 --- a/README.md +++ b/README.md @@ -8,44 +8,50 @@ [![License](https://img.shields.io/badge/License-MIT-purple)](LICENSE) [![Gitea](https://img.shields.io/badge/Platform-Gitea-red)](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. ---