AIARCOASC Docs

Agents

Persistent agent workspaces, hibernate + wake, MCP-native, per-tenant isolation. $0.046/vCPU-hr active.

What it is

Agents is the managed workspace product for long-running AI agents. Each workspace has a persistent disk, hibernates after idle and wakes on demand in under a second. Every primitive is auto-exposed to the agent via the MCP server. Per-tenant isolation guarantees no cross-customer data leakage.

When to use it

  • Long-running coding agent that needs a real filesystem.
  • Multi-step research agent that resumes a session next week.
  • Per-user sandbox for a copilot product.

Quickstart

asc agents create alice --cpu 4 --memory 16Gi --disk 50Gi
asc agents exec alice -- python run.py
ws = client.agents.create(name='alice', cpu=4, memory='16Gi', disk='50Gi')
client.agents.exec(ws.id, ['python','run.py'])
const ws = await client.agents.create({ name: 'alice', cpu: 4, memory: '16Gi', disk: '50Gi' });

Limits & quotas

LimitDefaultBurstNotes
Active per-vCPU-hr$0.046
Hibernated per-GB-mo$0.05Disk only
Wake latency<1 s
Max disk1 TiB10 TiBLift via sales

Pricing

See pricing. Pay-as-you-go, billed monthly via Stripe.

API surface

  • POST /v1/agents
  • POST /v1/agents/{id}/exec
  • POST /v1/agents/{id}/hibernate

Required scope(s): agents:write. See Scopes.

Security

All access is authenticated and scoped. See Auth & scopes and Network controls.