Rewrite commit-chronicle as a self-contained Go binary#1
Merged
Conversation
Replace the zsh report script with a single static binary (Bubble Tea TUI).
For a date window it gathers everything you did across your repos — git
commits, commits on PRs you authored, authored PRs, and reviewed PRs — into
one tagged, fuzzy-filterable picker, then exports a worklog (markdown/json).
Highlights:
- Interactive: range menu (incl. custom date selector), multi-select picker
with live git-show preview, in-app editor, animated loading spinner.
- Repo discovery: --repos, --root (auto-discover under a dir), and config
files (~/.config/commit-chronicle/{repos,roots}); unioned + deduped.
- GitHub PR/review discovery via gh, date-bounded to keep API calls sane.
- Flags: --since/--from/--to/--month/--date, --author/--user, --format md|json,
--all, --no-edit, --no-pr, --copy, --out.
- Packages: cmd/commit-chronicle + internal/{model,config,collect,render,tui,app}.
- Build/release via Makefile; CI + release GitHub Actions workflows.
- README rewritten; legacy zsh scripts removed.
This was referenced May 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Replaces the zsh report script with a single self-contained Go binary (Bubble Tea TUI). For a date window it gathers everything you did across your repos — git commits, commits on PRs you authored, authored PRs, and reviewed PRs — into one tagged, fuzzy-filterable picker, then exports a worklog (markdown/json).
Highlights
git show --statpreview, in-app editor, animated loading spinner.--repos,--root(auto-discover all repos under a dir), and config files (~/.config/commit-chronicle/{repos,roots}) — unioned + deduped.gh, date-bounded to keep API calls sane (lists PRs cheaply, fetches details per-PR).--since/--from/--to/--month/--date,--author/--user,--format md|json,--all,--no-edit,--no-pr,--copy,--out.cmd/commit-chronicle+internal/{model,config,collect,render,tui,app}.Makefile(build/install/release), CI + release GitHub Actions workflows, rewritten README,go.modfloorgo 1.24.Try it
make install commit-chronicle --since "7 days ago"Notes
git;gh(authenticated) is optional and unlocks PR/review discovery (--no-prfor git-only).gofmt,go vet, and build are clean; flows verified end-to-end (picker, custom range, spinner, export, JSON).