evals-implement

evals-implement is a skill for Claude Code from tikalk/adlc-team-skills. It costs 30 tokens per session (1,234 once invoked), scanned A, original, MIT.

A tool for generating executable graders, metrics, tests, and configuration from a goldset, which is a collection of expected examples and pass/fail judgments. The generated code evaluates whether an AI system meets each stated criterion.

In plain words
What is it for?
Use it to create Python graders for PromptFoo or DeepEval, binary pass/fail metrics, evaluator unit tests, and a complete evaluation configuration.
Why use it?
It turns evaluation rules into runnable checks and tests the checks themselves against known examples.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to create Python graders for PromptFoo or DeepEval, binary pass/fail metrics, evaluator unit tests, and a complete evaluation configuration.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tikalk/adlc-team-skills/evals-implement
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.

Any agent
npx skills add tikalk/adlc-team-skills --skill evals-implement
Clone the repo
git clone --depth 1 https://github.com/tikalk/adlc-team-skills

Made for: Claude Code.

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 evals-implement

README.md
[![agentmods](https://agentmods.dev/badge/skills/tikalk/adlc-team-skills/evals-implement.svg)](https://agentmods.dev/skills/tikalk/adlc-team-skills/evals-implement)
Your own site
<a href="https://agentmods.dev/skills/tikalk/adlc-team-skills/evals-implement"><img src="https://agentmods.dev/badge/skills/tikalk/adlc-team-skills/evals-implement.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,234 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00030 $0.01234
Opus 5 $0.00015 $0.00617
Sonnet 5 $0.00006 $0.00247
Haiku 4.5 $0.00003 $0.00123

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

Security

Grade A, and why

evals-implement 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 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/bash/setup-evals-implement.sh, scripts/powershell/setup-evals-implement.ps1), 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.

skills/evals/evals-implement/SKILL.md · 86 lines

How it starts

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

evals-implement

What this skill does

Generates the complete executable evaluation implementation following EDD Principle VIII (Close Production Loop) from the published goldset, with automated unit testing to verify evaluator correctness.

Output:

  1. Grader/Metric Implementation - Python evaluators for each goldset criterion with binary pass/fail
    • PromptFoo: Python grader functions with JSON output in evals/{system}/graders/
    • DeepEval: Custom metric classes inheriting from BaseMetric
  2. Evaluator Unit Tests - Automated tests (evals/{system}/tests/test_check_*.py) that run the goldset pass/fail examples against the generated graders to ensure the evaluator itself is accurate
  3. Evaluation Configuration - Complete config file (config.js or config.py) with Tier 1 + Tier 2 evaluation structure
  4. Auto-handoff to /evals-validate to run validation

Key EDD Principles Applied:

  • Principle VIII: Close Production Loop - Failure type gates route to appropriate actions
  • Principle II: Binary Pass/Fail - Ensure graders return strictly 1.0 (pass) or 0.0 (fail)
  • Principle IX: Test Data as Code - Unit test generated code against dataset examples

When to use

  • After /evals-clarify: Convert accepted goldset criteria into executable code
  • Regenerating configs: Re-build evaluator suite after adding new goldset criteria
  • Adding unit tests: Hardening the evaluator itself against regression or bugs

When NOT to use

  • Goldset not published: Run /evals-clarify to generate goldset.json first
  • Running evaluations: Use /evals-validate to run the suite against application outputs

Process

User Input

$ARGUMENTS
  • --system SYSTEM — Override active evaluation framework (promptfoo or deepeval)
  • --no-tests — Skip automated unit test generation for graders (not recommended)

Execution Steps

Phase 1: Trace-to-Grader Synthesis (Automated Eval Engineering)
  • Reads evals/{system}/goldset.json.
  • Maps rich evidence fields from the goldset criteria into grader logic (Trace-to-Grader Synthesis):
    • Uses pass_condition and fail_condition as the grader's core rubric.
    • Extracts pass/fail examples to act as raw data anchors and few-shot classification anchors inside the grader logic.
    • Injects Root Cause Analysis and axial_coding notes as contextual prompt guidelines or regex patterns to catch exact failure manifestations.
  • For PromptFoo: Generates Python grader functions (evals/{system}/graders/check_*.py) containing specialized, dynamic LLM-judge templates or regex checks compiled from these goldset inputs.
  • For DeepEval: Generates Custom Metric classes inheriting from BaseMetric compiled from these goldset inputs.
  • All graders conform strictly to the binary pass/fail standard (returning only 1.0 or 0.0, with zero Likert scale leakage).

Read the full file on GitHub · 86 lines

Files

What ships with it

2 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. 8d ago First seen · 86 lines · 30 tokens per session scan A 4ee6425d6061

Subscribe to this mod's changes

evals-implement is a skill published in the GitHub repository tikalk/adlc-team-skills (132 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 1,234 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-30.