Canvas and dashboard
When you need to see what your agents are doing or reopen one, read this page because it connects the canvas views to the commands that inspect and revive a node.
Canvas and dashboard
You can see every agent as a node on one canvas, find work that is blocked, and return to the exact conversation that needs you. Use the dashboard for a quick terminal view and the browser when you want to navigate the graph interactively.
Read the dashboard
Run:
crtr canvas dashboard
The dashboard prints the canvas as an ASCII subscription tree. Each row includes the node id, name, status, kind, mode, context-token count, and pending human asks. Add --root <node-id> to limit the tree to one root and its work.
A node's active status means its broker process is live; it does not necessarily mean that the model is generating text. A node may be dormant while it waits for an inbox message, a child report, a human answer, or a scheduled event.
Browse the graph
Run crtr canvas browse in a terminal for the interactive graph view. It has tabs, a collapsed tree, and / search. Press Enter on a node to focus it, or press q or Escape to leave the browser. In a viewer, the graph command opens the same canvas information without losing the conversation you were reading.
flowchart TD
root[Root node] --> research[Research node]
root --> build[Build node]
build --> review[Review node]
human[Your inbox answer] --> build
Find a blocked node
Use the human-attention view when you want to know which work is waiting for you:
crtr canvas attention list
It identifies the nodes that have pending human interactions across the canvas, oldest first. Run crtr human list when you need the individual tickets. You can also run crtr canvas attention count for a number only.
To inspect one node's neighbors, artifacts, and saved paths, run:
crtr node inspect show <node-id>
crtr node inspect artifacts <node-id> lists the reports and context documents that node left behind. crtr canvas history search searches reports and context documents across the current working directory; crtr canvas history read <ref> opens one result in full.
Reopen work
crtr surface node focus <node-id> is the normal way to return to a conversation or inspect finished work. It brings a running viewer into view, opens a parked resident's saved conversation, or shows a finished node's read-only transcript.
Use crtr node lifecycle revive <node-id> when you specifically need to relaunch a node's broker and resume its saved conversation. After an outage or reboot, crtr canvas revive --all previews every eligible disconnected node but launches nothing. Review that list, then use crtr node lifecycle revive <node-id> for the node or nodes you intend to bring back. The canvas preview does not include nodes that are done or canceled by choice.
The viewer
When you are watching or driving a node in tmux, read this page because it lists the viewer controls, slash commands, and the difference between a prompt, a steer, and an interrupt.
Answering agents in the human inbox
When an agent needs your decision or review, read this page because it explains the inbox pages it sends and how your answer resumes its work.