Building jev-superpowers: Systematic Agentic Engineering with Jev
Autonomous coding agents are prone to distinct failure modes:
- Hallucinating package names and crate versions during implementation planning.
- Guessing arbitrarily between competing architectural patterns without calibrated confidence.
- Executing destructive bash commands or committing unverified changes.
- Marking complex tasks finished before running verification checks.
I built jev-superpowers to reinforce agent workflows with deterministic TypeSafe AI Jev System One gates.
+-------------------+ +----------------------+ +---------------------+
| Autonomous Agent | | jev-superpowers Gate | | TypeSafe AI Jev |
| Claude Code / Pi | -----> | Brainstorm / Plan | <----> | /v1/systemone |
+-------------------+ | Execution / Debug | | 70-120ms Latency |
+----------------------+ +---------------------+
|
+---> Zero-Hallucination Crate Selection
+---> Sub-Second Pre-Commit Verification
The Four Upgraded Phases
jev-superpowers wraps standard development practices with sub-second decision primitives:
| Workflow Phase | Skill | Gate Mechanism |
|---|---|---|
| Ideation | jev-brainstorming | Scores architectural trade-offs via jev-axi pick with calibrated confidence thresholds ($>0.80$). |
| Planning | jev-writing-plans | Queries jev-scout against real package registries to verify every dependency before it enters the plan. |
| Execution | jev-executing-plans | Runs jev-guard before shell commands and git-jev on staged diffs before commit. |
| Debugging | jev-systematic-debugging | Triages compiler outputs via jev-axi triage and ranks bug hypotheses by likelihood. |
Empirical Benchmarks
Comparing standard generative agent loops against Jev-gated workflows across test suites:
- Package hallucination rate: Dropped from 14.2% unvetted libraries to 0.0% by enforcing registry lookups.
- Architectural gate latency: Reduced from 4.5 seconds (generative LLM review) to 90ms (Jev System One).
- Verification cost: $0.042 per million tokens compared to $3.00 to $15.00 for conversational models.
- Pre-commit screening: Automated reflex gate running in 80ms directly inside
git commit.
Toolchain Components
The framework integrates five specialized utilities:
jev-superpowers/
jev-scout/ # Rust CLI discovering real crates and repositories
jev-guard/ # Shell command validator intercepting destructive patterns
git-jev/ # Sub-second pre-commit git reflex hook
supercov/ # Code quality oracle and anti-pattern detector
limpet/ # Agent turn-completion verifier preventing premature stops
By decoupling generative coding from deterministic policy verification, agents remain focused on implementation while Jev gates protect the filesystem and repository history.
More Essays
Building jev-curate: Fast Synthetic Dataset Sifter in Rust
Filtering synthetic training data with TypeSafe AI Jev: streaming JSONL and Parquet rows through calibrated System One gates at 70ms latency with zero memory accumulation.
systemsBuilding jev-git: Sub-Second Git Reflex Gate in Rust
Screening staged git diffs for leaked secrets, destructive payloads, and AI hallucinations in 80ms using TypeSafe AI Jev System One.
systemsBuilding jev-scout: Zero-Hallucination Crate and Repo Scout
Preventing AI package hallucinations: discovering real crates and GitHub repositories using live registry APIs and TypeSafe Jev speculative fan-out scoring.