This is an orientation guide, not a setup tutorial. Forge is a managed platform β there is nothing to install.
ποΈ Understand the architecture
Forge operates across four layers: (durable backend), (operator dashboard), (execution router), and (pluggable runtimes). Understanding this topology is the foundation for everything else.
Convex
Burgundy
Bridge
Source of truth
117 tablesInterpreter
Control plane
85+ routesApprovals
Execution router
AdaptersSSE
π Gateways
Runtimes
OpenClawClaude
Platform Overview
Full architecture diagram, data flow, and capability map.
π€ Explore agents
Agents are the actors in Forge. They have definitions (what they are), deployments (where they run), skills (what they know), and tools (what they can do). The agent registry in Convex is the source of truth for declared state; gateways hold runtime state.Key agent surfaces:
- Agent definitions β identity, model config, tool profiles, workspace files
- Agent templates β pre-built configurations for one-click deployment
- Skills and tools β the capability layers that determine what an agent can do
- Sessions β bounded interaction contexts with observable traces
- Memory β 3-layer model (session, channel, long-term) for context persistence
Agents Overview
Agent architecture, registries, and the capability model.
βοΈ Run a workflow
Workflows are defined in β a YAML DSL that declares steps, dependencies, roles, and failure handlers. The Convex interpreter parses definitions into a and drives execution through dispatch, governance, and state advancement.The execution lifecycle:
.lobsterXdefinition is parsed and validated- DAG is resolved from step dependencies
- Each step passes through the 10-gate governance pipeline
- Allowed steps are dispatched to gateways via Bridge
- Results flow back; the interpreter advances the DAG
- Checkpoints enable rewind and branch at any point
Workflows Overview
.lobsterX format, DAG execution, and checkpoints.
π‘οΈ Set up governance
Every step dispatch passes through a 10-gate safety pipeline before execution. Gates check gateway health, agent availability, concurrency, rate limits, budgets, trust levels, context trust, policies, and approval status. The pipeline produces a with a disposition of allow, block, or hold.
10-Gate Safety Pipeline
Gateway HealthAgent StatusConcurrencyRate LimitBudget (Agent)Budget (Envelopes)Trust LevelContext TrustPolicy RulesApproval
Governance Overview
Safety gates, policies, approvals, and budgets.
π Connect via API
The Platform API exposes 42+ REST endpoints under an OpenAPI 3.1 spec. Manage agents, trigger workflows, query run status, retrieve traces, and configure governance programmatically. Authentication uses API keys managed through the Burgundy dashboard.Available integration surfaces:
- REST API β full CRUD for agents, workflows, governance, and observability
- TypeScript SDK β typed client library wrapping all API operations
- MCP Server β Model Context Protocol server for agent-to-Forge integration
- Webhooks β configurable event notifications for workflow state changes
API Overview
Endpoints, authentication, and the OpenAPI spec.
π Next Steps
π Observability
Traces, analytics, and audit trails.
π Factories
Autonomous production units with agent teams.
π¦ TypeScript SDK
Typed client library and MCP server.

