Install
$ agentstack add skill-tikalk-adlc-team-skills-evals-implement ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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:
- 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
- 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 - Evaluation Configuration - Complete config file (
config.jsorconfig.py) with Tier 1 + Tier 2 evaluation structure - Auto-handoff to
/evals-validateto 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-clarifyto generategoldset.jsonfirst - Running evaluations: Use
/evals-validateto run the suite against application outputs
Process
User Input
$ARGUMENTS
--system SYSTEM— Override active evaluation framework (promptfooordeepeval)--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_conditionandfail_conditionas 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 Analysisandaxial_codingnotes 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
BaseMetriccompiled from these goldset inputs. - All graders conform strictly to the binary pass/fail standard (returning only
1.0or0.0, with zero Likert scale leakage).
Phase 2: Unit Test Generation
- Generates matching unit tests (
evals/{system}/tests/test_check_*.py) for each grader. - Unit tests verify the grader correctly identifies the goldset's training pass and fail examples.
Phase 2b: Closed-Loop Grader Self-Tuning
- Executes generated unit tests (
pytest evals/{system}/tests/) to verify evaluator accuracy. - Grader Calibration Loop:
- Inspects test results to detect any misclassifications (false positives/negatives) on the training cases.
- If any test fails, triggers a feedback edit step that parses the failure reasons and automatically adjusts the grader's internal prompt rubric, regex stubs, or score thresholds.
- Re-runs pytest to check accuracy.
- Repeats for up to 3 iterations (the hard circuit-breaker limit).
- Holdout Locking: Ensure the holdout validation set (
holdout.json) remains completely isolated and is never loaded or exposed to the self-tuning loop (to prevent overfitting). - Failure Escalation: If the grader does not converge to 100% training accuracy within 3 iterations, the loop halts, surfaces the failing test case details, and raises an error rather than passing silently.
Phase 3: Config Generation
- Generates the unified framework configuration file (
config.jsorconfig.py). - Configures separate Tier 1 (fast checks, <30s, deterministic) and Tier 2 (semantic checks, <5min, LLM-judge) pipelines.
Phase 4: Auto-Handoff
Trigger /evals-validate to run validation.
Verification
evals/{system}/graders/contains Python grader scripts for each criterion compiled dynamically from goldset pass/fail examples and root-cause analysesevals/{system}/tests/contains matching unit test files- Framework config (
config.jsorconfig.py) successfully generated - Grader calibration self-tuning loop ran and converged to 100% training accuracy within the 3-iteration cap (or raised explicit non-convergence errors)
- Holdout dataset protection confirmed (validation
holdout.jsonremained completely isolated and untouched during tuning) - All grader unit tests pass locally (
pytest evals/{system}/tests/) - Handover summary lists generated graders, self-tuning iterations, and test results
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: tikalk
- Source: tikalk/adlc-team-skills
- License: MIT
- Homepage: https://github.com/tikalk/agentic-sdlc-12-factors
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.