Ship updates without leaving your terminalnew

Aug 7, 2026 · by dario

The wakelog CLI is a single ~120-line bash script with zero dependencies beyond curl:


curl -fsSL https://wakelog.wakelog.workers.dev/install.sh | sh
wakelog init my-app wl_YOUR_TOKEN
wakelog post "v1.4: Dark mode" -t new -b "You asked, we shipped."

The best part: wakelog post --from-git turns the commits since your last tag into a changelog entry. The end of a release script is now literally:


git tag v1.4 && wakelog post --from-git

You can read the whole script before installing it: https://wakelog.wakelog.workers.dev/wakelog