Skip to content

v0.9.0

Choose a tag to compare

@Siddhant-K-code Siddhant-K-code released this 05 Apr 02:26
· 97 commits to main since this release

Shareable HTML replays and postmortem analysis

New commands

agent-strace share <session-id>

Turn any recorded session into a self-contained HTML file you can attach to a GitHub issue, Slack message, or incident report. No server required. No external dependencies.

agent-strace share abc123
# → Created: ./session-abc123.html

agent-strace share abc123 --postmortem   # embed failure analysis
agent-strace share abc123 --stdout | pbcopy

The HTML includes:

  • Live search: filter events by text or type. Matches highlighted inline; JSON detail panels auto-open when the match is inside the payload. Press / to focus, Esc to clear.
  • Phase timeline: collapsible phases showing files read/written and commands run
  • Event stream: type badges, relative timestamps, expandable JSON for every event
  • Cost breakdown: per-phase token and dollar estimates, wasted cost on failed phases
Screenshot 2026-04-04 at 12 09 25

agent-strace postmortem <session-id>

Structured failure analysis for sessions that went wrong.

agent-strace postmortem abc123

Identifies the root cause event, builds a causal timeline with retry markers, calculates how much time and cost was wasted after the failure point, detects AGENTS.md instructions the agent contradicted, and generates concrete recommendations.


Zero new dependencies

Both commands use Python stdlib only.