Files
ccpm-claude-code-pm/install/README.md
Ran Aroussi e0bd3b9d87 Create README.md with quick install guide
Added installation instructions for Unix/Linux/macOS and Windows.
2025-08-27 20:44:09 +01:00

875 B

Quick Install

Unix/Linux/macOS

curl -sSL https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash

Or with wget:

wget -qO- https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.sh | bash

Windows (PowerShell)

iwr -useb https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.bat | iex

Or download and execute:

curl -o ccpm.bat https://raw.githubusercontent.com/automazeio/ccpm/main/ccpm.bat && ccpm.bat

One-liner alternatives

Unix/Linux/macOS (direct commands)

git clone https://github.com/automazeio/ccpm.git . && rm -rf .git

Windows (cmd)

git clone https://github.com/automazeio/ccpm.git . && rmdir /s /q .git

Windows (PowerShell)

git clone https://github.com/automazeio/ccpm.git .; Remove-Item -Recurse -Force .git