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.pyws = 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
| Limit | Default | Burst | Notes |
|---|---|---|---|
| Active per-vCPU-hr | $0.046 | — | |
| Hibernated per-GB-mo | $0.05 | — | Disk only |
| Wake latency | <1 s | — | |
| Max disk | 1 TiB | 10 TiB | Lift via sales |
Pricing
See pricing. Pay-as-you-go, billed monthly via Stripe.
API surface
POST /v1/agentsPOST /v1/agents/{id}/execPOST /v1/agents/{id}/hibernate
Required scope(s): agents:write. See Scopes.
Security
All access is authenticated and scoped. See Auth & scopes and Network controls.