Documentation
Live developer docs for building, operating, and extending autonomous agents on AgentOS.
Complete Guide
Plain-English walkthrough from zero to running — real use cases, every feature explained, no experience needed.
Quick Start
Create your agent, get credentials, make your first API call, and access your dashboard — all in under 5 minutes.
Templates
Copy, paste your API key, change 1–2 lines. Price alerts, research agents, portfolio trackers — done in 5 min.
API Reference
Live route contracts for signup, signin, Studio, MCP, skills, workflows, kernel, and ops.
Connect Your Agent
Register any external agent, capture its bearer token once, and test the universal MCP endpoint live.
Primitives
Deep dive into mem, fs, db, net, proc, and events — all 30 tools.
Skills
Install marketplace skills, publish your own, and meter usage.
FFP / Consensus Mode
Immutable audit trail and multi-party consensus for critical operations. View your audit history in the dashboard.
Launch Notes
v5 Ares — FFP Multi-Chain Router. v4 Hermes — NL Studio, Workflow Library, SDK Kernel.
6 primitives at a glance
os.memos.fsos.dbos.netos.procos.eventsBase URL
https://agentos-app.vercel.appAll API requests use this base URL. Authenticate with your Bearer token.
const AGENT_OS = 'https://agentos-app.vercel.app';
const API_KEY = 'eyJ...';
await fetch(AGENT_OS + '/api/studio/command', {
method: 'POST',
headers: {
Authorization: 'Bearer ' + API_KEY,
'Content-Type': 'application/json',
},
body: JSON.stringify({ command: 'tools list' }),
}).then(r => r.json());
await fetch(AGENT_OS + '/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer ' + API_KEY,
'Content-Type': 'application/json',
},
body: JSON.stringify({
tool: 'agentos.mem_set',
input: { key: 'hello', value: 'world', ttl: 3600 },
}),
}).then(r => r.json());