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
Trust
Security & compliance
SOC 2, ISO 27001, HIPAA, FedRAMP, EU AI Act conformity guides.
Trust centerQuickstart
Hello, agent.
- Install the CLI: npm i -g @mandarum/cli
- Authenticate: mandarum login
- Scaffold: mandarum init my-workflow
- 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() ] });