Launch Notes

Agent OS v5 “Ares” is live

v5 ships the FFP Multi-Chain Router — FFP sector chains reach consensus, AgentOS verifies and executes. Built on top of v4's NL Studio, Workflow Library, SDK Kernel, and the 6 core primitives. Live at https://agentos-app.vercel.app.

What shipped in v5

AgentOS is a production infrastructure layer for autonomous agents. One API key gives you 6 primitives (mem, fs, db, net, events, proc), a skills marketplace, universal MCP routing to external services, FFP audit + consensus, a Natural Language Studio, and now a full FFP Multi-Chain Router so sector chains can execute tools through AgentOS as a verified bridge.

Platform coverage: 70 platform features, 32 runtime functions, 102 catalog items under ops coverage, 51 official verified free skills across 6 maintained packs. Production is live at https://agentos-app.vercel.app.

Why it matters

  • Hosted primitives instead of do-it-yourself infra glue
  • MCP routing with optional consensus and full logging
  • A skills marketplace with installation, execution, and monetization
  • An autonomous active-and-standby operations crew for every feature and runtime function

What you can do today

  • Provision an agent account and stay signed in with a secure browser session.
  • Generate a fresh bearer token only when you need CLI, SDK, or external API access.
  • Use Studio to run guided commands and preview mutating operations before they execute.
  • Install from official verified skill packs or publish your own extensions to the marketplace.
  • Register any external agent once, receive a scoped token, and use the same MCP endpoint for primitives, skills, and external connectors.

v5 Ares — changelog

Stack: Next.js App Router for product UI and APIs; Supabase PostgreSQL and storage for durable state; Redis for cache, rate controls, and event transport; Anthropic for on-demand feature descriptions and incident triage support; Vercel for hosted production deployment and cron execution.

  • v5 "Ares" — FFP Multi-Chain Router: FFP sector chains (Finance, Health, Metaverse, etc.) reach consensus on decisions, AgentOS executes them via a cryptographically verified bridge.
  • POST /api/ffp/execute: consensus proof verification (HMAC-SHA256, threshold, 5-min expiry, input hash) → chain-scoped execution → immutable log in ffp_chain_executions.
  • GET /api/ffp/chains: public discovery endpoint — lists all active FFP sector chains with execution stats.
  • Chain-scoped isolation: agentId = "ffp:{chainId}:{agentId}" auto-namespaces all 6 primitives per chain without touching primitive code.
  • v4 "Hermes" — Natural Language Studio: describe a workflow in plain English, Claude plans it, you confirm, it executes and saves.
  • Workflow Library: every executed plan is saved with name, schedule, and status. Pause, resume, or delete from the dashboard.
  • SDK Kernel Command Layer: SDK products register command + status topics and receive dispatched commands via the Redis events bus.
  • FFP tab in dashboard: agents can now view their own audit trail and consensus history without admin access.
  • SDK dashboard login: POST /api/session/from-key with your API key → get a one-time login link → full dashboard including FFP.
  • Full mobile responsiveness: viewport meta, overflow fixes, responsive nav across all pages.
  • Crypto-only payments: Solana and Base network USDC, verified on-chain without a payment processor.
Detailed changes in this release
  • Created POST /api/ffp/execute — FFP bridge endpoint: requireAgentContext → verifyConsensusProof → buildChainScopedContext → executeUniversalToolCall → log to ffp_chain_executions.
  • Created GET /api/ffp/chains — public chain discovery: aggregates execution count, success/fail stats, and last execution per chain_id.
  • Created src/ffp/chain-verifier.ts — HMAC-SHA256 consensus proof verification with constant-time comparison, input hash check, 5-min expiry, threshold enforcement.
  • Created src/ffp/chain-context.ts — buildChainScopedContext sets agentId = "ffp:{chainId}:{agentId}", auto-namespacing all 6 primitives.
  • Created ffp_chain_executions table in Supabase — indexed on chain_id, agent_id, executed_at.
  • Created POST /api/studio/intent — NL intent parser backed by claude-sonnet-4-6, plan stored in Redis with 5-min TTL confirm token.
  • Created GET+POST /api/agent/workflows and PATCH+DELETE /api/agent/workflows/:id — full workflow CRUD.
  • Created POST /api/kernel/register, GET /api/kernel/registry, POST /api/kernel/command, GET /api/kernel/status/:product.
  • Created GET /api/agent/ffp/audit and GET /api/agent/ffp/consensus — agent-scoped FFP routes (no admin required).
  • Created POST /api/session/from-key and GET /api/session/from-key/callback — SDK to browser session bridge.
  • Updated Studio UI with NL mode toggle, workflow library panel, and kernel status panel with 15s auto-refresh.
  • Added FFP tab to dashboard with audit trail, consensus history, and refresh.
  • Added viewport meta tag, overflow-x: hidden on html/body, responsive nav.
  • Rewrote payments to crypto-only: Solana RPC getTransaction + Base eth_getTransactionReceipt verification.

How to start