transcript-replay
Walk a Claude Code session transcript turn-by-turn from Agent Monitor data, summarizing each user, assistant, and tool message in order so a long conversation can be reviewed quickly. Anchors the recap to the session header (model, cost, turn_count). Use when reviewing what was actually said and done in a conversation.
Profile →npx skills add hoangsonww/Claude-Code-Agent-Monitor --skill transcript-replay --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Transcript Replay Replay a session transcript one turn at a time with a concise summary of each message. ## Input The user provides: **$ARGUMENTS** - A **session ID** to replay, or - "latest" / "last" for the most recent session. - Optionally a turn range (e.g. `1-10`) or `errors` to focus on tool failures. ## Data Sources | Endpoint | Returns | |----------|---------| | `GET /api/sessions/:id/transcript` | ordered transcript messages: role (user / assistant / tool), content, tool_name and tool result where applicable, timestamps | | `GET /api/sessions/:id` | session header: status, model, cwd, started_at, ended_at, cost, metadata (thinking_blocks, turn_count, total_turn_duration_ms) | ## Report Sections ### 1. Header `GET /api/sessions/:id`. Print id, model, cwd basename, status, turn_count, thinking_blocks, total_turn_duration_ms, and cost in one block. ### 2. Turn-by-turn walk `GET /api/sessions/:id/transcript`. Iterate messages in order. For each turn emit one compact entry: - **user** — the request in one sentence (quote the literal ask only if short). - **assistant** — the decision / action taken, plus which tools it invoked. - **tool** — the tool name and a one-line result
- Input
- Data Sources
- Report Sections
- 1. Header
- 2. Turn-by-turn walk
- 3. Thread highlights
- Output
What does the transcript-replay skill do?
Walk a Claude Code session transcript turn-by-turn from Agent Monitor data, summarizing each user, assistant, and tool message in order so a long conversation can be reviewed quickly. Anchors the recap to the session header (model, cost, turn_count). Use when reviewing what was actually said and done in a conversation.
How do I install it?
Run `npx skills add hoangsonww/Claude-Code-Agent-Monitor --skill transcript-replay --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From hoangsonww/Claude-Code-Agent-Monitor, a repository with 869 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.