v0.3.3
lfnovo/open-notebookv0.3.3Apr 10, 2026by Wirasm
AI Summary
Archon CLI v0.3.3 introduces the archon serve command for binary users, automatic update checks, script nodes for DAG workflows, and Codex binary auto-resolution.
Key Highlights
- archon serve command for starting web UI server from binary
- Automatic update check for binary users (non-blocking, cached 24h)
- Script node type for DAG workflows with inline TypeScript/Python support
- Codex native binary auto-resolution for compiled builds
New Features
- archon serve command with automatic web UI download and SHA-256 verification
- Script nodes with deps: and timeout: support
- Automatic Codex CLI binary location detection
Full Release Notes
Binary distribution improvements, new workflow node type, and a batch of bug fixes. ### Added - **`archon serve` command**: one-command way for compiled binary users to start the web UI server. Downloads a pre-built web UI tarball from GitHub releases on first run, verifies SHA-256 checksum, caches locally, then starts the full server (#1011) - **Automatic update check**: binary users see a notification when a newer version is available on GitHub. Non-blocking, cached for 24 hours (#1039) - **Script node type for DAG workflows**: `script:` nodes run inline TypeScript/Python or named scripts from `.archon/scripts/` via `bun` or `uv` runtimes. Supports `deps:` for dependency installation and `timeout:` in milliseconds (#999) - **Codex native binary auto-resolution**: compiled builds now locate the Codex CLI binary automatically instead of requiring a manual `CODEX_CLI_PATH` override (#995, #1012) ### Fixed - **Workflow reject ignores positional reason**: `archon workflow reject <id> <reason>` now correctly passes the reason argument to the rejection handler - **Windows script path separators**: normalize backslashes to forward slashes in script node paths for cross-platform compatibility - **PowerShell `Add-ToUserPath` corruption**: installer no longer corrupts `PATH` when only a single entry exists (#1000) - **Validator `Promise.any` race condition**: script runtime checks no longer fail intermittently due to a `Promise.any` edge case (#1007, #1010) - **Interactive-prd workflow bugs**: fixes to loop gate handling, variable substitution, and node ordering (#1001, #1002, #1003, #1005) - **Community forge adapter exports**: added explicit export entries for Gitea and GitLab adapters so they resolve correctly in compiled builds (#1041) - **Workflow graph view without codebase**: the web UI workflow graph now loads correctly even when no codebase is selected (#958)