From 062edb470773879b61de34802584868386e68786 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Tue, 2 Dec 2025 12:36:02 +0100 Subject: [PATCH] docs: add macOS quarantine fix for unsigned binaries --- packages/coding-agent/README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/coding-agent/README.md b/packages/coding-agent/README.md index 95a897ff..8d454b6f 100644 --- a/packages/coding-agent/README.md +++ b/packages/coding-agent/README.md @@ -52,15 +52,21 @@ Extract and run: ```bash # macOS/Linux tar -xzf pi-darwin-arm64.tar.gz -./pi-darwin-arm64 +./pi # Windows unzip pi-windows-x64.zip -pi-windows-x64.exe +pi.exe ``` The archive includes the binary plus supporting files (README, CHANGELOG, themes). Keep them together in the same directory. +**macOS users**: The binary is not signed. macOS will block it on first run. To fix: +```bash +xattr -d com.apple.quarantine ./pi +``` +Or right-click the binary in Finder and select "Open". + ### Build Binary from Source Requires [Bun](https://bun.sh) 1.0+: