v0.3.0
coleam00/Archonv0.3.0Apr 8, 2026by github-actions[bot]
AI Summary
This release introduces an environment leak gate sweep feature and addresses stability issues such as workflow graph loading and build process improvements.
Key Highlights
- New environment leak gate sweep with CLI flag support, config bypass, and retroactive consent
- Fix for workflow graph view loading without a codebase
- Build process improvements using build-time constants for binary detection
- Cloud-init deployment hardened with archon user and swap fixes
New Features
- Environment leak gate sweep (CLI flag, config bypass, retroactive consent)
Full Release Notes
## Installation ### Quick Install (Recommended) **macOS / Linux** ```bash curl -fsSL https://archon.diy/install | bash ``` **Windows (PowerShell)** ```powershell irm https://archon.diy/install.ps1 | iex ``` **Homebrew (macOS / Linux)** ```bash brew install coleam00/archon/archon ``` **Docker** ```bash docker run --rm -v "$PWD:/workspace" ghcr.io/coleam00/archon:latest workflow list ``` ### Manual Installation **macOS (Apple Silicon)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-darwin-arm64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **macOS (Intel)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-darwin-x64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **Linux (x64)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-linux-x64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **Linux (ARM64)** ```bash curl -fsSL https://github.com/coleam00/Archon/releases/latest/download/archon-linux-arm64 -o /usr/local/bin/archon chmod +x /usr/local/bin/archon ``` **Windows (Manual)** Download `archon-windows-x64.exe` from the assets below, rename to `archon.exe`, and add to your PATH. ### Verify installation ```bash archon version ``` ## What's Changed * fix(web): allow workflow graph view to load without a codebase by @coleam00 in https://github.com/coleam00/Archon/pull/959 * fix(build): use build-time constants for binary detection and pretty stream logger by @Wirasm in https://github.com/coleam00/Archon/pull/982 * deploy: harden cloud-init with archon user, swap, and fixes by @leex279 in https://github.com/coleam00/Archon/pull/981 * feat(env-leak-gate): polish sweep — CLI flag, config bypass, retroactive consent (#973) by @Wirasm in https://github.com/coleam00/Archon/pull/983 * Release 0.3.0 by @Wirasm in https://github.com/coleam00/Archon/pull/985 **Full Changelog**: https://github.com/coleam00/Archon/compare/v0.2.13...v0.3.0