# Quick Eval

> Full evaluation workflow - launch a run, watch progress, and summarize results. Use for end-to-end agent testing.

- Skill: `coval-ai/quick-eval` (Agent Skill)
- Install (CLI): `npx skillmds@latest add coval-ai/quick-eval`
- Raw SKILL.md: https://api.skillmd.com/api/skills/coval-ai/quick-eval/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: coval-ai (https://skillmd.com/u/coval-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/coval-ai/quick-eval

---


# Quick Evaluation

Run a complete evaluation for `$ARGUMENTS`: launch, monitor, and summarize results.

## Workflow

### Step 1: Select Resources

List and confirm resources:

```bash
coval agents list
coval test-sets list
coval personas list
```

Confirm with user:
- Agent to evaluate
- Test set to use
- Persona for simulation

### Step 2: Launch Run

```bash
coval runs launch \
  --agent-id <agent_id> \
  --persona-id <persona_id> \
  --test-set-id <test_set_id> \
  --name "Quick Eval - $(date +%Y%m%d-%H%M)"
```

Capture the run ID from output.

### Step 3: Watch Progress

```bash
coval runs watch <run_id>
```

Wait for completion.

### Step 4: Gather Results

```bash
coval runs get <run_id> --format json
coval simulations list --run-id <run_id> --format json
```

### Step 5: Summarize

Present a summary:

```
## Evaluation Complete

**Run:** <run_id>
**Agent:** <agent_name>
**Test Set:** <test_set_name>
**Duration:** X minutes

### Results
- Total Simulations: N
- Completed: N
- Failed: N

### Sample Simulations
[List 3-5 simulation IDs for review]

### Next Steps
- View full results: `coval simulations list --run-id <run_id>`
- Download audio: `coval simulations audio <sim_id> -o recording.wav`
- Get transcript: `coval simulations get <sim_id>`
```

