Jev Triage — Testing skill for Claude Code
Millisecond-class test-failure triage for coding agents: RETRY / FIX_CODE / FIX_ENV, powered by TypeSafe Jev.
How to install Jev Triage
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open ccai40359-wq/jev-triage and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Jev Triage does
Millisecond-class test-failure triage for coding agents: RETRY / FIX_CODE / FIX_ENV, powered by TypeSafe Jev.
Alternatives in Testing
README
jev-triage

**Millisecond-class test-failure triage for coding agents — with honest numbers.**
When a test fails, an agent normally has two options: re-run the suite blindly, or dump a few thousand lines of stack trace into an LLM and wait. `jev-triage` adds a third: classify the failure in one call and tell the agent what class of action it needs.
RETRY flaky or transient — re-run unchanged, do not touch the source
FIX_CODE a real defect in the code under test — fix the source, do not just re-run
FIX_ENV missing dependency, unset env var, unreachable service — fix the setup
Works with pytest, vitest, jest and `go test`, as a CLI, as a Python library, and as a Claude Code `PostToolUse` hook.
**Read the numbers section before you adopt this.** Measured on 16 logs captured from real pytest and vitest runs: **16/16 correct**, **44% resolved locally at zero cost**, and **~48x cheaper** than handing the same logs to an LLM. Measured latency is **0.8–2.5 s per call** (median ~1.1 s) from our network path — not the 70–500 ms in the Jev launch material, but well below the multi-second wait for an LLM to read the same log.
What it actually does
test output ──► parsers ──► deterministic rules ──► Jev ──► verdict + advice
(offline) (offline, no cost) (1 call)
- Parse the runner output into structured failures (test name, error type, location, message, evidence). Pure text processing, no network, no cost.
- Apply deterministic rules for symptoms that are unambiguous —
ModuleNotFoundError,KeyError: 'DATABASE_URL',Address already in use,ECONNRESET, and about a dozen more. These resolve with zero API calls and zero cost. - Ask Jev about everything left over: the genuinely ambiguous failures. One batched request asks about a
Related Skills
Jev Cold Start Prior
Can a TypeSafe Jev prior read from a README on day one predict which new agent-skill repos gain stars? Zero-sh
Typesafe Jev
Field notes, runnable scripts and an agent skill for TypeSafe Jev, the System One decision model. Measured eva
Axe MCP Server Public
Axe MCP Server: Deque's official MCP server for axe. Integrate accessibility testing and AI-powered remediatio
Skill CI Churn
GitHub Actions cost analyzer & flaky-test detector for pull requests. Measures wasted CI compute, classifies c
Triage Errors
Systematically triage and fix errors after a large change, use when you have many test failures or lint errors
Spec Fix
Lightweight fix flow — triage a defect against specs/, then one implementer pass through the same external gat
Related Agents
Typesafe Adversary
Red-teams TypeSafe integrations before users do. Probes the nine documented Jev failure modes, tests prompt in
Test Verifier
Runs and verifies test cases from tests/test.md. Prefers e2e testing with curl/bash. Looks for environment inf
CI Fix Agent
CI failure diagnosis and repair. Use when CI is failing, when asked to 'fix CI', 'pipeline broke', or 'build f