testy-claw replay

Step through a past run log to inspect every tool call, its inputs, outputs, and timing. Essential for debugging failed runs.

Usage

terminal
testy-claw replay [run-id] [options]

Example

terminal
# Replay the most recent run
testy-claw replay

  Run: run_abc123  (2024-01-15T10:32:11Z)
  Task: "add a README.md"
  Status: completed  ·  2.1s  ·  2 steps
  ─────────────────────────────────────────
  Step 1  fs.read("package.json")
          → { "name": "my-project", "version": "1.0.0" }
          12ms

  Step 2  fs.write("README.md", "# my-project\n...")
          → 42 lines written
          8ms

# Replay a specific run by ID
testy-claw replay run_abc123

# List all saved runs
testy-claw replay --list

Options

FlagDescription
--listList all saved run IDs with status and timestamp
--jsonOutput the full run log as JSON
--step <n>Show only step N