Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ironbee.ai/llms.txt

Use this file to discover all available pages before exploring further.

A fix is a targeted code change made by the agent in response to a failed verification. After each fix, the agent re-verifies. IronBee tracks every fix separately so you have a complete record of what changed, why, and whether it worked.

What triggers a fix

A fix occurs when:
  1. The agent runs a verification cycle
  2. The cycle fails (console errors, broken interactions, backend errors)
  3. The agent analyzes the failure and edits code to address it
  4. The agent re-verifies with the fix applied
If the re-verification passes, the session completes. If it fails again, the agent makes another fix and tries again — up to the maxRetries limit.

The fixes list

The fixes tab on a session detail page shows all fixes in order. Each row shows:
ColumnDescription
Fix numberSequential index within the session
Files changedHow many files were modified
Preceding failureLink to the verification cycle that triggered this fix
Re-verificationLink to the verification cycle that followed this fix
OutcomeWhether the subsequent verification passed or failed

Fix detail

Clicking a fix opens its detail view — see Fix Detail.

Interpreting fixes

The number of fixes in a session is a signal of difficulty:
  • 0 fixes — the agent got it right the first time
  • 1–2 fixes — normal for moderately complex changes
  • 3+ fixes — the agent struggled; worth reviewing the findings and recommendations
Fixes clustered on the same files across many sessions suggest those files are error-prone and may benefit from better test coverage or clearer code.