v0.3.4
abi/screenshot-to-codev0.3.4Apr 10, 2026by Wirasm
AI Summary
Updated documentation with visual improvements and modified environment variable loading behavior for binary support.
Key Highlights
- Added logo, dark theme, and feature cards to docs site
- Removed CWD env stripping and enabled platform adapters
New Features
- Added logo, dark theme, and feature cards to documentation
- Load ~/.archon/.env with override for binary support
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 * feat(docs): add logo, dark theme, feature cards to docs site by @coleam00 in https://github.com/coleam00/Archon/pull/1022 * fix: remove CWD env stripping, load ~/.archon/.env with override for binary support by @Wirasm in https://github.com/coleam00/Archon/pull/1045 * Release 0.3.4 by @Wirasm in https://github.com/coleam00/Archon/pull/1046 **Full Changelog**: https://github.com/coleam00/Archon/compare/v0.3.3...v0.3.4