Every span, tool call, and model decision — visible, inspectable, and live. Built for teams shipping agents to production.
GET /traces and GET /sessions. One URL. No proxy, no middleware.Three steps. AgentOS already generates the traces. DevTools just reads them.
Add tracing=True to AgentOS. This writes every span to your database automatically.
Add CORSMiddleware so the browser can reach your local server. One import, one line.
Open the HTML file. Enter your endpoint. Click Connect. Sessions load instantly.
"Mark my words. Next big startup will be built on @AgnoAgi… and it might be mine."
"The hype is real. @AgnoAgi is what you've been looking for. So many new toys to play with."
"@AgnoAgi's framework is awesome. Build agents, teams, tools, workflows — it's just super flexible."
"After using Langgraph for a while, I'm starting new projects only with @AgnoAgi. Everything just makes more sense."
"I'm actually very surprised how fast it is to get @AgnoAgi agents up and running. Like literally 2 minutes."
"I don't highlight this enough: the Memory & Knowledge system in @AgnoAgi is insanely powerful."
"@AgnoAgi is the leader in agent frameworks right now. Well engineered, more intuitive, and faster."
"I have been using @AgnoAgi for a while now — it is so much easier to use than other frameworks. Fast too!"
"Mark my words. Next big startup will be built on @AgnoAgi… and it might be mine."
"The hype is real. @AgnoAgi is what you've been looking for. So many new toys to play with."
"@AgnoAgi's framework is awesome. Build agents, teams, tools, workflows — it's just super flexible."
"After using Langgraph for a while, I'm starting new projects only with @AgnoAgi. Everything just makes more sense."
"I'm actually very surprised how fast it is to get @AgnoAgi agents up and running. Like literally 2 minutes."
"I don't highlight this enough: the Memory & Knowledge system in @AgnoAgi is insanely powerful."
"@AgnoAgi is the leader in agent frameworks right now. Well engineered, more intuitive, and faster."
"I have been using @AgnoAgi for a while now — it is so much easier to use than other frameworks. Fast too!"
Connect to your AgentOS — or explore the mock data below
One HTML file. No dependencies. Works with any AgentOS instance.
DevTools is a single HTML file. No npm, no build step, no install. Download it and open it in any browser.
DevTools reads directly from the Agno session and trace APIs. Your AgentOS needs two things:
Pass tracing=True to AgentOS. This writes spans to your database on every run.
Add CORSMiddleware so the browser can reach your local server.
/health request.A session is a persistent conversation context — one user talking to one agent over time. DevTools loads sessions from GET /sessions, sorted by most recent activity.
A trace is a single agent run — one call to agent.run(). Each trace has a root span and a tree of children. The detail panel has five tabs:
OverviewType, status, duration, token count, model, trace ID.InputThe raw input passed to the agent or tool.OutputFull response or tool result. Errors shown here too.SpansThe full child span tree. Expand any node to drill deeper.MetadataRaw span attributes — model name, token counts, agent IDs.Every node in the trace tree has a type. DevTools highlights them differently in the span panel.
A single agent run. Contains LLM calls, tool executions, and memory operations.
A multi-agent team run. Contains multiple AGENT spans as children.
A model invocation. Includes prompt tokens, completion tokens, model name.
A tool or function call. Arguments passed in, result returned.
DevTools uses four AgentOS endpoints — all part of the standard Agno REST API.
/healthConnection check on Connect click./sessions?limit=20List sessions, most recent first./traces?session_id={id}List traces for a session./traces/{trace_id}Full trace with recursive span tree.Ships with built-in mock data matching the real Agno schema — five sessions, fourteen traces, full span trees. Replaced automatically when you connect to a live endpoint.
A single static HTML file. Host it anywhere — S3, Vercel, Netlify, or your laptop. No server required.
Your agents are generating traces right now. DevTools makes them readable.