tine replay
tine replay has three practical modes: inspect recorded steps, write a cached replay artifact, or rerun through an explicit harness.
Usage
Terminal
tine replay <run_id_or_path> [--from-step <index_or_id_prefix>] [--mode cache|rerun]Inspect Recorded Steps
--inspect and --dry-run do not create a new run.
Terminal
tine replay finished.tine --inspect
tine replay finished.tine --from-step 5 --dry-runTerminal
Inspecting recorded steps...
+ 9e4b8c2a19dd done "Planning research approach..."
> 81bf0f67bb12 tool search(query="solid-state battery 2026")
+ 6d4a0b270a5f done "Synthesizing findings..."Cached Replay
--mode cache forks from the selected tip and records replay metadata showing how many steps were reused.
Terminal
tine replay finished.tine --mode cache --save replayed.tineHarness Rerun
--mode rerun requires --harness from the CLI. The selected harness gets recorded context and produces a new run graph.
Terminal
tine replay finished.tine \
--mode rerun \
--harness codex \
--prompt "Rerun this task using the recorded context." \
--save replayed_codex.tine \
--compareOptions
--from-stepselects a traversal index, full ID, or unique ID prefix.--savewrites the replayed run to a specific path.--compareprints a diff after harness replay.--harnessaccepts the same harness names astine run.