Manages eval-driven development workflow: define capability and regression evals, check pass rates, generate reports, and list all eval definitions.
How this command is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:evalThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Eval Command Manage eval-driven development workflow. ## Usage `/eval [define|check|report|list] [feature-name]` ## Define Evals `/eval define feature-name` Create a new eval definition: 1. Create `.claude/evals/feature-name.md` with template: 2. Prompt user to fill in specific criteria ## Check Evals `/eval check feature-name` Run evals for a feature: 1. Read eval definition from `.claude/evals/feature-name.md` 2. For each capability eval: - Attempt to verify criterion - Record PASS/FAIL - Log attempt in `.claude/evals/feature-name.log` 3. For each regression eval:...
Manage eval-driven development workflow.
/eval [define|check|report|list] [feature-name]
/eval define feature-name
Create a new eval definition:
.claude/evals/feature-name.md with template:## EVAL: feature-name
Created: $(date)
### Capability Evals
- [ ] [Description of capability 1]
- [ ] [Description of capability 2]
### Regression Evals
- [ ] [Existing behavior 1 still works]
- [ ] [Existing behavior 2 still works]
### Success Criteria
- pass@3 > 90% for capability evals
- pass^3 = 100% for regression evals
/eval check feature-name
Run evals for a feature:
.claude/evals/feature-name.md.claude/evals/feature-name.logEVAL CHECK: feature-name
========================
Capability: X/Y passing
Regression: X/Y passing
Status: IN PROGRESS / READY
/eval report feature-name
Generate comprehensive eval report:
EVAL REPORT: feature-name
=========================
Generated: $(date)
CAPABILITY EVALS
----------------
[eval-1]: PASS (pass@1)
[eval-2]: PASS (pass@2) - required retry
[eval-3]: FAIL - see notes
REGRESSION EVALS
----------------
[test-1]: PASS
[test-2]: PASS
[test-3]: PASS
METRICS
-------
Capability pass@1: 67%
Capability pass@3: 100%
Regression pass^3: 100%
NOTES
-----
[Any issues, edge cases, or observations]
RECOMMENDATION
--------------
[SHIP / NEEDS WORK / BLOCKED]
/eval list
Show all eval definitions:
EVAL DEFINITIONS
================
feature-auth [3/5 passing] IN PROGRESS
feature-search [5/5 passing] READY
feature-export [0/4 passing] NOT STARTED
$ARGUMENTS:
define <name> - Create new eval definitioncheck <name> - Run and check evalsreport <name> - Generate full reportlist - Show all evalsclean - Remove old eval logs (keeps last 10 runs)npx claudepluginhub mindbreaker81/everything-claude-code/evalManages eval-driven development workflow: define capability and regression evals, check pass rates, generate reports, and list all eval definitions.
/evalManages eval-driven development workflow — define, check, report, and list evals for feature capabilities and regression testing.
/fullRuns multi-agent parallel evaluation on the current project using collector, safety-evaluator, completeness-evaluator, design-evaluator, and synthesizer (~5-10min).
/verifyRuns comprehensive verification using parallel specialized agents, scoring implementations on a 0-10 scale with improvement suggestions. Supports effort-aware scaling and model overrides.
/run-evalsBatch-runs all LLM eval cases from tools/evals/cases/, checks exact-match, semantic similarity, and judge-based scoring, reports pass/fail and regression vs last run, exits nonzero in CI mode.
/flow-test-strategy-executionOrchestrates test strategy execution for unit/integration/e2e/regression tests, validating coverage, triaging defects, and analyzing regressions.
90plugins reuse this command
First indexed Jan 22, 2026
Showing the 6 earliest of 90 plugins