Packages

Altar provides a robust, type-safe foundation for building AI agent tools in Elixir. It offers a clean contract to define and execute tools locally, with a clear promotion path to future distributed systems.

Current section

Files

Jump to
altar lib Altar.ex
Raw

lib/Altar.ex

defmodule Altar do
@moduledoc """
ALTAR application entrypoint.
Boots the top-level supervisor that manages the Local Agent & Tool Execution
Runtime (LATER) processes.
"""
use Application
@impl true
def start(_type, _args) do
Altar.Supervisor.start_link(:ok)
end
end