Prepare data
Build a versioned eval set from raw traces/logs or synthetic scenarios, dedup, sample for coverage, redact PII, emit evalset.jsonl. Use when the user wants to turn production traces into test cases or assemble an eval dataset. Do NOT use when there is no data at all (use user-simulator first to bootstrap scenarios), and do NOT use to score cases (use grade) or to run the agent (use run-inference).From its SKILL.md
npx -y skills add avnath13/evalpilot --skill prepare-dataAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 369 tokens by cl100k_base, as published. Nobody here has run it
prepare-data: traces → eval set
Output: .evalpilot/evalset.jsonl, each line conforming to evalpilot/schemas/evalcase.schema.json.
Procedure
- Ingest. Read
data.traces_path(glob) and/orscenarios.jsonlfrom user-simulator. Accept common shapes: raw JSONL logs, OpenTelemetry spans, chat transcripts. - Distill each trace into a case. Extract the initial
input. Setorigin: "trace"and carrysource_trace_idso run-inference can skip re-running it. For synthetic scenarios setorigin: "synthetic". - Redact PII when
data.redact_piiis true, emails, names, card/refund identifiers are masked ininputbefore writing. Never write raw PII to the eval set. - Dedup & sample for coverage. Drop near-duplicate inputs. Prefer diversity across
tagsand intent so the set isn't 80% "reset my password". Target a balanced set; log what you sampled out (no silent truncation). - Attach reference signals where derivable (e.g. the tool result that reveals the
correct refund amount becomes
reference.expected_refund). Optional but powerful. - Version. Stamp
version(date + counter). Write the file. Print a summary:147 traces → 92 cases (61 trace, 31 synthetic) across 8 tags.
Guardrails
- If zero usable traces are found, say so and suggest
data.source: synthetic. - Keep ids stable across versions so metrics are comparable over time.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.