Managing Jobs (CLI)
Job status
ssynth job status <JOB_ID>
Shows status, run counts, step details, and winner info. Add --watch to refresh every 5 seconds:
ssynth job status <JOB_ID> --watch
List jobs
ssynth job list
ssynth job list --status running
ssynth job list --project <PROJECT_ID> --limit 10
Logs
View historical logs:
ssynth job logs <JOB_ID>
ssynth job logs <JOB_ID> --offset 100 --limit 50
Stream logs in real time:
ssynth job logs <JOB_ID> --follow
Cancel
ssynth job cancel <JOB_ID>
Stops all in-flight runs immediately.
Retry
Re-run failed seeds:
ssynth job retry <JOB_ID>
ssynth job retry <JOB_ID> --scope all # retry all seeds, not just failed
Clone
Create a new job from an existing one, with optional overrides:
ssynth job clone <JOB_ID>
ssynth job clone <JOB_ID> --seeds 16 --priority batch
Download artifacts
List artifacts:
ssynth artifact list <JOB_ID>
Download the build archive:
ssynth artifact download <JOB_ID>
ssynth artifact download <JOB_ID> --output-dir ./builds