Musketeer logo Musketeer

musketeer run status

The run status command displays the status of execution runs.

Usage

# List all runs with summary
musketeer run status

# Show status of a specific run
musketeer run status --replay <REPLAY_ID>

What it shows

Without --replay, the command lists all runs with a summary line per run:

<replay_id>  tasks <done>/<total>  last <timestamp>

With --replay <id>, it shows details for that specific run including task counts and last progress timestamp.

Options

Option Description
--replay <REPLAY_ID> Show status for a specific run

Example

List all runs:

musketeer run status

Show a specific run:

musketeer run status --replay a1b2c3d4-e5f6-7890-abcd-ef1234567890

How the latest run is selected

When no --replay flag is given, run status lists all runs sorted lexicographically by replay ID.

Next steps

  • Use check to validate run invariants