Skip to content

v0.4.0

Latest

Choose a tag to compare

@github-actions github-actions released this 02 Apr 10:12
· 1 commit to main since this release

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 history shows recent sessions, including paused, active, and ended work.
  • sess stats shows totals, averages, longest-session data, and PR counts.
  • sess report gives you a compact summary with both aggregate metrics and recent sessions.
  • --all support on history, stats, and report lets 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 --all

Installation

Quick install

curl -fsSL https://github.com/Orctatech-Engineering-Team/sess-cli/releases/download/v0.4.0/install.sh | sudo bash

By 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 bash

Manual 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/sess

Verify

sess --version

Expected output:

SESS v0.4.0