v0.3.6

Expensify/Appv0.3.6Apr 12, 2026by Wirasm

AI Summary

Version 0.3.6 enhances the web interface by making artifact file paths clickable and enriching workflow result cards with status and duration. It also fixes server versioning and strips environment variable leaks.

Key Highlights

  • Artifact file paths are now clickable in chat messages
  • Workflow result cards enriched with status, duration, nodes, and artifacts
  • Loop node iteration visibility in workflow execution view
  • Fixed stripping of CWD `.env` leak

New Features

  • Clickable artifact file paths
  • Enriched workflow result cards
  • Loop node iteration visibility

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(web): make artifact file paths clickable in chat messages by @coleam00 in https://github.com/coleam00/Archon/pull/1023
* fix(server): use BUNDLED_VERSION for app version in binary mode by @Wirasm in https://github.com/coleam00/Archon/pull/1049
* feat(web): enrich workflow result card with status, duration, nodes, and artifacts by @coleam00 in https://github.com/coleam00/Archon/pull/1025
* feat(web): loop node iteration visibility in workflow execution view by @coleam00 in https://github.com/coleam00/Archon/pull/1026
* fix: strip CWD .env leak, enable platform adapters in serve, add first-event timeout by @coleam00 in https://github.com/coleam00/Archon/pull/1092
* Release 0.3.6 by @Wirasm in https://github.com/coleam00/Archon/pull/1114


**Full Changelog**: https://github.com/coleam00/Archon/compare/v0.3.5...v0.3.6