hn • r/hackernews
Comment on: Replay debugger for AI agents (fix failures without rerunning everything)
Hi HN,I recently spent ~6 hours debugging a multi-agent workflow.Every time I fixed a bug, I had to re-run the entire pipeline — repeating LLM calls, hitting APIs again, and waiting minutes just to test one change.So I built Flight Recorder.It records agent execution, shows exactly what failed, and lets you replay from that point — skipping everything that already worked.Demo (30 sec):
https://github.com/whitepaper27/Flight-Recorder/blob/main/de...Example: @fr.register("crm_lookup")
def crm_lookup(email):
return db.query(email) # slow API call
@fr.register("scorer")
d