Skip to content

Build a Recent Work Timeline

Build a recent work timeline from sivtr memory

You want a summary of what you worked on recently, grounded in real evidence. The agent can reconstruct a timeline from command timestamps, validation results, agent decisions, and workspace refs.

Make a timeline of what I worked on recently.

The agent can first render timeline views directly:

Terminal window
sivtr search agent --since today --sort oldest --format timeline
sivtr search terminal --since today --sort oldest --format timeline

For narrower evidence, it searches for planning, change, and validation markers:

Terminal window
sivtr search agent --match "TODO|next step|decision|changed|fixed|test result|passed|failed|commit|build" --since today --format json --limit 50

It also inspects recent command titles:

Terminal window
sivtr copy cmd 1..20 --print

Then it assembles a timeline where each entry has a timestamp, activity title, evidence ref, and outcome.

1. 10:12 — Investigated docs build failure
Evidence: terminal/current/4 (Astro check failing on missing page)
Outcome: Fixed sidebar link; reran check successfully.
2. 10:43 — Reframed product docs around agent memory
Evidence: claude/<session>/7 (discussed new positioning)
Outcome: Docs updated; build passed.
3. 11:15 — Migrated docs-site from pnpm to Bun
Evidence: terminal/current/9 (bun install + bun run build)
Outcome: 57 pages built; all checks pass.

Each entry traces back to a specific command output or agent dialogue.

Show how an agent builds a timeline from sivtr memory with refs, timestamps, and verification results.