Documentation Index
Fetch the complete documentation index at: https://docs.svantic.com/llms.txt
Use this file to discover all available pages before exploring further.
Core Concepts
Svantic is built around a few key primitives. This page gives you the big picture — follow the links for deep dives.- Interfaces — How you interact with Svantic: CLI for terminal conversations and scripting, Dashboard for the web UI, and API for programmatic access.
- Sessions — A conversation container. Every interaction happens within a session — it holds message history, context, and state. Sessions persist across multiple exchanges.
- Mesh — The brain. Receives tasks, reads agent capabilities, enforces policies, queries knowledge, plans which agents to call, and executes the workflow.
- Policies — Governance rules. Define what’s allowed, what requires approval, and what’s blocked. Policies can allow, audit, block, or require human approval.
- Knowledge — Institutional memory. Upload documents, playbooks, and domain context. The mesh queries this before acting. Knowledge also accumulates from executions.
- Telemetry — Observability built in. Every capability call, every LLM decision, every agent interaction produces traces. When something fails, you see exactly where and why.
- Agents — Your services wrapped with the SDK. Define capabilities, start the agent, and you get mesh registration, health checks, and telemetry.
- A2UI — Human-in-the-loop. When an agent needs approval, clarification, or human judgment, A2UI surfaces the request. The workflow pauses, the human responds, execution continues.
