mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
feat: Add native Linux/macOS installation support
- Create Install-Claude.sh for native Bash installation - Update install-remote.sh to call Install-Claude.sh instead of PowerShell - Move installation section to top of README files - Add prominent shell installation instructions for all platforms - Support true cross-platform installation without PowerShell dependency Installation methods: - Windows: PowerShell (install-remote.ps1 + Install-Claude.ps1) - Linux/macOS: Bash (install-remote.sh + Install-Claude.sh) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
35
README.md
35
README.md
@@ -13,6 +13,27 @@
|
||||
|
||||
---
|
||||
|
||||
## ⚙️ Installation
|
||||
|
||||
### 🚀 **Quick Installation via Shell**
|
||||
|
||||
**For PowerShell (Windows):**
|
||||
```powershell
|
||||
Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content
|
||||
```
|
||||
|
||||
**For Bash/Zsh (Linux/macOS):**
|
||||
```bash
|
||||
bash <(curl -fsSL https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.sh)
|
||||
```
|
||||
|
||||
### ✅ **Verify Installation**
|
||||
```bash
|
||||
/workflow:session:list
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📋 Overview
|
||||
|
||||
**Claude Code Workflow (CCW)** is a next-generation multi-agent automation framework for software development that orchestrates complex development tasks through intelligent workflow management and autonomous execution.
|
||||
@@ -584,19 +605,7 @@ Test workflow automatically generates multi-level tests:
|
||||
|
||||
---
|
||||
|
||||
## ⚙️ Installation & Configuration
|
||||
|
||||
### 🚀 **Quick Installation**
|
||||
```powershell
|
||||
Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content
|
||||
```
|
||||
|
||||
### ✅ **Verify Installation**
|
||||
```bash
|
||||
/workflow:session:list
|
||||
```
|
||||
|
||||
### ⚙️ **Essential Configuration**
|
||||
## ⚙️ Essential Configuration
|
||||
|
||||
#### **Gemini CLI Setup**
|
||||
```json
|
||||
|
||||
Reference in New Issue
Block a user