From 528de938c5e5ae56756261d4cd9fd0bff9601ff5 Mon Sep 17 00:00:00 2001 From: Alan Wizemann Date: Tue, 31 Mar 2026 15:30:50 -0400 Subject: [PATCH] Add pre-built binary install instructions to README Universal binary (arm64 + x86_64) available on Releases page. Updated Building section to Install with download + build options. Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 39990d0..b24c08e 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,17 @@ Scarf reads Hermes's SQLite database (schema v6) and parses CLI output from `her If a Hermes update changes the database schema or CLI output format, Scarf may need to be updated. Check the [Health](#features) view for compatibility warnings. -## Building +## Install + +### Pre-built Binary (no Xcode required) + +Download the latest universal binary (Apple Silicon + Intel) from [Releases](https://github.com/awizemann/scarf/releases): + +1. Download `Scarf-vX.X.X-Universal.zip` +2. Unzip and drag **Scarf.app** to Applications +3. On first launch, right-click and choose **Open** (or go to System Settings → Privacy & Security → Open Anyway) + +### Build from Source ```bash git clone https://github.com/awizemann/scarf.git @@ -61,7 +71,7 @@ open scarf.xcodeproj Or from the command line: ```bash -xcodebuild -project scarf/scarf.xcodeproj -scheme scarf -configuration Debug build +xcodebuild -project scarf/scarf.xcodeproj -scheme scarf -configuration Release -arch arm64 -arch x86_64 ONLY_ACTIVE_ARCH=NO build ``` ## Architecture