← ClaudeAtlas

raxollisted

Raxol terminal framework for TUI apps and AI agents in Elixir (v2.6.1; 17 packages under packages/ plus the root raxol package). TRIGGER when: code imports Raxol modules (Raxol.Agent, Raxol.Core, Raxol.MCP, Raxol.LiveView, Raxol.Workflow, Raxol.Headless, Raxol.Agent.Harness, Raxol.Agent.Skills, Raxol.Agent.Journal, Raxol.Gateway, Raxol.Telegram, Raxol.Watch, Raxol.Speech, Raxol.Agent.ClientProtocol, Raxol.AgentClientProtocol), mix.exs lists :raxol / :raxol_agent / :raxol_core / :raxol_mcp / :raxol_terminal / :raxol_gateway / :raxol_telegram / :raxol_watch / :raxol_speech / :raxol_agent_client_protocol as a dependency, commands "mix raxol.code" or "mix raxol.p", user asks about building TUI apps or AI agents with Raxol, agent memory/self-improvement, agent skills / procedural memory, the coding agent harness, the workflow engine, blast radius / spend gate, or Raxol headless/MCP tools. DO NOT TRIGGER when: general Elixir patterns (use droo-stack skill), Claude API / Anthropic SDK usage (use claude-api skill), a
DROOdotFOO/agent-skills · ★ 1 · AI & Automation · score 75
Install: claude install-skill DROOdotFOO/agent-skills
# Raxol Skill Elixir TEA framework for terminal UIs + AI agent orchestration. The same TEA model runs in the terminal, browser (LiveView), SSH, and as MCP tools/resources. OTP provides supervision, crash isolation, and hot reload. Raxol v2.6.1 targets Elixir 1.20 / OTP 29 and supports 1.17+. The repo holds 18 Mix projects: 17 under `packages/` plus the root `raxol` package. Both numbers are correct and they count different things, so a `packages/` listing showing 17 is not stale. The terminal emulator + termbox2 NIF were extracted from the root `raxol` package into `raxol_terminal`. `raxol` is now the full-framework package, and it is a plain Mix project rather than a Mix umbrella (the root `mix.exs` has no `apps_path`): it depends on `raxol_core`, `raxol_terminal`, `raxol_sensor`, `raxol_mcp`, `raxol_liveview`, and `raxol_plugin`. The 15 packages this skill covers: - `raxol_core` -- TEA runtime, buffer/rendering, events, directives, telemetry - `raxol` -- full-framework package at the REPO ROOT, not under `packages/` (depends on core, terminal, sensor, mcp, liveview, plugin) - `raxol_terminal` -- VT/ANSI emulator, screen buffers, driver, input, sessions, termbox2 NIF (extracted from `raxol` in v2.6) - `raxol_agent` -- agent framework: TEA/Process agents, turn driver, memory, self-improving skills, journal, backends, coding harness, teams - `raxol_mcp` -- MCP server/client: tool auto-derivation, focus lens, resources - `raxol_liveview` -- Phoenix LiveView bridge (bu