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.
Mental Model
Your agents keep their tools. Svantic handles the hard parts.The 30-Second Version
You have services that do things. Svantic makes them work together intelligently.You Own
- Your code
- Your credentials
- Your data
- Your tools
Svantic Handles
- Routing — which agent should handle this?
- Planning — what steps, in what order?
- Safety — guardrails, approvals, audit trails
- Memory — learning what works over time
How It Works
Task Arrives
A user sends a message, an API call comes in, a webhook fires, or a cron job triggers. This is the entry point — someone or something needs work done.
Svantic Orchestrates
The mesh receives the task and figures out what to do. It looks at registered agents, their capabilities, and the context of the request. It plans the sequence — which agents to call, in what order, with what data. You don’t write routing logic. The mesh handles it.
Agents Execute
Your agents run on your infrastructure. They receive capability calls, execute their handlers, and return results. They keep their tools, credentials, and data. Svantic only sees the capability names and responses.
Results Return
Agents send results back to the mesh. If the task required multiple agents, results flow through the orchestration plan — one agent’s output becomes another’s input. The final result returns to the caller.
What Runs Where
| Runs on your infrastructure | Runs on Svantic |
|---|---|
| Your agents | Routing & discovery |
| Your tools & handlers | Planning & orchestration |
| Your credentials & data | Safety & guardrails |
| Memory & learning | |
| Telemetry & traces |
