Installation
Prerequisites
Section titled “Prerequisites”- Python 3.9+
- Bash 3.2+ (macOS default is fine)
ghCLI (for GitHub operations — optional but recommended)pyyaml(installed automatically with the CLI package)
Recommended: Install with uv
Section titled “Recommended: Install with uv”uv is the fastest way to install OACP:
uv tool install oacp-cliAlternative: Install with pipx
Section titled “Alternative: Install with pipx”If you prefer pipx:
pipx install oacp-cliOne-off Run Without Installing
Section titled “One-off Run Without Installing”You can run OACP commands without a permanent install using uvx:
uvx --from oacp-cli oacp doctorThis downloads the package into a temporary environment, runs the command, and cleans up. Useful for trying OACP before committing to an install.
Install from Source
Section titled “Install from Source”For development or to run the latest unreleased version:
git clone https://github.com/kiloloop/oacp.gitcd oacpuv tool install .Verify the Installation
Section titled “Verify the Installation”Confirm that the CLI is installed and your environment is healthy:
oacp --versionThen run the built-in health check:
oacp doctoroacp doctor verifies that Python, Bash, required packages, and directory permissions are all set up correctly. If anything is misconfigured, it reports what to fix.
Next Steps
Section titled “Next Steps”Once installed, follow the Quick Start to initialize your first project and send a message.