Your platform is running. Now make it yours. The templates are designed for coding agents. Claude Code can read traces, run evals, and edit agent code in a tight feedback loop. Three of the five workflows run autonomously with no input from you.Documentation Index
Fetch the complete documentation index at: https://agno-v2-fix-deploy-docs-restructure.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Claude Code Workflows
Thedocs/ directory includes five prompts that cover the agent development lifecycle:
| Prompt | What it does | Autonomous |
|---|---|---|
create-new-agent.md | Scaffolds an agent, registers it, smoke-tests via cURL | No |
improve-agent.md | Derives probes from instructions, runs them, fixes failures | Yes |
extend-agent.md | Add tools or features. You direct, Claude executes | No |
hill-climb.md | Runs evals, diagnoses failures, fixes until all pass | Yes |
review-codebase.md | Finds drift between docs, code, and config | Yes |
Evals
Lock in agent behavior with the eval suite:hill-climb.md prompt runs evals, diagnoses failures, and fixes what’s in scope. Stops when all cases pass.
Agent Patterns
The templates ship with two agents that demonstrate different patterns:| Agent | Pattern | Description |
|---|---|---|
| WebSearch | Direct tools | Agent sees each tool individually |
| CodeSearch | Context provider | Agent sees one query_<thing> tool that hands off to a sub-agent |
Teams and Workflows
For most things, one agent is enough. When it isn’t:| Pattern | When to use |
|---|---|
| Multi-agent teams | Route to specialists, coordinate parallel work, synthesize results |
| Agentic workflows | Deterministic pipelines that run the same way every time |
Scheduled Tasks
scheduler=True is on by default. Schedule any agent or workflow on a cron:
- Maintenance. Purge sessions older than 90 days. Vacuum tables.
- Proactive runs. Every weekday morning, summarize overnight news and send to Slack.
- Periodic re-evaluation. Run the eval suite on cron to catch behavior drift before users do.
Interfaces
Agents should live where your users are. Slack is pre-wired in the templates. SetSLACK_BOT_TOKEN and SLACK_SIGNING_SECRET in your env and the interface activates automatically. See Slack setup.
For Discord, Telegram, WhatsApp, or custom UIs, see the Interfaces guide.
Next Steps
Tools Catalog
100+ integrations ready to add to your agents.
AgentOS Features
Sessions, memory, tracing, and more.