Skip to main content
Run the setup skill inside a freshly cloned Starter:
The coding agent configures the local environment, starts AgentOS with Docker, verifies the MCP endpoint, builds your first agent, and helps you connect the AgentOS UI. Each Starter gives coding agents access to the project, live AgentOS API, evals, traces in PostgreSQL, and container logs. They can use that context to diagnose behavior, edit the implementation, and verify the result.

Skills

The skills live in .agents/skills/. Claude Code discovers them through the committed .claude/skills symlink. Codex and Cursor can use the same folder. Invoke a skill by name or describe the task and let the coding agent select it.

Connect the live platform

Coding agents can edit the project and call its live agents over MCP. Register the local AgentOS with supported clients:
The command detects Claude Code, Claude Desktop, Codex, and Cursor and registers http://localhost:8000/mcp. Your coding agent can then call run_agent, run_team, and run_workflow against the running platform. For a deployed platform, pass its URL:
See agno connect for client configuration, credential requirements, and conflict handling.

Evals

The eval suite lives in evals/. Set up the host environment once:
Run the suite by scope:
Cases use AgentAsJudgeEval for model-judged behavior and ReliabilityEval for tool-call assertions. Results are stored in PostgreSQL and appear in the AgentOS UI beside sessions and traces. If a case fails, run /eval-and-improve.

Agent patterns

The bundled agents demonstrate three patterns:

Teams and workflows

Use agents for open questions, teams for routing, and workflows for processes.

Scheduled tasks

The scheduler is enabled by default. Two reference workflows are registered: See Scheduler for the cron API.