When you runDocumentation Index
Fetch the complete documentation index at: https://docs.ironbee.ai/llms.txt
Use this file to discover all available pages before exploring further.
ironbee install, IronBee installs a set of slash commands that the AI agent can invoke directly inside Claude Code or Cursor. These commands guide the agent through verification and analysis workflows.
/ironbee-verify
Run a verification cycle for the current changes.- Identify which files changed and what cycles are active for this project
- Start verification and exercise every active cycle (browser, Node, or backend)
- Navigate pages, run probes, or make API calls as required
- Check for console errors, network failures, and unexpected responses
- Submit a single verdict with evidence for all active cycles
/ironbee-verify full
Complete verification — runs every checklist item regardless of what changed.- You want comprehensive coverage beyond just the changed areas
- You are doing a final check before a release
- A change is broad enough that focused verification might miss regressions
/ironbee-verify visual
Visual-only verification — checks UI appearance without testing functionality.- Contrast and accessibility
- Layout and spacing
- Typography and fonts
- Images and icons
- Theming (light/dark mode)
/ironbee-verify functional
Functional-only verification — tests behavior without visual checks.- Click interactions and event handlers
- Form submission and validation
- Navigation and routing
- Data flow and state updates
- Error handling and edge cases
/ironbee-analyze
Run session analytics and get LLM-powered semantic insights for the current session.- Pull session metrics (time spent, tool calls, pass/fail counts)
- Identify patterns — which files caused failures, where retries clustered
- Surface concrete recommendations
When are these triggered automatically?
IronBee installs a Stop hook that fires when the agent tries to complete a task. If code files were changed, the hook automatically triggers the verification flow (equivalent to/ironbee-verify) before allowing the task to finish. Every active cycle — browser, Node, backend — must pass within the same verification attempt before the task can complete.
You can also invoke any of these commands manually at any time — for example, to run a quick visual check mid-task or get early analysis.