From de1a199d0ab25992c2aa80bb707e9a6e1b2dabd6 Mon Sep 17 00:00:00 2001 From: jbcom-bot Date: Mon, 24 Aug 2026 21:53:36 +0000 Subject: [PATCH] chore: update radioactive-ralph packages to 0.35.6 --- Casks/radioactive-ralph-gui.rb | 38 ++++++++++++++++++++++++++ Casks/radioactive-ralph.rb | 50 ++++++++++++++++++++++++++++++++++ bucket/radioactive-ralph.json | 18 ++++++------ 3 files changed, 97 insertions(+), 9 deletions(-) create mode 100644 Casks/radioactive-ralph-gui.rb create mode 100644 Casks/radioactive-ralph.rb diff --git a/Casks/radioactive-ralph-gui.rb b/Casks/radioactive-ralph-gui.rb new file mode 100644 index 0000000..6bbeae3 --- /dev/null +++ b/Casks/radioactive-ralph-gui.rb @@ -0,0 +1,38 @@ +cask "radioactive-ralph-gui" do + version "0.35.6" + + on_arm do + sha256 "bfb91101a7114f2053cca5421bd5ee8b75d87c5708395e356b4b2befe994da0c" + url "https://github.com/jbcom/radioactive-ralph/releases/download/v#{version}/radioactive-ralph_#{version}_darwin_arm64.dmg" + end + on_intel do + sha256 "498d3a3035655a109c4df1f2649fe63b0a72ff6538e6cfb87667a4a568e72303" + url "https://github.com/jbcom/radioactive-ralph/releases/download/v#{version}/radioactive-ralph_#{version}_darwin_amd64.dmg" + end + + name "radioactive-ralph" + desc "Supervised-execution runtime for local AI-agent CLIs" + homepage "https://github.com/jbcom/radioactive-ralph" + + app "radioactive-ralph.app" + + # The app is ad-hoc signed (free, no Apple Developer cert), so Gatekeeper + # would quarantine it on first launch. Strip the quarantine attribute after + # install so it opens cleanly — the standard OSS-cask approach for an + # un-notarized app. (Homebrew does NOT remove quarantine by default.) + postflight do + system_command "/usr/bin/xattr", + args: ["-dr", "com.apple.quarantine", "#{appdir}/radioactive-ralph.app"], + sudo: false + end + + caveats <<~EOS + Install the CLI cask, start the supervisor, and register a project: + + brew install --cask radioactive-ralph + radioactive_ralph service install + cd /path/to/repo && radioactive_ralph --init + + The desktop app and the terminal UI are peers on the same local supervisor. + EOS +end diff --git a/Casks/radioactive-ralph.rb b/Casks/radioactive-ralph.rb new file mode 100644 index 0000000..04b4706 --- /dev/null +++ b/Casks/radioactive-ralph.rb @@ -0,0 +1,50 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +cask "radioactive-ralph" do + version "0.35.6" + + on_macos do + on_intel do + sha256 "6052a41f4784a847c5601c730d634a443203a17d5f8e4de9615ed5207b67ab69" + url "https://github.com/jbcom/radioactive-ralph/releases/download/v#{version}/radioactive_ralph_#{version}_darwin_amd64.tar.gz" + end + on_arm do + sha256 "bf8c80c093b9856d76fca142ce8fa936c74733f60a3823f601394099ee91331b" + url "https://github.com/jbcom/radioactive-ralph/releases/download/v#{version}/radioactive_ralph_#{version}_darwin_arm64.tar.gz" + end + end + + on_linux do + on_intel do + sha256 "c781655efb0df54f53ac750c8751d7296922dfb1b97c261f40671048e4cdda3e" + url "https://github.com/jbcom/radioactive-ralph/releases/download/v#{version}/radioactive_ralph_#{version}_linux_amd64.tar.gz" + end + on_arm do + sha256 "691027809962c0ea9d62da0a8fc75692e39370ebbf2b627e24ec0e0e346915f0" + url "https://github.com/jbcom/radioactive-ralph/releases/download/v#{version}/radioactive_ralph_#{version}_linux_arm64.tar.gz" + end + end + + name "radioactive-ralph" + desc "Supervised-execution runtime for local AI-agent CLIs" + homepage "https://github.com/jbcom/radioactive-ralph" + + livecheck do + skip "Auto-generated on release." + end + + binary "radioactive_ralph" + + # No zap stanza required + + caveats <<~EOS + Next step — start the supervisor, then register a project: + + radioactive_ralph service install + radioactive_ralph --init + + Run `radioactive_ralph` inside a registered project for the + read-only TUI once the supervisor is running. Full docs: + + https://jonbogaty.com/radioactive-ralph/getting-started/ + EOS +end diff --git a/bucket/radioactive-ralph.json b/bucket/radioactive-ralph.json index 4481ebd..ec867b1 100644 --- a/bucket/radioactive-ralph.json +++ b/bucket/radioactive-ralph.json @@ -1,22 +1,22 @@ { - "version": "0.8.2", + "version": "0.35.6", "architecture": { "64bit": { - "url": "https://github.com/jbcom/radioactive-ralph/releases/download/v0.8.2/radioactive_ralph_0.8.2_windows_amd64.zip", + "url": "https://github.com/jbcom/radioactive-ralph/releases/download/v0.35.6/radioactive_ralph_0.35.6_windows_amd64.zip", "bin": [ "radioactive_ralph.exe" ], - "hash": "25b629c2f384da7c2b6fc7ef81018fe557d81485920b3c532e69e57daa378375" + "hash": "3f0481d3c228ffbad272c9d66c4210c9f66dad7c91eab4ef80eb78d37c4503f5" } }, "homepage": "https://github.com/jbcom/radioactive-ralph", "license": "MIT", - "description": "Binary-first repo runtime with many Ralph personalities", + "description": "Native Windows foreground supervisor/client control plane only", "post_install": [ - "Write-Host 'Next step — initialize a repo and let Fixit seed the first plan:'", - "Write-Host ' radioactive_ralph init'", - "Write-Host ' radioactive_ralph run --variant fixit --advise --topic bootstrap'", - "Write-Host ' radioactive_ralph service start'", - "Write-Host 'See https://jonbogaty.com/radioactive-ralph/getting-started/ for the full setup flow.'" + "Write-Host 'Native Windows provides only the foreground supervisor/client control plane:'", + "Write-Host ' radioactive_ralph --supervisor'", + "Write-Host 'Native Windows SCM install/start and provider-backed workers are disabled.'", + "Write-Host 'For provider-backed execution, install the Linux build inside WSL2 and use systemd --user.'", + "Write-Host 'See https://jonbogaty.com/radioactive-ralph/getting-started/ for the full platform-specific setup flow.'" ] }