Skip to main content

A local, offline digest of your coding-agent sessions. Zero dependencies.

Project description

agentlog

What did your coding agent actually do today?

agentlog reads your local Claude Code and Codex session logs and answers that in a screen: which projects it worked on, which files it edited, what failed. All offline, no network, no API key.

Everything is organised by project, because that is the first thing you want to know. Sessions, IDs and token counts are still there — one flag away — but they are not the headline.

--html writes the same digest as a self-contained file you can drop in a chat or share with a teammate. It works offline, requires no server, and contains no external assets.


30-second quickstart

pip install 'stillworks[all]'   # all four agent tools, including this one
pip install agentlog-tool       # or just this one (the command is `agentlog`)

agentlog today

# Or run from a checkout, no install needed — it is stdlib only:
cd /path/to/agentlog && python3 -m agentlog today

(The PyPI name is agentlog-tool because agent-log was already taken. The command, the module, and the repo are all just agentlog.)

Real output (2026-08-03, this machine):

22h 45m active across 4 projects · today, Mon 3 Aug

  r102-bench          22h 43m   25 files · 143 commands · 4 errors
      edited   parser.py, render.py, cli.py
      failed   cd /home/val/r102-bench; echo "total:"; du -sh . 2>/dev/…
               edit parser.py
  val                 22h 42m   17 files · 122 commands · 8 errors
      edited   .../.orchestrator/HANDOFF.md, .../codex-orchestrator/AGENTS.md
      failed   cd /home/val/relay && ls .orchestrator/ && echo "=== git…
  relay                2h 10m   no edits or commands recorded
  codex-orchestrator   5m 07s   no edits or commands recorded

  19 sessions · 6 claude, 13 codex · busiest 22:00–23:00
  projects overlap — agents ran in parallel, so their times sum past the total
  more: agentlog list · agentlog show ID · agentlog --sessions

Busiest project first; the files are the ones written most often, and failed names the command behind each error rather than just counting them.

Generate an HTML digest you can share:

agentlog today --html today.html
# then open today.html in a browser — no server required

Commands

agentlog                        same as: agentlog today
agentlog today | yesterday | week
agentlog since DATE             ISO date (2026-07-15) or offset (3d, 12h, 2w)
agentlog show SESSION_ID        one session in full detail
agentlog list                   50 most-recent sessions as a compact table
agentlog list --all             all sessions (no row limit)
agentlog list --limit N         show at most N sessions

agentlog list (first 3 rows):

ID        PROJECT                   WHEN              DUR       SRC
--------  ------------------------  ----------------  --------  ------
019fc4b9  relay                     2026-08-02 23:05  6m 18s    codex
019fc4a7  relay                     2026-08-02 22:45  6m 41s    codex
019fc4a1  relay                     2026-08-02 22:39  4m 29s    codex

View flags:

--sessions        the old per-session view: one block per session, with IDs,
                  models, turn counts and token totals
--project NAME    only projects whose name or path contains NAME

Output flags:

--html FILE       write a self-contained HTML digest to FILE
                  (time commands only: today, yesterday, week, since)
--md [FILE]       Markdown to FILE, or stdout if FILE is omitted
                  (time commands only)
--json            JSON to stdout; works with all commands including list and show
--verbose         show parsing diagnostics (skipped-line counts)
--home DIR        override home directory; used by tests and CI

The AGENTLOG_HOME environment variable is equivalent to --home.

Exit codes: 0 normal, 2 usage or argument error.


What it extracts and how

agentlog reads JSONL files in ~/.claude/projects/**/*.jsonl (Claude Code) and ~/.codex/sessions/**/*.jsonl (Codex). It never writes to those files or uploads anything.

For each session it derives:

Shown Derived from
project cwd field in first user record
start / end / duration first and last timestamp fields seen
models message.model in assistant records
user turns count of type == "user" records
files read Read tool-use calls (input.file_path)
files written Write, Edit, MultiEdit tool-use calls (input.file_path); Codex *** Update File: lines inside apply_patch envelopes
commands Bash tool-use calls (input.command); Codex exec_command and apply_patch
errors tool_result records with is_error: true; Codex command output with a non-zero exit code
the failing command the tool-use call the failed result points back at (tool_use_id / call_id)
tokens message.usage.input_tokens, cache_creation_input_tokens, and cache_read_input_tokens in assistant records; Codex uses the final cumulative last_token_usage snapshot

Tool-use IDs are deduplicated so streaming-split records are not double-counted. Malformed lines are skipped silently; their count appears under --verbose.

The read/written split is specific to Claude Code. Codex has no structured file-write field — it edits by piping a patch envelope through the shell — so its written files are recovered from the *** Update File: / *** Add File: / *** Delete File: lines in the command text. Relative paths are resolved against the call's working directory, so one file is not counted twice under two spellings. Codex files it only reads are not distinguishable from any other shell command, and are not reported.


Why this tool

You spent the day with Claude Code or Codex. What actually happened?

  • Which files did it touch?
  • How many commands did it run?
  • Which sessions ran long?
  • Where did things break?

That information is in your JSONL session logs, but reading raw JSONL is not practical. agentlog parses it and gives you a summary you can read in seconds.

The HTML output (--html) is meant to be shared: a single offline file containing the activity metadata of one or more sessions, useful for stand-ups, reviews, or just keeping your own notes.

Why not just ask my AI to summarize the logs? That works, but it involves sending your session logs to a model API. agentlog stays entirely local: it reads log structure, not content, and nothing leaves your machine.


Prior art (and what is different)

Many tools read Claude Code JSONL logs. agentlog occupies a specific gap.

ccusage (ccusage.com) Token and cost tracking for Claude Code, Codex, and 15+ other agent CLIs. Daily/weekly/monthly summaries, per-project filtering, JSON output, MCP server. It reads the same files agentlog reads. Session data includes aggregate tool-call counts but surfaces them as numbers, not as enumerated file and command lists. agentlog is complementary: ccusage answers "what did it cost?" agentlog answers "what did it do?"

claude-code-log Python CLI that converts Claude Code JSONL transcripts to self-contained HTML or Markdown. Excellent for reading full conversation content. Works per-file or per-project. agentlog differs in focus: it shows metadata (files, commands, durations) rather than conversation content, and aggregates across multiple sessions in a time range.

claude-code-trace JSONL session viewer shipped as a native desktop GUI, web app, and TUI. Shows conversations, tool calls, and token counts per session with live tailing. No standalone HTML export and no cross-session time-range digest.

Claudoscope Native macOS menu bar app. Session browser, cost/token stats, generated-files view, full transcript, real-time secret scanning. macOS only, no CLI mode, no HTML export, not scriptable.

CASS — coding_agent_session_search Unified TUI and CLI for indexing and searching session history across 11+ agent providers using BM25 and semantic embeddings. SQLite-backed. A search tool, not a digest generator.

vibe-log-cli Daily activity summary for Claude Code and Codex sessions. Analysis is routed through ACP — it uses your local Claude Code or Codex instance to produce the summary rather than parsing JSONL structure directly. Requires a running agent.

agentlogs (agentlogs.ai) Cloud-based team observability: captures and uploads session transcripts. Requires login and network upload.

agent-sessions Local-first macOS app for browsing, searching, and resuming sessions across many providers. macOS only, no CLI, no HTML export.

claude-session-analyzer Quantitative behavioral analysis: thinking depth, Read/Edit ratio, rework indicators. Aimed at workflow optimization, not readable activity digests.

Where agentlog fits: agentlog list and agentlog show are the scriptable, terminal-native way to browse sessions without launching a GUI or browser. agentlog --html produces a self-contained offline file for sharing — the existing GUI tools are session-by-session viewers, not cross-session digest generators.


Honest limits (v0.2)

Schema drift. Claude Code and Codex change their log formats without notice. Fields that agentlog reads today may move or disappear. Parsing is defensive and will not crash, but some sessions may show empty file or command lists if the format changes.

Project identification is best-effort. The project is taken from the cwd field of the first user record in a session. If a session starts before a user record is written, the project falls back to a guess derived from the directory name, which is ambiguous when paths contain dashes.

Wall duration is elapsed time, not effort. A session's duration is (last timestamp – first timestamp) in its file; the logs contain no reliable elapsed-time field, so idle time between tool calls is included. The headline figure for a period is the union of all session intervals clipped to that period, not their sum — agents run in parallel, and summing them produced "111h in a 24h day". It therefore answers "how much of the day had an agent working" rather than "how many agent-hours were spent".

A session that spans the window is counted only for its share of it. A session running from Tuesday to Friday appears in Wednesday's digest, but only the files, commands, turns and errors timestamped inside Wednesday are counted, and the duration shown is the part that fell inside the window. Sessions whose records carry no usable timestamps fall back to their lifetime totals.

Codex file tracking is partial. Written files are recovered from patch envelopes in the command text, which covers Codex's normal edit path. A file changed some other way — sed -i, a heredoc, a script the agent wrote and then ran — is not detected, and files Codex only reads are never reported. So a Codex project's file list is a floor, not a complete account.

The digest is a summary, and summaries drop things. Per project it shows the three most-written files and the three most frequent distinct failures, and it lists at most eight projects before collapsing the rest into a count. Failures that differ only below their first line — the same heredoc run three times — are collapsed into one row with a (3x) marker. --sessions, agentlog show ID and --json give the unabridged version.

Tokens are not verified. Token counts come from usage fields in the logs. They may differ from what your billing provider records.

Message text is never shown. agentlog extracts metadata only: file paths, shell commands, durations, model names, and token counts. Conversation content is not extracted or displayed regardless of any flag.

No test coverage against the developer's real logs. The test suite uses synthetic fixtures. It cannot guarantee correct parsing of every schema variant in the wild.

Codex session deduplication keeps one file per session ID. When Codex runs parallel worker agents, all workers share the same session_id. agentlog keeps the file with the most user turns and discards the rest. Activity recorded only in the discarded workers (commands, errors) is not surfaced.


Privacy

agentlog is strictly local. No network code. Nothing is uploaded or sent.

It shows metadata only: file paths, shell commands, durations, and model names. Message text is never extracted or displayed.

The HTML digest may contain file paths and shell commands from your sessions. Review it before sharing it with others.


Install

# From source (no install — works immediately):
python3 -m agentlog today

# Install for the current user:
pip install --user .

# Or in a virtualenv:
python3 -m venv .venv
.venv/bin/pip install .
.venv/bin/agentlog today

Requires Python 3.9 or later. Zero runtime dependencies.


Running the tests

python3 -m unittest discover -s tests -v

The tests use synthetic JSONL fixtures in a temporary directory. No real home directory is touched. Pass --home DIR or set AGENTLOG_HOME=DIR to redirect agentlog to a different home in any context.


Part of a small family

Four tools for working with coding agents, same house style: zero dependencies, MIT, no API key, nothing leaves your machine. None of them call a model — that is the point, since the thing being checked already is one.

  • stillworks — record what your code does now, catch when it changes later
  • agentdiff — see what the agent actually changed, before you merge
  • agentlog — what did your coding agent actually do today? ← you are here
  • unedit — a safety net for letting an agent loose on your files

One install gets all four, and stillworks tools says which ones you have:

pip install 'stillworks[all]'
stillworks tools

License

MIT. Copyright (c) 2026 stillworks contributors.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentlog_tool-0.2.1.tar.gz (50.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentlog_tool-0.2.1-py3-none-any.whl (31.0 kB view details)

Uploaded Python 3

File details

Details for the file agentlog_tool-0.2.1.tar.gz.

File metadata

  • Download URL: agentlog_tool-0.2.1.tar.gz
  • Upload date:
  • Size: 50.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for agentlog_tool-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e746501ed075644a3630a265e45c31ee173498c18a60ec191362268d6a206a78
MD5 07aba0dd34e2641f73fcb64836222ccd
BLAKE2b-256 ae460b50ca8e6d8cbdbc09363fecb463348ccd88a6a8424820fb84d447b679a4

See more details on using hashes here.

File details

Details for the file agentlog_tool-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: agentlog_tool-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.3

File hashes

Hashes for agentlog_tool-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d975550ba717ec6a9c46d9cf74fdc549077dab3f684bb24ebf041c06775f2ceb
MD5 3aeb1df46363833be8396b3f77edb0b3
BLAKE2b-256 02f25bdab7b7db6a054a7a8140db488716fb18ef26a9f5b36d2d1df59e0d451c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page