Skip to main content

Agent Worklog

CI Release PyPI Python License: MIT PRs Welcome Ask DeepWiki

English | 繁體中文

Agent Worklog turns coding-agent sessions into weekly reports for managers, saving engineers time.

Agent sessions are grouped into weekly engineering reports

Capabilities

Agent Worklog supports OpenCode, Claude Code, and Codex. Across supported coding-agent harnesses, it can:

  • Find coding-agent sessions across all projects, no matter which folder you are in.
  • Select sessions from recent days, a calendar week, or a specific date range.
  • Group Git worktrees that belong to the same repository.
  • Keep child and subagent sessions linked to the correct repository, or leave them out with --root-only.
  • List each repository's session titles and working folders in the report.
  • Summarize model and token usage when the selected harness provides it.
  • Include source activity IDs and confidence levels as supporting information.
  • Check session information for common secret patterns before creating a report or sending data to an optional LLM.
  • Continue when one session cannot be read and add a warning to the report.
  • On POSIX systems, write reports with owner-only 0600 permissions.

Requirements

For --harness opencode (the default):

  • Python 3.11 or newer
  • OpenCode available as opencode
  • An OpenCode version that provides opencode db and opencode export --sanitize
  • Git available as git

For --harness claude-code:

  • Python 3.11 or newer
  • Git available as git
  • A readable ~/.claude/projects directory (or the directory configured with AGENT_WORKLOG_HARNESSES__CLAUDE_CODE__PROJECTS_DIRECTORY)

No Claude Code CLI is required; Agent Worklog reads the session transcripts directly.

For --harness codex:

  • Python 3.11 or newer
  • Git available as git
  • A readable ~/.codex (or the directory configured with AGENT_WORKLOG_HARNESSES__CODEX__HOME_DIRECTORY)

No Codex CLI is required; Agent Worklog reads the state database or rollout files directly.

opencode stats is optional. Without it, Agent Worklog leaves out the usage section and still creates the report.

Installation

The recommended way to install the command-line tool is with pipx:

pipx install agent-worklog

You can also install it in a regular Python environment:

pip install agent-worklog

For development:

git clone https://github.com/mike840609/agent-worklog.git
cd agent-worklog
uv sync --locked --extra dev

Getting started

Check that OpenCode and Git are available:

agent-worklog doctor

Preview how Agent Worklog groups repositories for the previous full week:

agent-worklog scan --period last-week

Create the Markdown report without using an external LLM:

agent-worklog report --period last-week --no-llm

The default output is written under reports/.

Those three commands default to --harness opencode. For Claude Code or Codex, add --harness claude-code or --harness codex to each — no OpenCode installation is needed:

agent-worklog doctor --harness claude-code
agent-worklog report --harness claude-code --period last-week --no-llm
agent-worklog doctor --harness codex
agent-worklog report --harness codex --period last-week --no-llm

Command reference

Command What it does
doctor Checks that the selected harness and git are ready to use.
scan Shows which sessions fall in a period and how they group into repositories.
report Writes the Markdown report for a period.

scan and report share these options:

Option What it does
--days N Reports the last N days, ending now.
--period last-week Reports the previous full calendar week. last-week is the only accepted value.
--since ISO Starts the period at an exact time.
--until ISO Ends the period at an exact time. Requires --since.
--harness NAME Harness to read sessions from: opencode (default), claude-code, or codex.
--root-only Leaves out child and subagent sessions.
--verbose Also shows export, fallback, and LLM warnings. For scan, also lists each repository's session titles and working folders.
--quiet Shows only the session count for scan, or the output path for report.

While scan and report are working, they show a transient progress status with the current stage. Session and repository stages also show a completed/total count. --quiet hides the progress status. For report --dry-run, progress is written to stderr so stdout contains only Markdown.

report also accepts:

Option What it does
--output PATH Writes to this file instead of the default folder.
--force Replaces the output file if it already exists.
--dry-run Prints the Markdown instead of writing a file.
--no-llm Creates the summary without an external LLM.
--detail LEVEL How much detail the report contains: full (default) or brief.

--detail brief produces a short report for a status update: it keeps the header, and for each repository the Repository: remote line, the session counts, and the summary and up to five each of Completed, Problems Resolved, and In Progress. It leaves out Key Files, Directories, Sessions, Branches, and the usage table. Warnings are always kept, at both detail levels, because they report data the tool could not read rather than work you did.

doctor also accepts --harness NAME, --quiet, and --verbose. --quiet hides the list of checks and reports only through the exit code; --verbose does not change what doctor prints. With --harness claude-code, doctor checks that the configured ~/.claude/projects directory exists and is readable, instead of checking for the opencode executable and database. With --harness codex, doctor checks that the configured ~/.codex directory exists and is readable, and reports which discovery path it will take: the state database by name, or directory scan when none is present.

Three rules apply:

  • Give exactly one of --days, --period, or --since (scan and report).
  • Use --until only together with --since (scan and report).
  • Do not use --verbose and --quiet together (all three commands).

Reporting periods

The last-week period means the previous full calendar week in the configured time zone. It starts on Monday at 00:00 and ends just before the next Monday at 00:00.

agent-worklog report --period last-week

Use --days to report activity from a number of recent days:

agent-worklog report --days 7

Use ISO timestamps to set exact start and end times:

agent-worklog report \
  --since 2026-07-20T00:00:00+08:00 \
  --until 2026-07-27T00:00:00+08:00

You must provide one of --period, --days, or --since. If you use --until, you must also use --since.

Subagent sessions

Subagent sessions are included by default. Each one is linked to the repository it actually ran in, so a subagent that worked in another checkout appears under that repository. To report only root sessions:

agent-worklog report --period last-week --root-only

Both scan and report accept --root-only.

Repository grouping

Agent Worklog checks each session separately to decide which repository it belongs to. It uses the following information in order:

  1. The Git origin remote.
  2. An ID created from a hash of the shared Git directory.
  3. The harness project ID — OpenCode's project ID, or the per-project directory name Claude Code stores transcripts under.
  4. An ID created from a hash of the working directory.
  5. A separate unknown ID for the session.

SSH and HTTPS addresses for the same repository are treated as the same repository. Different branches are also grouped together. If a child session works in another repository, it stays linked to that repository.

LLM summaries

LLM summaries are optional. Agent Worklog connects to an OpenAI-compatible service only when all of the following are true:

  • LLM support is turned on.
  • --no-llm is not used.
  • The API key is set in the selected environment variable.

For the default OpenAI-compatible configuration:

export OPENAI_API_KEY="..."
agent-worklog report --period last-week

LLM requests contain selected work information rather than full transcripts. Agent Worklog checks session information for common secret patterns before building each request. The request may still include repository and branch names, session and activity IDs, goals, commands, and filenames.

If the service times out, returns an HTTP 429 or 5xx error, or returns invalid data, Agent Worklog tries once more. If the second request fails, it creates a summary without the LLM. Use --no-llm to keep report generation on your computer.

Usage statistics

With --harness opencode, each report includes a usage section built from opencode stats, covering models, tokens, and tools. OpenCode reports usage only for a period that ends now. The period shown in the report therefore starts when the report period starts and runs to the time the report is created. It covers the report period but is wider than it. If opencode stats is not available, Agent Worklog leaves the section out and adds a warning to the report.

With --harness claude-code or --harness codex, the usage section is built from token counters recorded in the sessions themselves, so it covers the report period instead of a window that ends when the report is created; the "wider than the period" caveat above does not apply. It counts every model turn in the period, including turns that produced only internal reasoning, whose tokens are carried by the neighbouring recorded activity. That last part is also its one imprecision: a turn sitting exactly on the period boundary can be counted on the other side of it. For Codex specifically, the count itself is what Codex reports for each API request's full input, not a count of distinct tokens.

Output and file handling

Set the output file with --output:

agent-worklog report \
  --period last-week \
  --no-llm \
  --output weekly.md

Agent Worklog does not replace an existing file unless you use --force:

agent-worklog report --period last-week --output weekly.md --force

Use --dry-run to preview the Markdown without writing a file:

agent-worklog report --period last-week --no-llm --dry-run

Use --verbose to show export and LLM fallback warnings. Use --quiet to show only the output path after a successful report.

Configuration

Agent Worklog uses environment variables for its settings. Variable names start with AGENT_WORKLOG_. Use __ between parts of a setting name. For example:

export AGENT_WORKLOG_REPORT__TIMEZONE="Asia/Taipei"
export AGENT_WORKLOG_REPORT__OUTPUT_DIRECTORY="reports"
export AGENT_WORKLOG_HARNESSES__OPENCODE__CLI__EXECUTABLE="opencode"
export AGENT_WORKLOG_LLM__MODEL="gpt-5-mini"
export AGENT_WORKLOG_LLM__BASE_URL="https://api.openai.com/v1/"
export AGENT_WORKLOG_LLM__ENABLED="false"

See the configuration guide for a complete list of settings.

Privacy

Agent Worklog requests OpenCode exports with --sanitize. Claude Code has no export command, so with --harness claude-code Agent Worklog reads ~/.claude/projects transcripts directly and relies on the mapper keeping only prompts, assistant text, tool names, and one command or path per tool call when the call has one. A call with neither — WebFetch's url, WebSearch's query, TodoWrite's todos list, and MCP tool calls in general — has its whole input serialized to JSON and truncated to 200 characters instead. Raw tool stdout/stderr, thinking blocks, and hook output are dropped before anything reaches a report or an LLM request.

Codex has no export command either, so --harness codex reads the rollout JSONL files directly. Two kinds of content are dropped in the mapper rather than downstream: the change value of every patch_apply_end entry, which holds either a unified diff or the whole file the patch wrote, and the input of every exec call, which is an arbitrary JavaScript program. Only the changed file's path and the tool's name survive; a rename's destination path lives inside that discarded value too, so it never reaches Key Files. Commands survive only from exec_command, whose arguments name the command in a field.

For all three harnesses, every piece of supporting information that reaches a report is then capped at 300 characters and marked with a where it was cut. That is what stops a long command — a heredoc such as cat > design.md <<'EOF' … EOF, which carries the whole file it writes inside one command string — from being copied into the report or an LLM request. The secret-pattern checks cannot do this job: a design document or a write-up contains no credential pattern, so only the length limit removes it.

All three harnesses also go through the common secret-pattern checks before creating a report or making an optional LLM request. Pattern checks cannot find every possible secret.

Reports may still contain private goals, filenames, commands, work descriptions, and the full paths of your working folders. Those paths often include your user name and the name of a client or employer, and the secret-pattern checks leave them in place on purpose so a report can say where the work happened. Always review a report before sharing it.

See Privacy and security for more details about data safety and current limits.

Failure handling and exit codes

If one session cannot be read, Agent Worklog skips it and adds a warning to the report. That means a failed opencode export for OpenCode, or an unreadable transcript file for Claude Code or Codex. If no sessions can be read, the command stops with an error instead of creating an empty report.

Code Meaning
0 Success
2 Invalid command options
3 Settings error
4 No matching activity
5 Harness or Git dependency error
7 Report file error

Current support and limits

  • OpenCode, Claude Code, and Codex are the supported coding-agent tools; select one with --harness.
  • For --harness opencode, Agent Worklog gets session data through the OpenCode command-line tool. It does not read the SQLite database directly.
  • Markdown is the only report format.
  • The usage window caveat applies to OpenCode only: opencode stats covers a period that ends when the report is created, so it is wider than the report period. Claude Code and Codex usage is built from the sessions themselves, so it covers the report period, to within a single model turn at each end of it.
  • Agent Worklog does not keep a cache between runs and does not provide an inspect command.
  • Older OpenCode sessions may use a backup ID if their working folders have been deleted.
  • Repository grouping uses the Git information available when the report is created.
  • Claude Code sessions have no exit codes, so no Claude Code report claims that a test or lint command passed or failed. A verification command whose stderr was empty is listed under "In Progress" as Ran verification command: <command>, and a command that redirects its stderr (2>, &>, |&) produces no outcome at all, because for those commands an empty stderr says nothing. Non-empty stderr is not treated as failure either — Git writes to stderr on success. Verification results are reported as passing only for OpenCode, where a real exit code is available. Codex sets neither an exit code nor this stderr signal, so it never reaches that heuristic either.
  • A Claude Code session that spans several working directories is grouped under the last one.
  • A Codex report shows goals, changed files, and token usage. It does not list commands. A command recorded through exec_command reaches the optional LLM summary and nothing else; with --no-llm it is not in the report at all.
  • Commands run from inside Codex's exec tool are not recorded even that far. exec takes a JavaScript program rather than a command, so there is no command to record.
  • No Codex report claims that a command passed or failed. Codex records exit codes only inside free-form tool output, in several formats, so only patch_apply_end's structured success flag is trusted — and it reports a file change, not a verification result.
  • Codex usage counts each API request's full input, which is what Codex itself reports. It is not a count of distinct tokens.
  • When there is no readable Codex state database and Agent Worklog falls back to scanning rollout files, session titles are lost: rollout files carry an agent_nickname but never a title, which lives only in the state database.
  • A Codex message sent with attachments — a browser context, mentioned files, a shell command and its output, a slash command, a background-task notice, or a resume summary — contributes no goal. Agent Worklog cannot tell a genuine request apart from the rest of that envelope without parsing an undocumented format, and it would rather lose the goal than mis-attribute one.

Development checks

uv sync --locked --extra dev
uv run pytest --cov=agent_worklog --cov-fail-under=80
uv run ruff check .
uv run pyright
uv build

See Releasing Agent Worklog for release instructions.

License

MIT

Download files

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

Source Distribution

agent_worklog-0.5.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

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

agent_worklog-0.5.0-py3-none-any.whl (71.0 kB view details)

Uploaded Python 3

File details

Details for the file agent_worklog-0.5.0.tar.gz.

File metadata

  • Download URL: agent_worklog-0.5.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agent_worklog-0.5.0.tar.gz
Algorithm Hash digest
SHA256 73720d26a7b87e8826c40dc7391e954331e89a3f2ef0d18d92be9796989b55b0
MD5 9066349640e41fbf4392791becdd3329
BLAKE2b-256 0388e409c37bdb9dea35a75614da7de6d6af4edf3a95a773aed47dfb560d16e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_worklog-0.5.0.tar.gz:

Publisher: release.yml on mike840609/agent-worklog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agent_worklog-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: agent_worklog-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 71.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agent_worklog-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 64b6a13cd4345b447dbea4fa38212d9073cc147133fc6482c751c4afff06dec2
MD5 2a88f96903fff2b98cc092475157aa69
BLAKE2b-256 498ca6ab5a7707da9188ed1b68753ded23240e3d56829845a7704c3144cf20b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_worklog-0.5.0-py3-none-any.whl:

Publisher: release.yml on mike840609/agent-worklog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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