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_CN.md
35
README_CN.md
@@ -13,6 +13,27 @@
|
||||
|
||||
---
|
||||
|
||||
## ⚙️ 安装
|
||||
|
||||
### 🚀 **通过 Shell 快速安装**
|
||||
|
||||
**PowerShell (Windows):**
|
||||
```powershell
|
||||
Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content
|
||||
```
|
||||
|
||||
**Bash/Zsh (Linux/macOS):**
|
||||
```bash
|
||||
bash <(curl -fsSL https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.sh)
|
||||
```
|
||||
|
||||
### ✅ **验证安装**
|
||||
```bash
|
||||
/workflow:session:list
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## 📋 概述
|
||||
|
||||
**Claude Code Workflow (CCW)** 是新一代多智能体自动化开发框架,通过智能工作流管理和自主执行协调复杂的软件开发任务。
|
||||
@@ -277,19 +298,7 @@ graph LR
|
||||
- `related`: 仅更新受近期变更影响的模块
|
||||
- `full`: 完整的项目级文档刷新
|
||||
|
||||
## 安装
|
||||
|
||||
### 快速安装
|
||||
```powershell
|
||||
Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content
|
||||
```
|
||||
|
||||
### 验证安装
|
||||
```bash
|
||||
/workflow:session:list
|
||||
```
|
||||
|
||||
### 必需配置
|
||||
## 必需配置
|
||||
对于Gemini CLI集成,配置您的设置:
|
||||
```json
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user