Documentation

Ship your first agent in 10 minutes.

Concept guides, copy-paste tutorials, and exhaustive reference for the runtime, policy engine, and SDK.

Get started

Quickstart

Install the CLI, authenticate, and run your first workflow in under 10 minutes.

Read the quickstart
Build

Workflow DSL

Compose planner, executor, verifier, and writer agents with shared memory.

Workflow guide
Govern

Policy engine

Declarative policies that evaluate before every tool call. Spend caps, escalation, two-person.

Policy reference
Operate

Observability

OpenTelemetry-native traces, prompt diffs, cost attribution, replay.

Observability docs
Connect

Integrations & MCP

Wire up Salesforce, Slack, GitHub, or any MCP server.

Connector catalog
Trust

Security & compliance

SOC 2, ISO 27001, HIPAA, FedRAMP, EU AI Act conformity guides.

Trust center
Quickstart

Hello, agent.

  1. Install the CLI: npm i -g @mandarum/cli
  2. Authenticate: mandarum login
  3. Scaffold: mandarum init my-workflow
  4. Run: mandarum run · view traces in the dashboard
// my-workflow/index.ts
import { workflow, agent, tool } from "@mandarum/sdk";

export default workflow({
  name: "deal-desk-review",
  policy: "deal-desk.v1",
  steps: [
    agent.planner(),
    agent.executor({ tools: [tool.salesforce()] }),
    agent.verifier({ evalSet: "deals/golden-v3" }),
    agent.writer()
  ]
});