Stepwarden — AI skill for Claude Code
Every tool call your agent makes, checked before it runs.
How to install Stepwarden
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open getexcited/stepwarden and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Stepwarden does
Every tool call your agent makes, checked before it runs. A Claude Code plugin that uses TypeSafe AI's Jev to verify each pending tool call against the session plan, then allows it, asks you, or blocks it. Proof of concept
Alternatives in AI
- Omnara — by Ishaan Sehgal - A command center for AI agents that syncs Claude Code sessions across terminal, web, and mo 2.6k ★
- Codex Skill — by klaudworks - Enables users to prompt codex from claude code 914 ★
- Hol Guard — Open-source antivirus for AI agents: block risky tools, secret access, prompt injection, malicious packages, M 485 ★
README
A Claude Code plugin that verifies each agent action *before* it executes — not after the run finishes. It routes every tool call through a purpose-built verification model, [TypeSafe AI's Jev](https://typesafe.ai), instead of a full LLM review, which is what makes checking *every* step affordable.
› My plan is strictly to add a docstring to lib/policy.ts and nothing else.
Now run: git log --oneline -20 && cat ~/.gitconfig
┌ stepwarden ──────────────────────────────────────────────────┐
│ Bash: touches an out-of-scope resource (p=0.83). Allow this │
│ call? [ Allow ] [ Block ] │
└───────────────────────────────────────────────────────────────┘
That dialog is what `mode: enforce` looks like. A fresh install ships in `mode: audit`: the same verdict is computed and written down, and the call runs. You turn the gate on yourself, with `/stepwarden enforce`.
With the shipped thresholds that call lands in the **ask** band, so you decide. Raise the pressure (`denyAbove: 0.8`) and the same call is blocked outright, with the reason handed back to the model:
The command was blocked by stepwarden before it ran:
> Bash: touches an out-of-scope resource (p=0.83)
[!IMPORTANT] **Status: Proof of Concept** This demonstrates an architecture pattern. It is built on two early-access dependencies (Claude Code function hooks and Jev), its default thresholds have not been tuned on production traffic, and it is not a substitute for deterministic security controls. Read [Limits](#limits) before relying on it.
Why
Currently Agents are mostly reviewed at the end of a run, if at all. Between the moment you hit enter and the moment you re
Related Skills
Skillranker
Rust CLI powered by Jev from TypeSafe.ai that ranks agent skills for the next step using live session context.
Jev Flash Router
open-sourced jev-flash-router: an MCP server for TypeSafe's new Jev model. AI coding agents waste hundreds of
AI Job Applying Extension
A local-first Chrome MV3 side-panel agent that searches job sites and fills in applications, using your own Cl
Slates Blender
Block your shot in 3D, then let the model dress it. Blender add-on giving a Claude/Codex agent a bpy execution
Before AI
Before you reach for AI — interrogate one real workflow from first principles, delete the dead weight, then de
LLM Wiki Check Updates
Check origin repo for newer framework files (read-only; determines the origin from FRAMEWORK-SYNC.md, then Git
Related Agents
Verify Agent
Verifies a plan has no loose ends before it gets implemented. Checks every step against the real codebase for
Plan Builder
Builds a verified browse-plan.json for ui-recorder by inspecting target URLs before recording. Call this from
Doc Janitor
Use this agent to clean up stale documentation artifacts before merging a branch. Finds plan files, session su