Packages
AI agent framework for Elixir built on OTP. TEA-based agents with crash isolation, inter-agent messaging, team supervision, and real SSE streaming to Anthropic, OpenAI, Ollama, and more.
Current section
Files
Jump to
Current section
Files
lib/raxol/agent/backend/cursor.ex
defmodule Raxol.Agent.Backend.Cursor do
@moduledoc """
AIBackend wrapping the Cursor agent CLI (`cursor-agent`) as a native harness.
The CLI owns its agent loop; Raxol tools are injected over MCP. Selected via
`harness: :cursor` in a `Raxol.Agent.ExecutorConfig`. See
`Raxol.Agent.Backend.Native` for options and `Raxol.Agent.Harness.Cursor` for
the driver.
"""
use Raxol.Agent.Backend.Native, driver: Raxol.Agent.Harness.Cursor
end