Documentation Index
Fetch the complete documentation index at: https://docs.rkat.ai/llms.txt
Use this file to discover all available pages before exploring further.
WorkGraph
Use this guide when an agent should coordinate durable work across sessions, compaction, restarts, schedules, or multiple agents.Agents write WorkGraph through tools. RPC, REST, and CLI are read-only
observability surfaces in v1.
Create Work
Useworkgraph_create for a durable commitment.
Link Dependencies
Useworkgraph_link to describe relationships.
blocks, the target is not ready until the blocker is terminally resolved.
Use related, parent, supersedes, or derived_from when readiness should
not be blocked.
Find Ready Work
Useworkgraph_ready instead of inferring readiness.
Claim Before Shared Work
Useworkgraph_claim before doing durable work. Include the current
expected_revision.
workgraph_get or
workgraph_snapshot, then decide whether the action still makes sense.
Update And Add Evidence
Useworkgraph_update for title, description, priority, labels, due gates, and
external references. Use workgraph_add_evidence for proof of progress or
completion.
Close Or Release
Useworkgraph_close only when terminal truth exists.
workgraph_release if you stop before terminal completion and another
agent should be able to claim the item.
Observe From Host Surfaces
Operators and UIs can inspect WorkGraph without mutating it:- CLI:
rkat workgraph list,show,ready,snapshot,events - REST:
GET /workgraph/items,/workgraph/ready,/workgraph/snapshot,/workgraph/events - RPC:
workgraph/get,workgraph/list,workgraph/ready,workgraph/snapshot,workgraph/events
Agent Instruction Manual
When skills are enabled and WorkGraph capability is available, agents can load theworkgraph-workflow companion skill for operating guidance.