model-evaluator-pm

model-evaluator-pm is an agent for Claude Code from VandanaAjayDubey111/great-pm. It costs 49 tokens per session (2,336 once invoked), scanned A, original, MIT.

An evaluation-plan agent that defines what a good AI model response looks like before the model is chosen or trained. It drafts correct-answer examples, edge cases, adversarial cases, and regression rules.

In plain words
What is it for?
Use it to propose an AI evaluation plan, create a reference answer set, identify difficult or misleading inputs, and define checks for future model changes.
Why use it?
It prevents “the model seems to work” from becoming the only quality standard. It makes quality measurable before implementation begins, similar to test-driven development (TDD), where tests are written before code.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; mentions subagents.

Part of the great-pm plugin — 10 commands, 48 agents shipped together

Good fit Use it to propose an AI evaluation plan, create a reference answer set, identify difficult or misleading inputs, and define checks for future model changes.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/vandanaajaydubey111/great-pm/model-evaluator-pm
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/VandanaAjayDubey111/great-pm

Made for: Claude Code.

Or install great-pm, the plugin that ships this one along with the rest of its 10 commands, 48 agents.

Wrote 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.

agentmods badge for model-evaluator-pm

README.md
[![agentmods](https://agentmods.dev/badge/agents/vandanaajaydubey111/great-pm/model-evaluator-pm/github.svg)](https://agentmods.dev/agents/vandanaajaydubey111/great-pm/model-evaluator-pm)
Your own site
<a href="https://agentmods.dev/agents/vandanaajaydubey111/great-pm/model-evaluator-pm"><img src="https://agentmods.dev/badge/agents/vandanaajaydubey111/great-pm/model-evaluator-pm/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.

agentmods 80×15 button for model-evaluator-pm

Your own site · 80×15
<a href="https://agentmods.dev/agents/vandanaajaydubey111/great-pm/model-evaluator-pm"><img src="https://agentmods.dev/badge/agents/vandanaajaydubey111/great-pm/model-evaluator-pm.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,336 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.02336
Opus 5 $0.00024 $0.01168
Sonnet 5 $0.00010 $0.00467
Haiku 4.5 $0.00005 $0.00234

Measured 11d ago against content hash a840a9c75466, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

model-evaluator-pm 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 11d 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.

agents/model-evaluator-pm.md · 209 lines

How it starts

The opening of the file, as written. The whole thing — 209 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are model-evaluator-pm — the eval-set designer. You force the team to define what "good" means before the model is selected, prompted, or trained. Without you, "the model seems to work" becomes the only quality bar.

Governance (MANDATORY — overrides everything below)

You DRAFT and PROPOSE. You never run the actual eval pipeline (that's engineering / mlops-pm); you author the eval plan + the golden truth set + the regression rules. The team and pm-reviewer review your plan; the human approves it before any model selection.

Phase task tracking

source .great-pm/env.sh 2>/dev/null || export PATH="/opt/homebrew/bin:$HOME/.local/bin:/usr/local/bin:$PATH"
mkdir -p .great-pm/drafts
SLUG="<initiative-slug>"
TASK_ID=$(bd create "eval-plan: $SLUG — model-evaluator-pm" \
  --type task --priority 1 --label "stage-strategize,ai-eval" --json 2>/dev/null \
  | python3 -c "import json,sys; print(json.load(sys.stdin).get('id',''))" 2>/dev/null)
bd update "$TASK_ID" --claim 2>/dev/null

Environment setup

source .great-pm/env.sh 2>/dev/null || export PATH="/opt/homebrew/bin:$HOME/.local/bin:/usr/local/bin:$PATH"
PROJECT=.great-pm/PROJECT.md

Read past lessons FIRST

[ -f ~/.great-pm/decisions.md ] && grep -iE "eval|golden|regress" ~/.great-pm/decisions.md | tail -20
[ -f .great-pm/lessons.md ] && grep -iE "eval|golden|regress" .great-pm/lessons.md | tail -20
[ -f .great-pm/brain.md ] && tail -40 .great-pm/brain.md

Mission

Before any model is selected or prompted, author an evaluation plan that defines what "good" means in measurable terms. The plan must answer: which model wins, on what set, by how much, and how do we know it didn't break what already worked.

What an eval plan must contain

Section What it answers
Task definition What input → what output, precisely. No fuzz.
Golden truth set N examples (50–500) of correct input→output, drawn from real users where possible
Edge cases Inputs that broke last time, ambiguous inputs, multilingual, long context, short context
Adversarial set Inputs designed to fail (jailbreaks, prompt injection, ambiguity), per OWASP LLM Top 10
Metrics Exact metric per task type (accuracy, F1, BLEU, rouge, exact-match, LLM-as-judge)
Pass/fail threshold A number, not "good enough". E.g. ≥92% on golden, ≥85% on edge, 0 jailbreaks on adversarial
Regression rule Any drop > X% on any subset BLOCKS deployment
Subgroup slicing Performance broken down by user segment, language, geography to catch fairness regressions

Read the full file on GitHub · 209 lines

Changes

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.

  1. 11d ago First seen · 209 lines · 49 tokens per session scan A a840a9c75466

Subscribe to this mod's changes

model-evaluator-pm is an agent published in the GitHub repository VandanaAjayDubey111/great-pm (3 stars, last pushed 1mo ago), licensed MIT. It adds 49 tokens to every session and 2,336 once invoked, about $0.0002 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.

Related

Other agents, from other repositories

ai-eval-engineer

Builds and maintains the eval pipeline for ai-system / agent-product archetypes. Outputs tests/eval/EVAL-.md files (golden citation, refuse-when-uncertain, output schema, prompt injection, cost-overrun, cross-user isolation). Runs regression on every prompt or model change. Detects drift.

avelikiy/great_cto · 71 tokens

performance-engineer

Performance specialist. Owns SLO/SLA budget design, load test execution (k6/Locust/Gatling), latency regression analysis, flame graph interpretation, and capacity planning. Runs after senior-dev, before QA. Writes docs/performance/PERF-{slug}.md. Activated when performance-sla is set in PROJECT.md, or archetype is…

avelikiy/great_cto · 83 tokens

developer

Use when execute-round's Phase 3 (dev body) needs to implement BA design exactly. Writes source + tests per file decomposition, runs pre-audit quality gates, registers forward-debts, and reports diff summary.

Arch1eSUN/Arcgentic · 47 tokens

mobile-app-builder

React Native implementer for Product-Builder products whose users work in the field (home-services dispatch, construction field-docs, field-booking, delivery). Builds the mobile app to the design-advisor's RN contract with TDD — offline-first sync, camera/photo + location capture, push notifications, and…

avelikiy/great_cto · 122 tokens

e2e-test-engineer

Use after qa-engineer passes and before/around devops deploy. Generates Playwright golden-path E2E specs (auth → create → pay) for the shipped product, then replays them against the LIVE URL as the post-deploy gate — replacing infra-provisioner's 3-ping smoke check with real user-journey proof.

avelikiy/great_cto · 76 tokens

senior-dev

Use to implement tasks from Beads backlog. Claims a task, implements with TDD, closes when done. Can run in parallel.

avelikiy/great_cto · 31 tokens