eval-cache

Check for a valid cached plan evaluation before running a new one.

102|10|Updated Mar 4, 2026
One-click install
npx skills add https://github.com/closedloop-ai/claude-plugins --skill eval-cache
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: eval-cache
Source: https://github.com/closedloop-ai/claude-plugins/tree/main/plugins/judges/skills/eval-cache
Command: npx skills add https://github.com/closedloop-ai/claude-plugins --skill eval-cache

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill prevents redundant plan evaluation by checking for a valid cached result, saving computational resources and time.

Core Features & Use Cases

  • Cache Check: Verifies if a plan-evaluation.json exists and is up-to-date relative to plan.json.
  • Conditional Execution: Allows skipping the plan evaluator agent when a fresh cache hit occurs.
  • Use Case: In a multi-step AI workflow, if the plan hasn't changed since the last evaluation, this skill ensures the expensive evaluation step is bypassed, speeding up the overall process.

Quick Start

Run the cache check script to see if a cached evaluation is available.

Frequently Asked Questions about eval-cache

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I skip redundant plan evaluations in an iterative AI workflow?

To skip redundant plan evaluations, you can check for a cached result before initiating a new one. This verifies if a valid plan evaluation exists and is up-to-date relative to the original plan, bypassing the expensive evaluation step to optimize workflow execution.

What is a plan evaluation cache and when do I need it?

A plan evaluation cache is a mechanism that stores previous evaluation results to avoid redundant computations. You need it in iterative development cycles where plan stability is common, ensuring efficient resource utilization when previous evaluations are still valid.

How to check if a cached plan evaluation is still valid?

To check if a cached plan evaluation is valid, run a cache check script to verify if a plan-evaluation.json file exists and is up-to-date relative to plan.json. A fresh cache hit allows you to conditionally skip the plan evaluator agent entirely.

Does plan evaluation caching work for multi-step AI workflows?

Yes, plan evaluation caching works for multi-step AI workflows. If the plan hasn't changed since the last evaluation, caching ensures the expensive evaluation step is bypassed, effectively speeding up the overall process and optimizing workflow execution.

When should I not use a cache check for workflow optimization?

You should not use a cache check for workflow optimization when your development cycle lacks plan stability. If the plan changes frequently between iterations, previous evaluations will rarely be valid, making the cache check an unnecessary overhead instead of a resource saver.