recipe-eval-prompt

recipe-eval-prompt is a skill for Claude Code from shinpr/rashomon. It costs 36 tokens per session (1,602 once invoked), scanned A, original, MIT.

A workflow for comparing an original prompt with an improved prompt through repeated blind tests. A prompt is the instruction given to an AI agent, and a blind comparison hides which version produced each result.

In plain words
What is it for?
Use it to evaluate prompt revisions, run both versions in separate Git worktrees, and compare their outputs.
Why use it?
It provides concrete evidence about whether prompt changes improve results under the same conditions.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

Part of the rashomon plugin — 5 skills, 7 agents shipped together

Good fit Use it to evaluate prompt revisions, run both versions in separate Git worktrees, and compare their outputs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shinpr/rashomon/recipe-eval-prompt
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 shinpr/rashomon --skill recipe-eval-prompt
Clone the repo
git clone --depth 1 https://github.com/shinpr/rashomon

Made for: Claude Code.

Or install rashomon, the plugin that ships this one along with the rest of its 5 skills, 7 agents.

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 recipe-eval-prompt

README.md
[![agentmods](https://agentmods.dev/badge/skills/shinpr/rashomon/recipe-eval-prompt/github.svg)](https://agentmods.dev/skills/shinpr/rashomon/recipe-eval-prompt)
Your own site
<a href="https://agentmods.dev/skills/shinpr/rashomon/recipe-eval-prompt"><img src="https://agentmods.dev/badge/skills/shinpr/rashomon/recipe-eval-prompt/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for recipe-eval-prompt

Your own site · 80×15
<a href="https://agentmods.dev/skills/shinpr/rashomon/recipe-eval-prompt"><img src="https://agentmods.dev/badge/skills/shinpr/rashomon/recipe-eval-prompt.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,602 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 186
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00036 $0.01602
Opus 5 $0.00018 $0.00801
Sonnet 5 $0.00007 $0.00320
Haiku 4.5 $0.00004 $0.00160

Measured 7d ago against content hash 08389237f56d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

recipe-eval-prompt 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 7d 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.

skills/recipe-eval-prompt/SKILL.md · 194 lines

How it starts

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

Explicit User Instruction: The user explicitly instructs and authorizes every subagent call named in this recipe. Execute each applicable call when its prerequisites are met.

Prompt Evaluation

Orchestrator Definition

Purpose: Provide accurate feedback on prompt optimization effects, enabling users to learn effective prompting through concrete comparison results.

Core Identity: "I route information between specialized agents. I pass user input to analyzers. I present agent outputs to users."

Pass-through Principle: Pass the user's exact request to prompt-analyzer, execute the original and optimized prompts under identical conditions, and present report-generator's output unchanged.

Execution Protocol:

  1. Delegate specialist work to the named sub-agents; keep workflow routing, worktree setup and cleanup, gate decisions, and user interaction in the orchestrator
  2. Follow the Execution Flow in order, applying its declared early-stop and error transitions

Phase Boundaries

No user confirmation required between phases unless explicitly requested. Each phase must complete all required outputs before proceeding.

Input

The user provides a natural language request. Pass it directly to prompt-analyzer.

Exception: If the request lacks any identifiable target (no file, function, or scope mentioned at all), ask ONE question to establish scope, then pass through.

Extended timeout: If the user mentions needing more time, use up to 1800 seconds (default: 300 seconds)

Execution Flow

Step 1. Run Required Skills

Run worktree-execution skill.

Step 2. Prompt Analysis and Optimization

Invoke: prompt-analyzer agent

Input:

  • User's exact request text

Output:

  • Complete gated JSON from the prompt-optimization skill
  • Analysis results in analysis.pattern_coverage
  • Individual issues in analysis.findings
  • Final prompt in result.final_prompt
  • Applied optimizations in optimization.finding_resolutions

Quality Gate:

  • Input contains user's request text only
  • Agent output parses as JSON
  • analysis_gate, optimization_gate, and balance_gate are pass
  • result.status is optimized or original_sufficient

Read the full file on GitHub · 194 lines

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. 7d ago Changed · +1 lines 08389237f56d
  2. 11d ago First seen · 193 lines · 36 tokens per session scan A 9dcb0a90393e

Subscribe to this mod's changes

recipe-eval-prompt is a skill published in the GitHub repository shinpr/rashomon (18 stars, last pushed 11d ago), licensed MIT. It adds 36 tokens to every session and 1,602 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.

Related

Other skills, from other repositories

mcp-tool-developer

Build Model Context Protocol (MCP) servers and tools from scratch. Full-stack MCP development with TypeScript/Python, testing, deployment, and registry publishing.

LiHongwei-cn/lihongwei-cn · 38 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

LiHongwei-cn/lihongwei-cn · 47 tokens

prompt-modeler

Generate structured strategic prompts with diagnostic and multiple options. Triggers on: /modelar-prompt.

chidekina/aria-superpowers · 24 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

sickn33/agentic-awesome-skills · 47 tokens

promptfoo-redteam-run

Run, rerun, inspect, and QA promptfoo redteam scans from generated redteam YAML or an existing redteam setup config. Use when executing promptfoo redteam eval or promptfoo redteam run, exporting results, triaging attack success rate, grader failures, target errors, filter/rerun commands, reports, or CI gates. Do not…

promptfoo/promptfoo · 94 tokens

promptfoo-redteam-setup

Create or refine promptfoo redteam setup configs: purpose, targets, plugins, strategies, frameworks, multi-input target inputs, policy text, grader guidance, contexts, and static-code-derived target/threat mapping. Use when preparing a red team scan plan from live probes, code evidence, or provider configs, or when…

promptfoo/promptfoo · 99 tokens