Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.coval.dev/llms.txt

Use this file to discover all available pages before exploring further.

List Simulations

coval simulations list [OPTIONS]
OptionTypeDefaultDescription
--filterstringFilter expression
--run-idstringFilter by run ID
--page-sizenumber50Results per page
--order-bystringSort order
Output columns: ID, STATUS, RUN, TEST CASE, AUDIO
# List all simulations
coval simulations list

# Filter by run
coval simulations list --run-id run_abc123

# Combine filters
coval simulations list --filter 'status="COMPLETED"' --run-id run_abc123

Get Simulation

coval simulations get <simulation_id>
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID
Returns full simulation details as JSON including transcript, status, and metadata.
coval simulations get sim_abc123

Download Audio

Download or get the audio URL for a simulation recording.
coval simulations audio <simulation_id> [OPTIONS]
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID
OptionTypeDescription
-o, --outputstringFile path to save audio
# Print audio URL
coval simulations audio sim_abc123

# Download audio file
coval simulations audio sim_abc123 -o recording.wav
When using -o, a progress bar shows the download status.

List Metrics

List all metric results for a simulation.
coval simulations metrics <simulation_id>
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID
Output columns: OUTPUT ID, METRIC ID, STATUS, VALUE, SUBVALUES
coval simulations metrics sim_abc123

Get Metric Detail

Retrieve metric results for a simulation. The second argument accepts two ID types and the output adapts accordingly:
  • 26-char MetricOutput ULID — prints one row (the specific output).
  • 22-char Metric definition ID — prints every output recorded for that metric on the simulation.
coval simulations metric-detail <simulation_id> <id>
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID
idstringYesEither a 26-char MetricOutput ULID or a 22-char Metric definition ID
By MetricOutput ULID (one row):
coval simulations metric-detail sim_abc123 01ARZ3NDEKTSV4RRFFQ69G5FAV
By Metric definition ID (one or more rows):
coval simulations metric-detail sim_abc123 29BlkepvvX19ebbLDB0y6Q

Delete Simulation

coval simulations delete <simulation_id>
ArgumentTypeRequiredDescription
simulation_idstringYesThe simulation ID to delete

Simulation Statuses

StatusDescription
PENDINGSimulation is created but not yet started
IN_QUEUESimulation is queued for execution
IN_PROGRESSSimulation is actively running
COMPLETEDSimulation finished successfully
FAILEDSimulation encountered an error
CANCELLEDSimulation was cancelled
DELETEDSimulation was deleted
When using --filter, use the underscore-separated enum values (e.g., status="IN_PROGRESS").