terminal-wrapped — your year in commands

Everyone loves a Wrapped — a few flattering stats, one mildly embarrassing stat, one personality label. Raw numbers don’t go viral; stories do. So I built terminal-wrapped: a bash script that turns ~/.zsh_history into your year in commands. What it does One script, two outputs: Pretty report — hero stats (total commands, unique, favorite, sudo %, midnight sessions), a derived “personality label”, top-10 commands with bars, a monthly activity heatmap, one embarrassing stat, and fun facts. JSON mode (--json) — structured stats that any future “wrapped engine” can consume to render a shareable card. The tech bit Speed matters when the history is 7k+ lines. Calling date per line is the naive approach — too slow. Instead: ...

10 Sep 2026 · Varun