v0.6.0
kubero-dev/kuberov0.6.0Jul 20, 2026by Wirasm
AI Summary
This release introduces two new workflow factories to the marketplace for programmatic SEO and image generation, alongside updated installation methods for various operating systems.
Key Highlights
- Added token-max-site-factory for programmatic SEO/GEO page generation
- Added image-node-factory for grounded image prompt-packs
- Updated installation instructions for macOS, Linux, and Windows via Homebrew, Docker, and manual binaries
- Welcomes new contributor @TheSmokeDev
New Features
- token-max-site-factory workflow
- image-node-factory workflow
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 * marketplace: add token-max-site-factory (programmatic SEO/GEO page factory) by @TheSmokeDev in https://github.com/coleam00/Archon/pull/2057 * marketplace: add image-node-factory (grounded image prompt-pack workflow) by @TheSmokeDev in https://github.com/coleam00/Archon/pull/2077 * Release 0.6.0 by @Wirasm in https://github.com/coleam00/Archon/pull/2202 ## New Contributors * @TheSmokeDev made their first contribution in https://github.com/coleam00/Archon/pull/2057 **Full Changelog**: https://github.com/coleam00/Archon/compare/v0.5.0...v0.6.0