Skip to main content
agentgraph list gives you a table of every run in your runs directory, with status, DAG name, start time, and a node count breakdown. agentgraph resume is a shorthand that continues a run from where it left off — useful after an approval gate is cleared or after a crash.

agentgraph list

List all runs in the runs directory, ordered by most recent first.
agentgraph list [OPTIONS]

Flags

--runs-dir
string
default:"runs"
Directory containing run subdirectories to scan.
--status
string
Filter results to runs matching a derived status. Options: completed, paused, partial, failed.
--limit
number
default:"20"
Maximum number of rows to display.

Examples

agentgraph list

Output table

list prints a table with one row per run:
ColumnContents
run_id12-character hex run identifier
dagDAG name as declared in the YAML name: field
startedISO 8601 timestamp when the run began
statusDerived status (see below)
nodesNode status counts, e.g. completed=3, failed=1

Status derivation

agentgraph derives run status from the node table at list time — there is no separate run-level status field:
Derived statusCondition
pausedAt least one node is awaiting_approval
failedAt least one node is failed (and none are awaiting approval)
completedRun has a finished_at timestamp set
partialNone of the above — run stopped mid-way without a clean finish