From ad3cd5b351094b8a7f0a3ed31b6205e40e5d49f3 Mon Sep 17 00:00:00 2001 From: DROOdotFOO Date: Sun, 9 Aug 2026 23:43:01 +0200 Subject: [PATCH] Add raxol 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)". --- raxol/agent.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ raxol/icon.svg | 1 + 2 files changed, 49 insertions(+) create mode 100644 raxol/agent.json create mode 100644 raxol/icon.svg diff --git a/raxol/agent.json b/raxol/agent.json new file mode 100644 index 00000000..25406951 --- /dev/null +++ b/raxol/agent.json @@ -0,0 +1,48 @@ +{ + "id": "raxol", + "name": "Raxol", + "version": "0.2.6", + "description": "Coding agent on the BEAM. Serves over ACP from a self-contained binary with no Erlang or Elixir install required.", + "repository": "https://github.com/DROOdotFOO/raxol", + "website": "https://raxol.io", + "license": "MIT", + "authors": [ + "DROOdotFOO" + ], + "distribution": { + "binary": { + "linux-x86_64": { + "archive": "https://github.com/DROOdotFOO/raxol/releases/download/raxol-cli-v0.2.6/raxol_cli_linux", + "cmd": "raxol", + "args": [ + "acp" + ], + "sha256": "6d8c9db1e3cc06df90a3dcde4ee27689b01cf8bf76b9b88325dd45da80aa1265" + }, + "linux-aarch64": { + "archive": "https://github.com/DROOdotFOO/raxol/releases/download/raxol-cli-v0.2.6/raxol_cli_linux_arm", + "cmd": "raxol", + "args": [ + "acp" + ], + "sha256": "8a3351d8815136719d63df6fc922b0d4b75d228a7981bdb2e77716475802e46d" + }, + "darwin-aarch64": { + "archive": "https://github.com/DROOdotFOO/raxol/releases/download/raxol-cli-v0.2.6/raxol_cli_macos", + "cmd": "raxol", + "args": [ + "acp" + ], + "sha256": "9dc35bd00b7d41e902fb34228cb45d01246b2f8a2b202692f8853ea83f3d5a35" + }, + "windows-x86_64": { + "archive": "https://github.com/DROOdotFOO/raxol/releases/download/raxol-cli-v0.2.6/raxol_cli_windows.exe", + "cmd": "raxol.exe", + "args": [ + "acp" + ], + "sha256": "2efca33ec3b87c7e96ac664b0609816c0fa8b27a835da7400b8a022d737256c2" + } + } + } +} diff --git a/raxol/icon.svg b/raxol/icon.svg new file mode 100644 index 00000000..92016a8a --- /dev/null +++ b/raxol/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file