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

Workaround for ChatGPT Project Migration Gap: Export Scripts and Prompts
A developer created Python scripts and Claude prompts to migrate conversations from ChatGPT to Claude when ChatGPT's data export lacks project membership information. The solution extracts conversations using titles captured from the interface.

Swarm Orchestra v2 Plugin Adds Inter-Agent Messaging to Fix Claude Code Agent Team Chaos
Swarm Orchestra is a plugin that addresses Claude Code's experimental TeamCreate feature, which can spawn runaway agents. Version 2 adds inter-agent messaging via a PreToolUse hook and self-configuration via a /teammate skill.

SWE-rebench-V2 Released: Largest Open Multilingual Dataset for Code Agent Training
Nebius has released SWE-rebench-V2, currently the largest open dataset for training coding agents, featuring an automated pipeline for extracting RL environments at scale and designed specifically for large-scale reinforcement learning training.

Mengram AI: Auto-Memory Tool for Claude Code Sessions
Mengram AI automatically maintains context between Claude Code sessions by loading cognitive profiles, injecting relevant past context into prompts, and saving new knowledge. It stores semantic, episodic, and procedural memory that evolves based on failures.