golden-dataset-builder

Generates a reviewed 50-example golden evaluation dataset in JSONL batches.

1|9|Updated Jul 11, 2026
One-click install
npx skills add https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul --skill golden-dataset-builder-agenticgogol
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: golden-dataset-builder
Source: https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul/tree/main/.claude/skills/golden-dataset-builder
Command: npx skills add https://github.com/agenticgogol/Edureka_Coding_Agent_Enabled_Demo_11Jul --skill golden-dataset-builder-agenticgogol

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building a trustworthy evaluation dataset for an AI agent is slow and error-prone when done ad hoc. This Skill produces a structured golden set of roughly 50 examples, split across common, edge, and past-failure cases, with human review between batches so quality never slips. ## Core Features & Use Cases - Quota-based coverage: Allocates examples across tasks weighted by priority (P0 tasks get more), targeting ~60% common, ~25% edge, and ~15% past-failure cases. - Batched generation with review: Drafts 5-8 examples at a time in a fixed JSONL schema and only appends them to eval/golden_set.jsonl after user confirmation. - Live coverage tracking: Prints a running table of task ID versus category counts versus remaining quota after every batch. - Use Case: After defining agent tasks and metrics, run this Skill to produce eval/golden_set.jsonl — a reviewed, category-balanced dataset ready for grader-based evaluation. ## Quick Start Ask the agent to build the golden evaluation set from eval/tasks.md and eval/metrics.md, reviewing each batch of examples before it is appended to eval/golden_set.jsonl.

Frequently Asked Questions about golden-dataset-builder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a golden evaluation dataset for an AI agent?▼

Define tasks and metrics first, then generate examples in small reviewed batches rather than all at once. This Skill drafts 5-8 examples per batch in a fixed JSONL schema and appends them to eval/golden_set.jsonl only after you confirm each batch.

How many examples should an eval golden set contain?▼

This Skill targets roughly 50 examples split about 60% common cases, 25% edge cases, and 15% past-failure cases, weighted by task priority. The set is treated as a living artifact that grows over time from production monitoring and failure analysis.

What format does the golden dataset use?▼

The dataset is written as JSONL to eval/golden_set.jsonl, one object per line. Each record includes a stable sequential ID, task_id, category, input with user message and context, good and bad output notes, applicable metrics, and a source field.

What happens if there is no past failure data for the eval set?▼

The Skill does not fabricate past-failure examples when no real failure log exists. It relabels that quota slice as edge cases, notes the substitution, and expects the failure slice to grow later from production monitoring.

What are the prerequisites for generating the golden set?▼

Both eval/tasks.md and eval/metrics.md must exist before generation starts. If either file is missing, the Skill stops and points you to the prerequisite skill instead of proceeding.