Skip to content
Documentation

Cordum documentation.

Code-checked docs for the Cordum Agent Control Plane. These pages track the current repos: the core control plane in cordum and the canonical wire protocol in cap.

Current core platform

API gateway, scheduler, Safety Kernel, workflow engine, context engine, dashboard, MCP bridge, andcordumctl.

Repo boundaries

Enterprise auth, licensing, SSO/SAML, and advanced RBAC live in separate repos. CAP protobufs and SDKs live in cap.

Start here
1

Run ./tools/scripts/quickstart.sh for the fastest local bring-up.

2

Use the generated CA certificate when calling the HTTPS gateway locally.

3

Open the dashboard at http://localhost:8082 and inspect status, approvals, jobs, and workflows.

terminal
bash
git clone https://github.com/cordum-io/cordum
cd cordum
./tools/scripts/quickstart.sh
curl --cacert ./certs/ca/ca.crt   -H "X-API-Key: $CORDUM_API_KEY"   -H "X-Tenant-ID: default"   https://localhost:8081/api/v1/status

Core concepts

Core concepts
Job

A schedulable unit of work submitted to the gateway and dispatched over CAP.

Workflow

A DAG of steps stored in Redis and advanced by the workflow engine.

Run

A single workflow execution with status, step state, and timeline.

Safety Kernel

The policy decision point for input policy, approvals, and constraints.

Output Safety

A post-execution policy layer that can allow, redact, or quarantine output.

Pack

An installable bundle of workflows, schemas, config overlays, and policy fragments.

Explore

Explore

Implementation Guides

Implementation guides