Packages

Extreme minimal AI assistant with persistent PTY, recursive sub-agents, and CLI-based MCP/browser integration (mcporter, agent-browser)

Retired package: Release invalid - Deprecated due to missing config files

Current section

Files

Jump to
eai lib eai application.ex
Raw

lib/eai/application.ex

defmodule Eai.Application do
@moduledoc "EAI application top-level supervisor"
use Application
def start(_type, _args) do
children = [
Eai.Cache.Cache,
Eai.Sandbox.PTYPool
]
opts = [strategy: :one_for_one, name: Eai.Supervisor]
Supervisor.start_link(children, opts)
end
end