Ever forget what you worked on yesterday? DevLog remembers — so you don’t have to.
Generate a daily changelog from your Git commit history — automatically grouped by date and written to DEVLOG.md
.
- 📅 Groups commits by day
- 📝 Outputs clean, shareable Markdown
- ⚡ Runs instantly via CLI (
npx @claywarren/devlog
) - 💻 Zero configuration — works in any Git repo
git clone https://github.com/claywarren/devlog.git
cd devlog
npm install
npm run build
npm install -g @claywarren/devlog
- macOS
- Linux
- Windows
Run inside any Git repository:
- Using
npx
(without installing globally):
npx devlog
- Or, after installing globally:
devlog
This will generate or update a file:
## 2025-08-08
- feat: add login form
- fix: crash on settings save
- docs: update API usage
- Runs
git log
to get commit history. - Groups commits by commit date.
- Writes them to
DEVLOG.md
in reverse chronological order.
$ npx devlog
✅ DEVLOG.md updated!
Output in DEVLOG.md
:
## 2025-08-08
- feat: add login form
- fix: crash on settings save
- docs: update API usage
MIT © 2025 Clay Warren