accessibility-patterns
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
Framework for measuring and tracking agent response quality over time. Detects regressions before they reach production. Use when evaluating agent changes, auditing quality, or establishing performance baselines.
$ npx -y skills add vibeeval/vibecosystem --skill agent-benchmark --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/agent-benchmarkContext preview
The summary Claude sees to decide when to auto-load this skill.
Framework for measuring and tracking agent response quality over time. Detects regressions before they reach production. Use when evaluating agent changes, auditing quality, or establishing performance baselines.
name: agent-benchmark description: Framework for measuring and tracking agent response quality over time. Detects regressions before they reach production. Use when evaluating agent changes, auditing quality, or establishing performance baselines.
Without benchmarks, we cannot know whether agent changes improve or degrade quality. This skill defines how to measure, track, and protect agent performance.
Agent quality degrades silently. A prompt tweak that improves one response can break ten others. Without a baseline to compare against, every change is a guess. Benchmarks make quality visible and regressions detectable.
| Type | Scope | Cost | Frequency | |------|-------|------|-----------| | Prompt Benchmark | Single agent, single task | Low | Every agent change | | Task Benchmark | End-to-end scenario | Medium | Feature changes | | Regression Suite | All critical agents | High | Weekly / before release |
~/.claude/benchmarks/
fixtures/
code-reviewer/
missing-error-handling.ts # Input: code with no try/catch
sql-injection.py # Input: unparameterized query
clean-code.ts # Input: code with no issues
security-reviewer/
hardcoded-secret.ts # Input: API key in source
parameterized-query.py # Input: safe query (no findings expected)
verifier/
passing-build/ # Input: project that builds
failing-types/ # Input: project with type errors
ground-truth/
code-reviewer/
missing-error-handling.json # Expected findings
sql-injection.json # Expected findings
clean-code.json # Expected: empty findings
security-reviewer/
hardcoded-secret.json
parameterized-query.json
rubrics/
code-reviewer.md # Scoring rubric
security-reviewer.md
verifier.md
baselines/
code-reviewer-2026-03-01.json # Timestamped baseline scores
code-reviewer-2026-03-26.json
security-reviewer-2026-03-26.json
results/
run-2026-03-26T14-00.json # Latest run outputEach agent has its own rubric file. The template:
## [Agent Name] Scoring Rubric ### Completeness (0-30 points) Did the agent find everything it should have found? - Found all expected issues: 30 - Missed 1 non-critical issue: 22 - Missed 1 critical issue: 10 - Missed 2+ issues: 5 - Found nothing when issues exist: 0 ### Accuracy (0-30 points) Were the findings correct? No false positives? - All findings verified correct: 30 - 1 false positive: 22 - 2 false positives: 12 - 3+ false positives: 5 - Majority of findings are wrong: 0 ### Actionability (0-20 points) Did the agent give concrete, implementable fixes? - Clear fix with file/line reference: 20 - Clear fix without location: 14 - Vague suggestion (refactor this): 7 - No fix suggested: 0 ### Format Compliance (0-20 points) Did the output follow the agent's output contract? - Matches contract exactly (VERDICT + sections): 20 - Minor deviation (missing one section): 12 - Major deviation (no VERDICT): 5 - Unstructured free text: 0
Ground truth files define what a correct agent response must contain:
{
"fixture": "missing-error-handling.ts",
"agent": "code-reviewer",
"required_findings": [
{
"id": "missing-try-catch",
"severity": "HIGH",
"description_contains": ["error handling", "try", "catch"],
"location_hint": "fetchUserData"
}
],
"forbidden_findings": [],
"required_verdict": "FAIL",
"min_score": 70
}1. Load fixture (input code / task) 2. Run agent with fixture as input 3. Parse agent output 4. Check required_findings: each found = +completeness points 5. Check forbidden_findings: each false positive = -accuracy points 6. Check verdict matches required_verdict 7. Check format follows output contract 8. Sum scores → final 0-100 9. Compare against min_score threshold
| Score | Status | Action | |-------|--------|--------| | 90-100 | EXCELLENT | No action needed | | 75-89 | GOOD | Minor tuning optional | | 60-74 | WARN | Investigate degradation | | 40-59 | POOR | Agent needs rework | | 0-39 | CRITICAL | Block deployment |
# Full suite
node ~/.claude/benchmarks/run.mjs
# Output: results/run-{timestamp}.json# Benchmark one agent node ~/.claude/benchmarks/run.mjs --agent code-reviewer # With verbose output (shows actual vs expected per fixture) node ~/.claude/benchmarks/run.mjs --agent code-reviewer --verbose
# Compare latest run against saved baseline node ~/.claude/benchmarks/run.mjs --compare # Compare specific run against specific baseline node ~/.claude/benchmarks/run.mjs \ --compare results/run-2026-03-26.json \ --baseline baselines/code-reviewer-2026-03-01.json
Only run this after verifying an improvement is real:
# Promote latest results to new baseline
node ~/.claude/benchmarks/run.mjs --baseline update
# Creates: baselines/{agent}-{date}.jsonA regression is triggered when:
1. **Score drops more than 10 points** on any single fixture 2. **Average score drops more than 5 points** across all fixtures for an agent 3. **A previously PASS fixture becomes FAIL** 4. **Format compliance drops below 80** (agent stopped following output
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA compliance, ARIA patterns, keyboard navigation, screen reader optimization
axe-core integration, WCAG 2.2 AA checklist, keyboard navigation testing, screen reader testing, and ARIA pattern validation.
Steam-style achievement system with XP, levels, streaks, and skill trees. Gamifies the development workflow. 25 achievements across 5 categories.
Agent ve skill dosyalarinin yapisal dogrulamasi. Frontmatter kontrol, naming convention, zorunlu bolum kontrolu, tutarlilik denetimi. Yeni agent/skill…