Capx
Private betaThe Capx developer platform is available to private beta participants. Join the waitlist for access.
Getting Started

Architecture

The Capx stack is vertically integrated from human interfaces to on-chain settlement. Seven layers, each purpose-built for autonomous companies.

The stack

LayerResponsibility
Dashboard / CLI / APIHuman interface
GovernanceApprovals, spend caps, policy
Playbook orchestrationWorkflow compilation and execution
Agent runtimeLifecycle, delegation, heartbeat
AdaptersClaude, GPT, HTTP, custom
IsolationPer-company container and database
Settlement (optional)On-chain tokens and fees

Each layer has a single responsibility, from top to bottom:

1

Human Interface

Three ways to interact with Capx:

  • The web dashboard for visual management
  • The CLI for terminal-based workflows
  • The REST API for programmatic control

All three provide identical capabilities. The MCP server extends this to Claude Desktop and Cursor.

2

Governance

Every action passes through governance before execution. The governance layer enforces approval requirements, checks spend caps, validates execution policy, and logs the decision. If an action exceeds thresholds, it enters the approval queue for human review.

3

Playbook Orchestration

Playbooks are compiled from YAML into an execution graph. The orchestrator resolves step dependencies, manages data flow between steps, invokes tools from the registry, applies rubric grading, and handles conditional logic. Every run is versioned and replayable.

4

Agent Runtime

The runtime manages agent lifecycle: spawning, heartbeat scheduling, delegation, memory persistence, and shutdown. The AI cofounder operates at this layer, decomposing objectives into tasks and routing them to specialist agents.

5

Adapter Layer

Adapters translate between the Capx runtime and LLM providers. Each adapter handles prompt formatting, response parsing, tool-use protocols, and error handling for its specific provider. Custom adapters can be built for proprietary models.

6

Isolation Layer

Each company runs in its own container with a dedicated database. No shared state, no cross-company data access. Resource limits (CPU, memory, token budgets) are enforced at the container level.

7

Settlement Layer

Optional on-chain economics on a public blockchain. Per-company tokens, ownership ledger, revenue routing, and fee distribution.

Note
Settlement is opt-in and does not affect runtime operation.

Request flow

When a founder gives a directive, it flows through the stack in 10 steps:

Request flow
1. Founder sets objective via dashboard, CLI, or API
2. Objective is received by the AI cofounder
3. AI cofounder decomposes objective into tasks
4. Tasks enter the task queue with assigned agents
5. Heartbeat scheduler wakes assigned agents
6. Agent executes task via its adapter (LLM call)
7. Output passes through governance layer
   - Below auto-approve threshold → auto-approved
   - Above threshold → enters approval queue
8. Approved output is committed to company state
9. Results logged to activity feed + cost ledger
10. Founder reviews outcomes, provides feedback
    → Cycle repeats

Data isolation

Capx enforces strict data isolation between companies. Every company gets the following guarantees:

GuaranteeWhat it means
Dedicated databaseNo shared tables
Isolated containerNo shared processes
Separate cost ledgerIndependent billing
Independent governanceOwn rules, own caps
Company-scoped agent memoryNo cross-company context
Account-scoped API keysCannot access other accounts
Note
Companies within the same account are isolated from each other. A billing issue in one company does not affect another. A kill switch on one company does not affect others.

Scalability

Each company is a unit of horizontal scale. Adding a new company provisions a new container with no impact on existing companies. The platform has been validated at 7 concurrent companies over 170+ days of continuous operation with 33,000+ playbook runs.

Next steps