diff --git a/README.md b/README.md index 6c517bf4..7d745b89 100644 --- a/README.md +++ b/README.md @@ -64,27 +64,27 @@ CCW intelligently adapts its file structure and workflow processes based on task ```powershell # PowerShell (Windows/Linux/macOS) -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content ``` **With parameters:** ```powershell # Global installation -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Global" } +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Global" } # Custom directory installation -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Directory 'C:\MyCustomPath'" } +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Directory 'C:\MyCustomPath'" } # Force installation (overwrites existing) -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Force" } +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Force" } ``` ### Manual Installation 1. Clone this repository: ```bash -git clone https://github.com/catlog22/Claude-CCW.git -cd Claude-CCW +git clone https://github.com/catlog22/Claude-Code-Workflow.git +cd Claude-Code-Workflow ``` 2. Run the local installer: diff --git a/README_CN.md b/README_CN.md index c5e94d54..bb195d63 100644 --- a/README_CN.md +++ b/README_CN.md @@ -64,27 +64,27 @@ CCW 根据任务复杂度智能调整其文件结构和工作流程: ```powershell # PowerShell (Windows/Linux/macOS) -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content ``` **带参数安装:** ```powershell # 全局安装 -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Global" } +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Global" } # 自定义目录安装 -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Directory 'C:\MyCustomPath'" } +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Directory 'C:\MyCustomPath'" } # 强制安装(覆盖现有文件) -Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-CCW/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Force" } +Invoke-Expression (Invoke-WebRequest -Uri "https://raw.githubusercontent.com/catlog22/Claude-Code-Workflow/main/install-remote.ps1" -UseBasicParsing).Content | ForEach-Object { iex "$_ -Force" } ``` ### 手动安装 1. 克隆此仓库: ```bash -git clone https://github.com/catlog22/Claude-CCW.git -cd Claude-CCW +git clone https://github.com/catlog22/Claude-Code-Workflow.git +cd Claude-Code-Workflow ``` 2. 运行本地安装脚本: diff --git a/install-remote.ps1 b/install-remote.ps1 index c9c6c9c6..14e7cfcb 100644 --- a/install-remote.ps1 +++ b/install-remote.ps1 @@ -84,7 +84,7 @@ function Download-Repository { [string]$Branch = "main" ) - $repoUrl = "https://github.com/catlog22/Claude-CCW" + $repoUrl = "https://github.com/catlog22/Claude-Code-Workflow" $zipUrl = "$repoUrl/archive/refs/heads/$Branch.zip" $zipPath = Join-Path $TempDir "repo.zip" @@ -129,7 +129,7 @@ function Extract-Repository { # Find the extracted directory (usually repo-name-branch) $extractedDirs = Get-ChildItem -Path $TempDir -Directory - $repoDir = $extractedDirs | Where-Object { $_.Name -like "Claude-CCW-*" } | Select-Object -First 1 + $repoDir = $extractedDirs | Where-Object { $_.Name -like "Claude-Code-Workflow-*" } | Select-Object -First 1 if ($repoDir) { Write-ColorOutput "Extraction complete: $($repoDir.FullName)" $ColorSuccess @@ -242,7 +242,7 @@ function Main { Write-Host "" Write-ColorOutput "SECURITY NOTE:" $ColorWarning Write-Host "- This script will download and execute Claude Code Workflow from GitHub" - Write-Host "- Repository: https://github.com/catlog22/Claude-CCW" + Write-Host "- Repository: https://github.com/catlog22/Claude-Code-Workflow" Write-Host "- Branch: $Branch (latest stable version)" Write-Host "- Features: Intelligent workflow orchestration with multi-agent coordination" Write-Host "- Please ensure you trust this source"