بنقرة واحدة
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 ويثبّتها لك.
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.
استنادا إلى تصنيف SOC المهني
| 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.