IronBee: Open-source verification layer for Claude Code and Cursor

What IronBee does
IronBee is an open-source verification layer that installs hooks into Claude Code (and also works with Cursor) to prevent AI coding agents from shipping untested code. The tool addresses a common issue where Claude Code confidently states "I've implemented the feature" without verifying if it actually works in the browser.
Key features
- Blocks task completion until the agent tests changes in a real browser
- Tracks every file edit, browser tool call, and verification attempt
- Forces the agent to submit structured verdicts (not just "looks good")
- Makes the agent fix and re-verify on failure
- Uses the browser-devtools MCP server so Claude Code can navigate pages, click buttons, fill forms, take screenshots, and check console errors
- Includes
/ironbee-verifywith different modes (default, full, visual, functional) - Includes
/ironbee-analyzefor session analytics showing time spent coding vs fixing, problematic files, and agent improvement over time
Performance data
According to the source, tracking sessions revealed that 82% had bugs Claude Code would have shipped without verification, with a first-pass rate of only 18%. In testing, IronBee caught and fixed every bug before it shipped.
Setup
Installation requires two commands:
npm install -g @ironbee-ai/cli
cd your-project
ironbee installSource information
Announcement blog post: https://medium.com/@serkan_ozal/introducing-ironbee-the-verification-and-intelligence-layer-for-ai-coding-agents-dd554279efa3
GitHub repository: https://github.com/ironbee-ai/ironbee-cli
📖 Read the full source: r/ClaudeAI
👀 See Also

HostedShell: A Web-Based Deployment Solution for OpenClaw Agents
HostedShell is a hosted version of OpenClaw that eliminates local CLI setup, dependency management, and manual pairing by providing a web console with direct terminal access and filesystem updates.

pxpipe: Cut Claude Code Token Usage 60% by Rendering Context as Images
pxpipe is a local proxy that renders bulky context (system prompts, tool docs, history) into compact PNGs, cutting input tokens ~10x and costs ~60% on token-dense workloads.

LLMock: HTTP-based mocking server for deterministic LLM testing across processes
LLMock is a real HTTP server that mocks OpenAI, Claude, and Gemini APIs, allowing developers to run deterministic tests across multiple processes without hitting real APIs. It supports SSE streaming, tool calls, predicate routing, and request journaling with zero dependencies.

Fennara: Godot Plugin + MCP for AI Agents with Iterative Feedback Loop
Fennara is a Godot plugin and MCP server that gives AI agents script diagnostics, scene validation, runtime errors, node info, screenshots, and semantic search results after each edit — enabling a tighter feedback loop than one-shot commands.