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.

An activity is a discrete action recorded within a session. Activities form the chronological record of everything the agent did — what files it changed, when it verified, how it responded to failures.

Activity types

TypeDescription
code_changeThe agent edits one or more source files
verificationThe agent runs a browser, Node, or backend verification cycle
fixThe agent makes corrections after a failed verification
tool_callA single devtools invocation (navigation, screenshot, probe, etc.)

Activities list

The activities tab on a session detail page shows all activities in chronological order. Each row includes:
  • Type — icon indicating the activity category
  • Timestamp — when the activity started
  • Duration — how long the activity took
  • Summary — a brief description (files changed, pages tested, tools used)
  • Outcome — pass / fail / n/a depending on type

Activity detail

Clicking an activity opens its detail view, which varies by type:

Code change detail

  • List of files modified with diff sizes
  • Whether the change triggered a verification requirement
  • Which verification cycle was activated (browser / node / backend)

Verification detail

Fix detail

Tool call detail

  • Tool name and input arguments
  • Response summary
  • Timing within the parent activity

Reading the activity log

Activities tell a story. A healthy session typically looks like:
  1. Code change → files edited
  2. Verification (passed) → task completes
A session with issues might look like:
  1. Code change → files edited
  2. Verification (failed) → console errors found
  3. Fix → agent corrects the issue
  4. Verification (passed) → task completes
Multiple failed verifications followed by fixes indicate the agent struggled with a particular change — a useful signal when reviewing session analysis.