agentic-eval

agentic-eval is a skill for Claude Code, Codex from PracticalSwan/agent-skills. It costs 50 tokens per session (1,461 once invoked), scanned A, original, MIT.

A structured review workflow for checking AI-generated code, documents, analysis, or plans against explicit criteria.

In plain words
What is it for?
Use it to define a scoring rubric, review candidate work, turn feedback into changes, and repeat until the acceptance threshold or iteration limit is reached.
Why use it?
It reduces the risk of accepting incomplete or low-quality output after only one draft.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/practicalswan/agent-skills/agentic-eval
Any agent
npx skills add PracticalSwan/agent-skills --skill agentic-eval
Clone the repo
git clone --depth 1 https://github.com/PracticalSwan/agent-skills

Made for: Claude Code, Codex.

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 agentic-eval

README.md
[![agentmods](https://agentmods.dev/badge/skills/practicalswan/agent-skills/agentic-eval.svg)](https://agentmods.dev/skills/practicalswan/agent-skills/agentic-eval)
Your own site
<a href="https://agentmods.dev/skills/practicalswan/agent-skills/agentic-eval"><img src="https://agentmods.dev/badge/skills/practicalswan/agent-skills/agentic-eval.svg" alt="Measured on agentmods" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,461 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00050 $0.01461
Opus 5 $0.00025 $0.00731
Sonnet 5 $0.00010 $0.00292
Haiku 4.5 $0.00005 $0.00146

Measured today against content hash b1b2bfe19604, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

agentic-eval 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 today.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/rubric-scorecard.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

agentic-eval/SKILL.md · 187 lines

How it starts

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

Agentic Eval

Use structured evaluation loops to improve important outputs before you call them done.

  • Leverage native parallel subagent dispatch and 200k+ context windows where available.

When to Use

Use symptom -> action triggers: when one matches, apply this skill and verify with the protocol below.

  • A task is quality-critical and a single pass is too risky.
  • You need repeatable acceptance criteria for code, docs, analysis, or plans.
  • You want a reviewer or judge step that is separate from generation.
  • You need to compare multiple candidate outputs against the same rubric.

Core Loop

  1. Define the artifact being judged.
  2. Define a rubric with weighted dimensions.
  3. Generate or collect the candidate output.
  4. Evaluate it against the rubric.
  5. Convert the feedback into concrete changes.
  6. Re-run until the score crosses the threshold or the iteration budget is exhausted.

Evaluation Patterns

1. Self-Reflection

Use the same agent to critique its own work when the task is moderate risk and the rubric is precise.

Best for:

  • formatting checks
  • completeness checks
  • first-pass code or doc refinement

2. Evaluator-Optimizer Split

Separate generation from evaluation when you want clearer responsibilities.

Best for:

  • high-value outputs
  • rubric-based acceptance checks
  • comparing multiple candidates fairly

3. Evidence-Based Evaluation

Back the score with tests, logs, benchmarks, or direct verification.

Best for:

  • code generation
  • migration plans
  • architecture recommendations
  • security or compliance review

Rubric Design Rules

  • Keep dimensions few and concrete.
  • Weight the business-critical dimension highest.
  • Define what a passing score means before evaluation starts.
  • Require written evidence for any failing dimension.
  • Stop when you are no longer learning new fixes.

Suggested dimensions:

  • correctness
  • completeness
  • clarity
  • maintainability
  • risk management
  • evidence quality

Stop Conditions

Stop the loop when one of these becomes true:

Read the full file on GitHub · 187 lines

Files

What ships with it

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

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. today Changed b1b2bfe19604
  2. 4d ago First seen · 187 lines · 50 tokens per session scan A 470b923d249b

Subscribe to this mod's changes

agentic-eval is a skill published in the GitHub repository PracticalSwan/agent-skills (13 stars, last pushed 3d ago), licensed MIT. It adds 50 tokens to every session and 1,461 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

git-flow-pr

Executes the full PR-driven development workflow: create an isolated feature branch from the current work, commit all staged changes, rebase cleanly onto the selected base branch (skipping any ancestor commits already merged), push the branch, and open a GitHub pull request linked to a related issue. Includes guidance…

soulcodex/agentic · 103 tokens

memory-continuity

Preserves cross-session continuity with deterministic MEMORY.md, index.md, and snapshot handoffs under .agentic/memories/.

soulcodex/agentic · 30 tokens

new-gh-issue-orchestration

Orchestrates a GitHub-issue-driven delivery workflow from issue intake to PR creation using reviewer-first then worker execution. Invoked when the user provides a GitHub issue link/number and asks to start end-to-end delivery.

soulcodex/agentic · 54 tokens

git-worktree-workspaces

Sets up and uses Git worktrees for parallel task workspaces in the same repository clone, including safe cleanup of local worktrees. Invoked when the user asks to work on multiple branches at once, isolate tasks without extra clones, or create/remove worktrees.

soulcodex/agentic · 58 tokens

ac-tools-gcp-setup

Interactive GCP Cloud Build + Cloud Run setup. Provisions APIs, AR, SAs, IAM, secrets, and triggers.

WaterplanAI/agentic-config · 33 tokens

ac-git-worktree

Creates a git worktree with asset setup, serial branch/bootstrap creation, shared worker-wave environment setup, and direnv wiring. Triggers on keywords: worktree, create worktree, new worktree, git worktree.

WaterplanAI/agentic-config · 50 tokens