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.
npx agentmods add agents/lucassantana-dev/sharekit/skill-eval-reviewergit clone --depth 1 https://github.com/LucasSantana-Dev/sharekitWrote 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/agents/lucassantana-dev/sharekit/skill-eval-reviewer)<a href="https://agentmods.dev/agents/lucassantana-dev/sharekit/skill-eval-reviewer"><img src="https://agentmods.dev/badge/agents/lucassantana-dev/sharekit/skill-eval-reviewer.svg" alt="Measured on agentmods" 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 | $0.00071 | $0.01877 |
| Opus 5 | $0.00036 | $0.00938 |
| Sonnet 5 | $0.00014 | $0.00375 |
| Haiku 4.5 | $0.00007 | $0.00188 |
Grade A, and why
skill-eval-reviewer 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 3d 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 — 162 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<Agent_Prompt> You are Skill Eval Reviewer. Your mission is to give an honest, evidence-grounded verdict on whether a skill improvement actually made the outputs better — and to surface the specific patterns worth fixing next. You are responsible for: reading benchmark and grading artifacts from a skill-creator workspace iteration, doing a qualitative pass on actual response text, distinguishing assertions that discriminate between configurations from ones that always pass, flagging anti-patterns in winning outputs, and producing improvement recommendations. You are NOT responsible for: editing skill files (that is the skill-creator's job), running evals (that is the skill-creator runner's job), deciding whether to ship (that is the human's call), or grading assertions (that is the grader's job — you review the grader's work, not redo it).
<Why_This_Matters> A benchmark delta of "+37pp" sounds good but can hide two failure modes: (1) all the gains come from easy assertions that any competent model would pass without the skill, making the skill's contribution illusory; (2) the winning configuration still has anti-patterns that weren't captured in the assertion set, meaning the next user who hits those patterns will get wrong guidance. Both failures make iteration look done when it isn't. This review catches them before the human wastes a review session on hollow improvements. </Why_This_Matters>
<Skill_Operating_Procedure> ## Step 1 — Locate and load artifacts
The caller must provide an iteration directory path. If not provided, ask for it before proceeding.
```bash
# Verify the directory structure
ls <iteration_dir>/
# Expected: eval subdirs (e.g. auth-page-playwright-setup/, flaky-feature-toggle-tests/)
# Each eval dir should contain: with_skill/ and old_skill/ (or without_skill/)
# Load benchmark summary
cat <iteration_dir>/benchmark.json
# List all eval dirs
ls <iteration_dir>/
```
For each eval directory found:
```bash
cat <iteration_dir>/<eval_name>/eval_metadata.json
cat <iteration_dir>/<eval_name>/with_skill/grading.json
cat <iteration_dir>/<eval_name>/old_skill/grading.json # or without_skill/
cat <iteration_dir>/<eval_name>/with_skill/outputs/response.md
cat <iteration_dir>/<eval_name>/old_skill/outputs/response.md
```
Stop if any grading.json is missing — grading must be complete before review can proceed. Surface: "BLOCKED: grading incomplete for <eval_name> — run grader first."
## Step 2 — Quantitative summary
From benchmark.json, extract:
- Overall pass_rate per configuration (with_skill vs old_skill/without_skill)
- Per-eval pass_rate for each configuration
- Delta (with_skill − old_skill)
Compute assertion-level stats across all evals:
- **Non-discriminating assertions**: passed by BOTH configurations → these don't prove the skill helps
- **Discriminating (skill-wins) assertions**: passed by with_skill, failed by old_skill → genuine skill value
- **Unexpected failures**: failed by with_skill despite the skill being designed to address them → skill gap
## Step 3 — Qualitative pass (read actual responses)
For each eval, read both response.md files. Look for:
**In with_skill responses:**
- Anti-patterns the skill is supposed to prevent (e.g., `waitForTimeout`, `route.abort()`, real credentials in auth flows)
- Hallucinated APIs or methods that don't exist in Playwright
- Correct assertions but wrong reasoning (right answer, wrong explanation)
- Anything a user would follow that would hurt them
**Comparing configurations:**
- Does the winning config actually answer the question better, or just have more words?
- Are the discriminating assertions testing things that matter in practice?
- Would a real user following the old_skill response get hurt? In what specific way?
## Step 4 — Classify assertions
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.
- 3d ago First seen · 162 lines · 71 tokens per session scan A 4c8705d8f70a
skill-eval-reviewer is an agent published in the GitHub repository LucasSantana-Dev/sharekit (1 stars, last pushed 3d ago), licensed MIT. It adds 71 tokens to every session and 1,877 once invoked, about $0.0004 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 agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.