Add raxol - #492
Open
DROOdotFOO wants to merge 2 commits into
Open
Conversation
Coding agent on the BEAM, served over ACP from a self-contained Burrito binary for linux-x86_64, linux-aarch64, darwin-aarch64 and windows-x86_64. No Erlang or Elixir install required. Supports both accepted auth methods: Agent Auth (browser OAuth via OpenRouter PKCE, run in-process by `authenticate`) and Terminal Auth (`raxol login`). verify_agents.py --auth-check reports "Auth OK: openrouter(agent), terminal(terminal)".
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
raxol is a coding agent on the BEAM. It serves over ACP from a self-contained Burrito binary, so there is no Erlang or Elixir install required on the host.
Distribution
Raw binaries from a GitHub release, one per platform, each pinned by SHA-256:
linux-x86_64raxol_cli_linuxlinux-aarch64raxol_cli_linux_armdarwin-aarch64raxol_cli_macoswindows-x86_64raxol_cli_windows.exeCommand is
raxol acp.Authentication
Both accepted methods are supported, and each carries its
_metatype marker rather than relying on the untyped default:authenticateruns the OAuth flow in-process: binds a loopback port, opens the browser, catches the redirect, exchanges the code with PKCE, stores the credential. Offered for OpenRouter, which is the provider with a public PKCE flow intended for third-party local applications.raxol login, for every other provider. The client relaunches the same binary withargs: ["login"].Validation run locally
Schema validates, the icon is 16x16 monochrome
currentColor, and all four archive URLs return HTTP 200.One note that may be worth a look on your side, unrelated to this entry: when
verify_agents.pyskips an agent (I hit a SHA-256 mismatch from a cached download, since--cleankeeps downloads), the run still printsAll tests passed!withPassed: 0 Skipped: 1. A CI job reading that summary would treat a checksum mismatch as green.--clean-allwas the fix on my side.