Update installation script URLs in README files

- Changed installation script URLs from GitHub raw links to direct links at automaze.io for improved reliability.
- Updated both English and Chinese README files to reflect the new URLs.
- Ensured consistency across Unix/Linux/macOS and Windows installation instructions.

This change enhances the user experience by providing a more stable source for installation scripts.

🤖 Generated with [Claude Code](https://claude.ai/code)
This commit is contained in:
Ran Aroussi
2025-09-24 15:07:50 +01:00
parent 3d444f0aaa
commit a6817d39a3
3 changed files with 11 additions and 11 deletions

View File

@@ -390,14 +390,14 @@ Teams using this system report:
```bash
cd path/to/your/project/
curl -sSL https://raw.githubusercontent.com/automazeio/ccpm/main/install/ccpm.sh | bash
# or: wget -qO- https://raw.githubusercontent.com/automazeio/ccpm/main/install/ccpm.sh | bash
curl -sSL https://automaze.io/ccpm | bash
# or: wget -qO- https://automaze.io/ccpm | bash
```
#### Windows (PowerShell)
```bash
cd path/to/your/project/
iwr -useb https://raw.githubusercontent.com/automazeio/ccpm/main/install/ccpm.bat | iex
iwr -useb https://automaze.io/ccpm | iex
```
> ⚠️ **IMPORTANT**: If you already have a `.claude` directory, clone this repository to a different directory and copy the contents of the cloned `.claude` directory to your project's `.claude` directory.

View File

@@ -388,14 +388,14 @@ GitHub无需知道工作是如何完成的——只需知道工作已完成。
```bash
cd path/to/your/project/
curl -sSL https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash
# 或wget -qO- https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash
curl -sSL https://automaze.io/ccpm | bash
# 或wget -qO- https://automaze.io/ccpm | bash
```
#### WindowsPowerShell
```bash
cd path/to/your/project/
iwr -useb https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.bat | iex
iwr -useb https://automaze.io/ccpm | iex
```
> ⚠️ **重要**:如果你已有`.claude`目录,请将此仓库克隆到不同目录,然后将克隆的`.claude`目录内容复制到你项目的`.claude`目录中。
@@ -487,4 +487,4 @@ Claude Code PM由[Automaze](https://automaze.io)开发,**为交付产品的开
## 点赞历史
![点赞历史图表](https://api.star-history.com/svg?repos=automazeio/ccpm)
![点赞历史图表](https://api.star-history.com/svg?repos=automazeio/ccpm)

View File

@@ -3,25 +3,25 @@
## Unix/Linux/macOS
```bash
curl -sSL https://raw.githubusercontent.com/automazeio/ccpm/main/install/ccpm.sh | bash
curl -sSL https://automaze.io/ccpm | bash
```
Or with wget:
```bash
wget -qO- https://raw.githubusercontent.com/automazeio/ccpm/main/install/ccpm.sh | bash
wget -qO- https://automaze.io/ccpm | bash
```
## Windows (PowerShell)
```powershell
iwr -useb https://raw.githubusercontent.com/automazeio/ccpm/main/install/ccpm.bat | iex
iwr -useb https://automaze.io/ccpm | iex
```
Or download and execute:
```powershell
curl -o ccpm.bat https://raw.githubusercontent.com/automazeio/ccpm/main/install/ccpm.bat && ccpm.bat
curl -o ccpm.bat https://automaze.io/ccpm && ccpm.bat
```
## One-liner alternatives