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 Test Sets
coval test-sets list [OPTIONS]
| Option | Type | Default | Description |
|---|
--filter | string | — | Filter expression |
--page-size | number | 50 | Results per page |
--order-by | string | — | Sort order |
Output columns: ID, NAME, TYPE, CASES, CREATED
Get Test Set
coval test-sets get <test_set_id>
| Argument | Type | Required | Description |
|---|
test_set_id | string | Yes | The test set ID |
coval test-sets get ts_abc123
Create Test Set
coval test-sets create [OPTIONS]
| Option | Type | Required | Description |
|---|
--name | string | Yes | Test set name |
--slug | string | No | URL-friendly identifier (auto-generated if omitted) |
--description | string | No | Description of the test set |
--type | string | No | Test set type: DEFAULT, SCENARIO, TRANSCRIPT, or WORKFLOW |
# Create a basic test set
coval test-sets create --name "Customer Support Scenarios"
# Create with all options
coval test-sets create \
--name "Billing Scenarios" \
--slug "billing-scenarios" \
--description "Test cases for billing-related inquiries" \
--type SCENARIO
Update Test Set
coval test-sets update <test_set_id> [OPTIONS]
| Argument | Type | Required | Description |
|---|
test_set_id | string | Yes | The test set ID to update |
| Option | Type | Description |
|---|
--name | string | New name |
--slug | string | New slug |
--description | string | New description |
coval test-sets update ts_abc123 --name "Updated Name"
Delete Test Set
coval test-sets delete <test_set_id>
| Argument | Type | Required | Description |
|---|
test_set_id | string | Yes | The test set ID to delete |