SESS v0.4.0
SESS v0.4.0 adds the first user-facing analytics commands.
Instead of treating session data as something buried in SQLite, you can now inspect recent work directly from the CLI, either for the current repository or across every tracked project on your machine.
Highlights
sess historyshows recent sessions, including paused, active, and ended work.sess statsshows totals, averages, longest-session data, and PR counts.sess reportgives you a compact summary with both aggregate metrics and recent sessions.--allsupport onhistory,stats, andreportlets you view cross-project activity without changing directories.
Example commands
sess history
sess history --all --limit 10
sess stats
sess stats --all
sess report
sess report --allInstallation
Quick install
curl -fsSL https://github.com/Orctatech-Engineering-Team/sess-cli/releases/download/v0.4.0/install.sh | sudo bashBy default this installs sess to /usr/local/bin/sess.
To install into /usr/bin instead:
curl -fsSL https://github.com/Orctatech-Engineering-Team/sess-cli/releases/download/v0.4.0/install.sh | sudo env SESS_INSTALL_DIR=/usr/bin bashManual install
curl -fsSL https://github.com/Orctatech-Engineering-Team/sess-cli/releases/download/v0.4.0/sess-linux-amd64.tar.gz | tar xz
sudo install -m 0755 sess /usr/local/bin/sessVerify
sess --versionExpected output:
SESS v0.4.0