Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/Abhillashjadhav/AI-PM-essential-skillsnpx agentmods add skills/abhillashjadhav/ai-pm-essential-skills/eval-engineWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/abhillashjadhav/ai-pm-essential-skills/eval-engine)<a href="https://agentmods.dev/skills/abhillashjadhav/ai-pm-essential-skills/eval-engine"><img src="https://agentmods.dev/badge/skills/abhillashjadhav/ai-pm-essential-skills/eval-engine/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/abhillashjadhav/ai-pm-essential-skills/eval-engine"><img src="https://agentmods.dev/badge/skills/abhillashjadhav/ai-pm-essential-skills/eval-engine.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00190 | $0.02112 |
| Opus 5 | $0.00095 | $0.01056 |
| Sonnet 5 | $0.00038 | $0.00422 |
| Haiku 4.5 | $0.00019 | $0.00211 |
Grade A, and why
eval-engine scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Eval Engine
This skill powers AI Evals for PMs. Its stable install and CLI identifier is
pm-verifier.
Keep the user-facing flow simple:
product contract → define surfaces → create eval suite → run trials → grade → inspect failures → release decision
Put framework complexity in the bundled harness, not in the PM's workflow.
1. Start from the claim
Read the spec or existing suite. State the decision the evaluation must support:
- Capability: what can the candidate do, and how often does at least one attempt succeed?
- Regression: can the candidate still perform previously reliable behavior consistently?
- Safeguard: does a safety or privacy control block forbidden behavior?
Ask for missing product facts. Never invent policies, expected fields, thresholds, reference answers, or safety boundaries.
Classify each approved claim against four surfaces:
- Outcome: the final user/environment state.
- Trajectory: the risk-critical path, tools, policies, and decisions.
- System: required and optional checkpoints, identity, continuity, first failure, and consequences.
- Memory: only when the product promises persistence; write, retrieve, update, forget, isolation, freshness, conflict, and time semantics.
Safety, privacy, reliability, quality, and operations are cross-cutting grader categories. Capability and regression are suite lifecycle purposes.
2. Define good
Separate:
- Gates: binary, disqualifying checks on one trial. Prefer deterministic code checks for objective facts, outcome state, tool calls, required structure, safety, and privacy.
- Rubric criteria: gradual 1–5 judgments for useful differences among gate-clearing outputs. Use feature-specific anchors and a worked example.
Use the smallest complete set. Do not add weak gates to satisfy a fixed count. Read references/gate-design.md when a check could be either a gate or a score.
3. Create the suite
Create the files in references/evidence-contract.md. Record:
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/complete-eval/cases.jsonl 1.0 KB
- examples/complete-eval/ci/github-actions.yml 2.0 KB
- examples/complete-eval/contracts/engineering-contract.json 911 B
- examples/complete-eval/contracts/eval-contract.json 2.0 KB
- examples/complete-eval/contracts/pmos-contract.json 3.3 KB
- examples/complete-eval/dataset.json 267 B
- examples/complete-eval/evidence-receipt.json 470 B
- examples/complete-eval/faults/specs.json 3.0 KB
- examples/complete-eval/pilot.json 783 B
- examples/complete-eval/product-package.json 1.6 KB
- examples/complete-eval/README.md 3.0 KB
- examples/complete-eval/reference_adapter.py 6.1 KB runs code
- examples/complete-eval/run.json 1.9 KB
- examples/complete-eval/suite.json 8.2 KB
- examples/complete-eval/synthetic_candidate.py 659 B runs code
- examples/complete-eval/tools/repository_pilot.py 41 KB runs code
- examples/complete-eval/trials.jsonl 16 KB
- examples/migrated/Evals-pass-1/agent.py 1.7 KB runs code
- examples/migrated/Evals-pass-1/eval_set.json 1.4 KB
- examples/migrated/Evals-pass-1/part2/answer_key.py 941 B runs code
- examples/migrated/Evals-pass-1/part2/items.py 2.5 KB runs code
- examples/migrated/Evals-pass-1/part2/verdicts_swapped.json 971 B
- examples/migrated/Evals-pass-1/part2/verdicts.json 971 B
- examples/migrated/Evals-pass-1/PROVENANCE.md 1.2 KB
- examples/migrated/Evals-pass-1/store.py 1.5 KB runs code
- examples/migrated/pm-evals/examples/coding-assistant/generate.py 11 KB runs code
- examples/migrated/pm-evals/examples/coding-assistant/README.md 3.9 KB
- examples/migrated/pm-evals/examples/coding-assistant/rubric.md 850 B
- examples/migrated/pm-evals/examples/coding-assistant/traces.jsonl.xz 22 KB
- examples/migrated/pm-evals/examples/customer-support/generate.py 13 KB runs code
- examples/migrated/pm-evals/examples/customer-support/README.md 4.1 KB
- examples/migrated/pm-evals/examples/customer-support/rubric.md 1.0 KB
- examples/migrated/pm-evals/examples/customer-support/traces.jsonl.xz 19 KB
- examples/migrated/pm-evals/examples/pairwise/pairs.jsonl 1.3 KB
- examples/migrated/pm-evals/examples/pairwise/rubric.md 511 B
- examples/migrated/pm-evals/examples/summarization/generate.py 9.4 KB runs code
- examples/migrated/pm-evals/examples/summarization/README.md 4.4 KB
- examples/migrated/pm-evals/examples/summarization/rubric.md 870 B
- examples/migrated/pm-evals/examples/summarization/sources.jsonl.xz 17 KB
- examples/migrated/pm-evals/examples/summarization/traces.jsonl.xz 45 KB
- examples/migrated/pm-evals/golden/golden_grading_template.md 34 KB
- examples/migrated/pm-evals/golden/golden_grading_workbook.md 26 KB
- examples/migrated/pm-evals/golden/golden_scores.json 13 KB
- examples/migrated/pm-evals/golden/golden_traces.jsonl 28 KB
- examples/migrated/pm-evals/golden/judge_prompt_golden.md 27 KB
- examples/migrated/pm-evals/golden/judge_results_golden.json 11 KB
- examples/migrated/pm-evals/golden/README.md 2.2 KB
- examples/migrated/pm-evals/PROVENANCE.md 2.0 KB
- examples/production-eval/calibration.json 1.4 KB
- examples/production-eval/calibration/human-goldens.jsonl 2.7 KB
- examples/production-eval/calibration/judge-labels-biased.jsonl 2.2 KB
- examples/production-eval/calibration/judge-labels.jsonl 2.2 KB
- examples/production-eval/calibration/pairwise-biased.jsonl 284 B
- examples/production-eval/calibration/pairwise-stable.jsonl 284 B
- examples/production-eval/cases.jsonl 528 B
- examples/production-eval/dataset.json 254 B
- examples/production-eval/faults/specs.json 998 B
- examples/production-eval/judgments.jsonl 1.9 KB
- examples/production-eval/reference_adapter.py 1.4 KB runs code
- examples/production-eval/run.json 1.2 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 177 lines · 190 tokens per session scan A d8c669535a9a
eval-engine is a skill published in the GitHub repository Abhillashjadhav/AI-PM-essential-skills (2 stars, last pushed 9d ago), licensed MIT. It adds 190 tokens to every session and 2,112 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
config-evals
Builds and maintains configuration-based evaluations on a workflow with the eval-config tool. Use when the user asks to set up, add, view, change, or remove an evaluation, score, grade, or judge a workflow's output, or measure answer quality against a test dataset. This is the only eval form Instance AI handles — it…
agent-eval
Use when measuring whether an LLM or agent system actually got better and gating merges on it: golden sets, fixing an inflated LLM-as-judge, scoring RAG (faithfulness, contextual recall) or agent trajectories (tool correctness, completion), or picking an eval framework. NOT building the agent loop, tools or RAG…
AI System Quality Engineer
Test LLM, RAG, MCP, and agentic systems end to end. Build golden datasets, run deterministic checks and LLM judges, score retrieval, probe prompt injection, verify tool use, and gate CI on thresholds. Orchestrates DeepEval, Ragas, promptfoo, and Langfuse.
test-agent
Systematisches Testen von BACH und anderen LLM-OS-Systemen. Orchestrator fuer Test- und Vergleichs-Workflows.
evals-router
Use when evaluating LLM or RAG outputs: audit eval coverage, analyze failed traces, write binary judge prompts, validate judges against labels, generate targeted synthetic cases, evaluate retrieval quality, or plan review tooling. Do not use for ordinary software test implementation.
agent-evaluation
You're a quality engineer who has seen agents that aced benchmarks fail spectacularly in production. You've learned that evaluating LLM agents is fundamentally different from testing traditional software—the same input can produce different outputs, and "correct" often has no single answer.