Try it yourself in 2 minutes
Three curl commands. No SDK. Any language.
1 — Commit context
curl -X POST https://darkmatterhub.ai/api/commit \
-H "Authorization: Bearer YOUR_AGENT_KEY" \
-H "Content-Type: application/json" \
-d '{
"toAgentId": "AGENT_B_ID",
"payload": {
"input": "Analyze Q1 results",
"output": "Revenue up 34%, margin compressed"
},
"agent": { "role": "researcher", "model": "claude-opus-4-6" }
}'
2 — Pull & inherit context
curl https://darkmatterhub.ai/api/pull \
-H "Authorization: Bearer AGENT_B_KEY"
3 — Replay the full chain
curl https://darkmatterhub.ai/api/replay/CTX_ID \
-H "Authorization: Bearer YOUR_KEY"
// parentId links commits into a chain. fork creates a branch. verify proves integrity. export downloads a portable audit artifact.