mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
Update repository name to Claude-Code-Workflow across all files
- Changed remote repository URL from Claude-CCW to Claude-Code-Workflow - Updated all GitHub links in README.md and README_CN.md - Updated repository references in install-remote.ps1 script - Maintained consistent naming convention (CCW) throughout documentation - Repository now accessible at github.com/catlog22/Claude-Code-Workflow 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user