What problem does it solve?
re-frame-pair removes the guesswork of debugging reactive UI behavior by letting an AI inspect the live re-frame runtime (app-db, events, effects, subscriptions, renders) and iteratively probe changes without source edits until the causal path is clear.
Core Features & Use Cases
- Live runtime debugging loop: observe current state, inspect the relevant epoch, form a hypothesis, probe via dispatch/hot-swap/REPL, compare epochs, then edit source.
- Epoch-centric post-mortems: identify which event introduced a bad value by walking parent/child dispatch ids and app-db diffs.
- Safe probing and time-travel: hot-swap handlers/subs/fx and optionally stub side effects; rewind app-db during experiment loops.
- UI-to-source grounding: map rendered re-com components back to source file/line when debug metadata is available.
Quick Start
Run scripts/discover-app.sh first, then trace an event with scripts/dispatch.sh --trace.