defmodule Eai do @moduledoc """ EAI Agent Framework. Core primitives for AI agents: * **Triple notation** — `<>` knowledge graphs with `dispatch.py` for path/query/deps/matrix resolution * **agent-browser** — Chromium-based web agent with `snapshot -i` / `click @ref` / `eval` workflow * **PTY resilience** — Session lifecycle management via `reset_session` See `TRANSITION.md` for the living knowledge graph. """ @doc "Returns the agent's identity string." def identity, do: "Momoka / eai v0.1.0" end