Find the run
--mode (dry_run, pilot, live) and --status (queued, running, completed, failed).
Read one run
Read the work as tickets
ticket show renders its whole story tree:
Find what needs attention
--since takes a window like 15m or 24h. jstm agent stories --all sweeps every agent at once, which is the fastest way to see whether anything is stuck across your whole workspace.
Export for sharing or analysis
--out writes the payload to a file. --json sends it to stdout, clean of any diagnostics.
Reading a failure
When a story fails, three things tell you why.- The story’s failure detail, in
jstm agent run show— what the step was trying to do and what it got back. - The error policy, which explains what happened next. A
CRITICALstep aborts the run; aMUST_HAPPENstep retries with backoff; aBEST_EFFORTstep records the failure and the run continues. - The ticket, which states the consequence in business terms.
Judging success
A run that ended without an error is not automatically a success. The question is whether the intended outcome occurred. Compare the run’s output against the acceptance criteria in the agent’s spec:See also
- Runs and work — the model.
- Evidence, memory, and metrics — what counts as proof.
jstm ticket— full reference.