This page gets the Agent Platform template running on your machine: a FastAPI service on port 8000, a Postgres for sessions and memory, and two reference agents (Documentation Index
Fetch the complete documentation index at: https://docs.agno.com/llms.txt
Use this file to discover all available pages before exploring further.
code_search, web_search).
Prerequisites
Run locally
Clone the template
agentos-railway-template; the local directory is agent-platform because that’s the platform you’re building.Start the platform
Verify it's running
{"status":"ok"}. If you get connection refused, the container is still starting; check docker compose logs -f and wait for the Agno banner.The OpenAPI spec is at http://localhost:8000/docs.Connect the AgentOS UI
Open os.agno.com and log in. Click Add OS, choose Local, enterhttp://localhost:8000, click Connect.
You should see two agents in the sidebar:
| Agent | What it does |
|---|---|
| code_search | Reads files in the workspace and answers questions about the codebase. |
| web_search | Searches the web and synthesizes answers grounded in citations. |
“What’s in this repo?” → code_search lists the directory and explains the structure.
“What did Anthropic publish about agents recently?” → web_search returns a summary with URLs.
What you have now
- A FastAPI runtime on port 8000 with sessions, scheduling, and 50+ endpoints.
- A Postgres database holding sessions, memory, and traces.
- Two reference agents you can replace, extend, or use as patterns.
- A
docs/folder of Claude Code prompts that build new agents for you.