prompt-evaluation-runner

prompt-evaluation-runner is a skill for Claude Code from yeaight7/agent-powerups. It costs 33 tokens per session (762 once invoked), scanned A, original, Apache-2.0.

A workflow for testing prompts, language-model responses, and red-team checks with local evaluation tools. Red-team checks deliberately look for unsafe or unwanted behavior.

In plain words
What is it for?
Use it to define evaluation risks, run deterministic checks such as required or forbidden text and JSON structure, and enforce cost or response-time limits.
Why use it?
It helps measure model behavior systematically while checking available tools, provider costs, API keys, and execution limits first.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agent-evaluation-lab plugin — 3 skills shipped together

Good fit Use it to define evaluation risks, run deterministic checks such as required or forbidden text and JSON structure, and enforce cost or response-time limits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yeaight7/agent-powerups/prompt-evaluation-runner
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 yeaight7/agent-powerups --skill prompt-evaluation-runner
Clone the repo
git clone --depth 1 https://github.com/yeaight7/agent-powerups

Made for: Claude Code.

Or install agent-evaluation-lab, the plugin that ships this one along with the rest of its 3 skills.

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 prompt-evaluation-runner

README.md
[![agentmods](https://agentmods.dev/badge/skills/yeaight7/agent-powerups/prompt-evaluation-runner.svg)](https://agentmods.dev/skills/yeaight7/agent-powerups/prompt-evaluation-runner)
Your own site
<a href="https://agentmods.dev/skills/yeaight7/agent-powerups/prompt-evaluation-runner"><img src="https://agentmods.dev/badge/skills/yeaight7/agent-powerups/prompt-evaluation-runner.svg" alt="Measured on agentmods" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 762 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.00033 $0.00762
Opus 5 $0.00016 $0.00381
Sonnet 5 $0.00007 $0.00152
Haiku 4.5 $0.00003 $0.00076

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

Security

Grade A, and why

prompt-evaluation-runner 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.

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.

plugins/agent-evaluation-lab/skills/prompt-evaluation-runner/SKILL.md · 82 lines

How it starts

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

Prompt Evaluation Runner

When to use

Use when you need to evaluate an LLM app, test a prompt systematically, or run red-team/vulnerability scans against a target model or application.

Requirements / Checks

  1. Check if an evaluation tool is defined in project deps, scripts, lockfiles, or local toolchain (e.g., promptfoo, evals, braintrust).
  2. Do not run unvetted remote runners without checking the project's toolchain first (e.g., avoid npx promptfoo@latest if promptfoo is already installed locally).
  3. If no runner exists, ask before adding a dev dependency or using an ephemeral runner.
  4. Confirm expected cost, provider, API keys, and network target before any execution.

Workflow

  1. Define risk — state target behavior, failure mode, provider(s), and budget limits before writing any config.

  2. Choose assertions — prefer deterministic checks first:

    Assertion type When to use
    contains / not-contains Output must include/exclude specific text
    regex Structured output pattern (e.g., JSON key present)
    json-schema Output must conform to a schema
    cost Must stay under a token/dollar budget
    latency Must respond within N ms
    javascript / python Custom logic when simpler types don't fit
    Model grader Last resort — only for subjective quality checks
  3. Use model graders sparingly — pin the grader model and provider explicitly; document the cost and non-determinism risk.

  4. Minimal config structure:

    description: "Test that the summarizer stays under 200 words"
    providers:
      - id: openai:gpt-4o-mini
        config:
          temperature: 0
    prompts:
      - "Summarize: {{input}}"
    defaultTest:
      assert:
        - type: javascript
          value: output.split(' ').length < 200
    tests:
      - vars:
          input: "{{env.TEST_DOCUMENT}}"
    
  5. Handle env safely — use {{env.VAR_NAME}} for all secrets and inputs. Never hardcode API keys or sensitive data in config files.

Read the full file on GitHub · 82 lines

Files

What ships with it

1 file 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 · 82 lines · 33 tokens per session scan A 676d8ea20a24

Subscribe to this mod's changes

prompt-evaluation-runner is a skill published in the GitHub repository yeaight7/agent-powerups (6 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 33 tokens to every session and 762 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.