Nobody reads your PR titles. Especially not your users.
You merge "fix: offset bug in pagination endpoint" and your PM asks, "so what shipped this week?" Now you're scrolling through GitHub, rewriting commit messages into something a customer would understand.
I got tired of that loop, so I built Shiplog β a Python CLI that reads your merged PRs and rewrites them into clean, grouped changelogs.
What it does
One command:
bash
pip install shiplog-cli
shiplog generate your-org/your-repo --days 30
It fetches your merged PRs, runs each through an AI transform, and outputs a changelog grouped by category β New, Improved, Fixed, Infrastructure.
A PR titled fix: pagination offset bug in list endpoint becomes:
β Fixed
β Pagination now returns correct results β Previously, navigating past the first page of list views could skip or duplicate items due to an offset calculation error.
How it works
GitHub PRs β Shiplog API β { category, title, body } β Markdown or JSON
- Auto-detects your repo from git origin β no config needed
- Skips bot PRs (dependabot, renovate) by default
- Runs generations in parallel with automatic rate-limit retries
- Outputs markdown or JSON, to stdout or a file
Quick examples
Auto-detect repo, last 14 days
cd your-project
shiplog generate --days 14
Specific repo, write to file
shiplog generate owner/repo --days 30 -o CHANGELOG.md
JSON output for feeding into other tools
shiplog generate owner/repo --format json
Transform a single PR without GitHub
shiplog single "Add dark mode support" --body "Adds theme toggle in settings"
Why not just use git log?
git log gives you developer context. Changelogs need user context. "Refactor auth middleware to use JWT validation" means nothing to a customer.
Shiplog rewrites it as something like:
β Improved
β Login sessions are now more secure β We upgraded how authentication tokens are validated, improving security without any changes on your end.
That's the gap it fills.
Try it
pip install shiplog-cli
shiplog generate --days 7
It works on any public repo without auth. For private repoKEN or gh auth token automatically.
Site: https://shiplog.arksoft.xyz
Would love feedback β what would make this useful for your workflow?
United States
NORTH AMERICA
Related News
Corporativismo fascista e Taleb
7h ago
How I Built a Full Stack Laundry Management System Using Angular & Node.js
7h ago
SvGrid: a Svelte 5 native data grid (MIT core, headless + render component, MCP-ready)
10h ago
Turing's Last Cipher: The Lost Archive
10h ago
Why Most Custom AI Skills Never Run (And the One Fix)
10h ago