원클릭으로
eval-suite-bootstrap
Bootstrap a minimal evaluation suite for an LLM-powered feature.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Bootstrap a minimal evaluation suite for an LLM-powered feature.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review code changes and report issues by severity with actionable fixes.
Sharpen a fuzzy intention into one measurable objective string that drives the rest of the work.
Convert a Prompt Flow PRS pipeline submission to run a Microsoft Agent Framework workflow.
Build a Model Context Protocol (MCP) server that lets an LLM call into external tools and resources.
Summarize PDF documents into concise bullet-point digests.
Bump a dependency version across a pnpm workspace and update lockfile.
| slug | eval-suite-bootstrap |
| name | Eval Suite Bootstrap |
| version | 0.1.0 |
| description | Bootstrap a minimal evaluation suite for an LLM-powered feature. |
| category | evaluation |
| tags | ["evals","llm","testing","benchmark"] |
| inputs | [{"name":"feature","type":"string","required":true,"description":"LLM feature to evaluate"},{"name":"criteria","type":"string","required":false,"description":"What good output looks like"}] |
| output | {"format":"markdown","description":"Eval suite structure with dataset, judges, and CI integration."} |
| author | badhope |
| license | MIT |
| created | "2026-06-21T00:00:00.000Z" |
| updated | "2026-06-21T00:00:00.000Z" |
Shipping an LLM feature, moving from prototype to production, or standardizing evals.
Describe the feature and quality criteria.
A bootstrap eval suite plan with examples.
Bootstrap an LLM evaluation suite.
Output:
1. Evaluation types: unit, pairwise, human-in-the-loop
2. Dataset: 20-50 examples covering happy path, edge cases, regressions
3. Judges: deterministic assertions, LLM-as-judge rubrics, human labels
4. Metrics: accuracy, relevance, safety, latency, cost
5. CI integration: when to run evals, gating criteria
6. Example eval case with input, expected behavior, and rubric
Keep it minimal but production-ready.
Input:
feature: 'support ticket auto-reply'
criteria: 'accurate, empathetic, does not promise refunds'
Output:
## Eval Types
- Unit: deterministic checks (reply contains ticket ID, no refund promise).
- LLM-as-judge: rate empathy and accuracy 1-5.
## Dataset
30 tickets across refund, bug, account categories.
## CI
Run on every prompt change; fail if accuracy < 85% or safety violations > 0.
These are the bugs that bite every new user. Check them before shipping:
Evals too easy: Test cases that all pass immediately don't catch regressions.
Noisy LLM-as-judge: LLM judges with vague rubrics give inconsistent scores.
Test data leakage: Training data that overlaps with evaluation examples.
Evals not blocking releases: CI passes but evals aren't enforced as gates.
Metrics not aligned with user experience: Optimizing for automated metrics that don't reflect actual quality.