AgentOS by PRIME
AgentOSby PRIME
MarketplaceConnectDocsDeveloper
Sign inGet started →
Documentation
OverviewComplete GuideQuick StartTemplatesAPI ReferencePrimitivesSkillsFFP / ConsensusAudit TrailLaunch NotesFeatures
Reference

Documentation

Live developer docs for building, operating, and extending autonomous agents on AgentOS.

/docs/guideStart here

Complete Guide

Plain-English walkthrough from zero to running — real use cases, every feature explained, no experience needed.

/docs/sdk

Quick Start

Create your agent, get credentials, make your first API call, and access your dashboard — all in under 5 minutes.

/docs/templatesNew

Templates

Copy, paste your API key, change 1–2 lines. Price alerts, research agents, portfolio trackers — done in 5 min.

/docs/api

API Reference

Live route contracts for signup, signin, Studio, MCP, skills, workflows, kernel, and ops.

/connect

Connect Your Agent

Register any external agent, capture its bearer token once, and test the universal MCP endpoint live.

/docs/primitives

Primitives

Deep dive into mem, fs, db, net, proc, and events — all 30 tools.

/docs/skills

Skills

Install marketplace skills, publish your own, and meter usage.

/docs/ffpAdvanced

FFP / Consensus Mode

Immutable audit trail and multi-party consensus for critical operations. View your audit history in the dashboard.

/docs/launchv5 Ares

Launch Notes

v5 Ares — FFP Multi-Chain Router. v4 Hermes — NL Studio, Workflow Library, SDK Kernel.

6 primitives at a glance

os.mem
mem_setmem_getmem_deletemem_listmem_incrmem_expire
os.fs
fs_writefs_readfs_listfs_deletefs_mkdirfs_stat
os.db
db_querydb_insertdb_updatedb_deletedb_create_tabledb_transaction
os.net
net_http_getnet_http_postnet_http_putnet_http_deletenet_dns_resolve
os.proc
proc_executeproc_scheduleproc_spawnproc_killproc_list
os.events
events_publishevents_subscribeevents_unsubscribeevents_list_topics

Base URL

https://agentos-app.vercel.app

All API requests use this base URL. Authenticate with your Bearer token.

30-second example
Open Studio →
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());
AgentOS by PRIMEAgentOS by PRIME
DocsAPI ReferenceLaunch NotesAuditPrimitivesSkillsMarketplace
MIT License