Skip to main content

Your AI coding recovery score, from the terminal.

Project description

CodeStrain

CodeStrain CLI

Your AI coding recovery score, from the terminal.

PyPI version Python versions License: MIT CI status

What is this

CodeStrain parses the Claude Code JSONL session logs already on your disk (~/.claude/projects/) and prints cost, token usage, a Developer Recovery Score (DRS) estimate, and a per-project breakdown. Zero dependencies — Python stdlib only. Read-only — your JSONL never leaves the machine.

Install

The CLI is a single command. Pick the install path your machine prefers — all three put codestrain on your $PATH:

# macOS — recommended (Homebrew)
brew install codestrain/tap/codestrain
codestrain --help
# any OS — pipx, isolated venv + symlink on PATH
pipx install codestrain
codestrain --help
# any OS — uv tool, fastest
uv tool install codestrain
codestrain --help
# one-liner installer — detects pipx/uv/pip and adds PATH automatically
curl -fsSL codestrain.dev/install | sh

pip install codestrain works too, but leaves the binary off your $PATH on macOS (PEP 668 / user-install convention). See troubleshooting below.

If codestrain: command not found after pip install codestrain

That's the macOS / PEP 668 quirk — pip installed the wheel but didn't put the entry-point on PATH. Three fixes, in order of preference:

# (a) run it as a module — works without any PATH change
python3 -m codestrain_cli --all

# (b) switch to pipx (installs in isolated venv, fixes PATH)
brew install pipx        # or:  python3 -m pip install --user pipx
pipx ensurepath          # adds ~/.local/bin to PATH
pipx install codestrain

# (c) find where pip put the binary and add that dir to PATH
pip show -f codestrain | grep -E 'bin/codestrain'
# typical macOS user-install path:
echo 'export PATH="$HOME/Library/Python/3.11/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

Quick start

# today's stats (default)
codestrain
# all-time, every session ever logged
codestrain --all
# all-time, with project names hashed
codestrain --all --anonymize

Example output

   ______          __     _____ __             
  / ____/___  ____/ /__  / ___// /__________ _( )___
 / /   / __ \/ __  / _ \ \__ \/ __/ ___/ __ `/ / __ \
/ /___/ /_/ / /_/ /  __/___/ / /_/ /  / /_/ / / / / /
\____/\____/\__._/\___//____/\__/_/   \__._/_/_/ /_/

  Your AI coding recovery score.

--- All Time ------------------------------------------

  Sessions:  1454
  Duration:  137h 21m  (span 15352h 27m)
  Turns:     61007
  Tokens:    2.0M in / 25.4M out
  Cost:      $21948.61
  Models:    claude-haiku-4-5, claude-opus-4-5, claude-opus-4-7 +5 more

  DRS Estimate  (avg per active day · 52 days · 2.6h/day)
  Strain:    9.0/21
  Recovery:  82%
  Readiness: GREEN — Recovered. Good to go.

--- Per-Project Breakdown -----------------------------

  project-1   31h  2m  13638 turns  $7193.92
  project-2   21h 40m   8684 turns  $3652.80
  project-3   15h 32m   4789 turns  $1212.63
  ...

Flags reference

Flag Purpose
--all Aggregate every session ever logged instead of just today.
--project NAME Only include sessions whose project basename matches NAME.
--path DIR Read JSONL from DIR instead of ~/.claude/projects/.
--detect Scan common locations and print where Claude Code data lives.
--anonymize Hash project names before printing the breakdown.
--no-breakdown Suppress the per-project breakdown table.
--no-color Disable ANSI colors (also honors NO_COLOR).
--logo {auto,big,small,none} Control the ASCII logo: big always, small one-liner, none off, auto picks based on terminal width.

DRS — what it actually measures

Strain (0-21, per active day). The CLI sums the gaps between consecutive turns that are ≤ 5 minutes — that's the "active coding" duration. Each hour contributes 2.1 strain points, capped at 21. The 5-minute threshold matches the ccusage / Claude Code Usage Monitor convention and is configurable via CODESTRAIN_GAP_MIN. Debug-heavy sessions (high error ratio), late-night work (after 22:00), and weekend coding add small penalties.

Recovery (0-100%). Recovery moves inversely to strain and is modulated by hours since the last session (sleep proxy). Eight hours off lifts the baseline; high recent strain pulls it down. The local heuristic doesn't have biometric input — it's purely behavioral.

Readiness. A traffic-light derived from recovery: GREEN at ≥ 67%, YELLOW between 34% and 66%, RED below 34%. The thresholds match the macOS app and the WHOOP-inspired DRS spec.

This is a heuristic estimate from JSONL logs, not medical advice. The full CodeStrain app refines DRS with ML models, wearable data (HealthKit / WHOOP / Oura), and per-user calibration.

Why this is privacy-first

  • All parsing runs locally. No data ever leaves your machine.
  • No telemetry, no opt-in pings, no usage analytics — not even crash reports.
  • Your JSONL files are read-only. They are never uploaded, copied, or modified.
  • Respects NO_COLOR and FORCE_COLOR / CLICOLOR_FORCE conventions for piping and CI.

Related projects

  • ccusage — the npm reference for parsing Claude Code JSONL. Friend, not foe. We follow its session model so numbers line up.
  • Claude-Code-Usage-Monitor — Python alternative with ML burn-rate prediction and a live dashboard.

Roadmap (v0.1)

  • CreatureView — a tiny macOS menu-bar companion that surfaces DRS without opening a terminal (private beta).
  • Souls Studio — paid persona pack and custom-character marketplace (Drill Sergeant, Gentle Princess, Sarcastic AI...).
  • Magenta-key sprite pipeline v1.2 — clean alpha extraction for community-created creatures.
  • Wearable integration — Apple HealthKit, WHOOP, Oura → unified HealthSnapshot.

More at codestrain.dev.

Contributing

PRs welcome. Sign your commits with git commit -s (DCO) and run the suite before opening one:

python -m pytest tests/
tests/smoke.sh

See CONTRIBUTING.md for the contribution workflow and TESTING.md for the full test matrix.

License

CodeStrain CLI is MIT-licensed and free for everyone — individuals, teams, companies, and forks — forever for this and every prior release. The CodeStrain hosted service (DRS predictions, ML models, encrypted sync) is a separate paid product; the CLI works fully offline without it.

If we ever introduce a commercial license for a future major version, we will give at least 90 days' notice, keep individuals and small organizations free, and never apply new terms retroactively. See CONTRIBUTING.md for the maintainer's relicensing posture and the DCO sign-off contributors use.

Copyright (c) 2026 LLP HubLab (codestrain.dev).


Star this repo if codestrain told you something you didn't know about your last week of AI coding. → codestrain.dev

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

codestrain-0.1.4.tar.gz (464.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

codestrain-0.1.4-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file codestrain-0.1.4.tar.gz.

File metadata

  • Download URL: codestrain-0.1.4.tar.gz
  • Upload date:
  • Size: 464.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for codestrain-0.1.4.tar.gz
Algorithm Hash digest
SHA256 50f70f02418845ed530ed11efb8272798b23cc9757894c4533261aefce913396
MD5 0e12d5d0247349ed0221748cc91b21e3
BLAKE2b-256 556234b8d91ca9a13dfa875059e07920693ae9b552d8262f1ec6502756d151bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for codestrain-0.1.4.tar.gz:

Publisher: release.yml on codestrain/codestrain-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file codestrain-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: codestrain-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for codestrain-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 70a0c11d6dd451beaa2744e3b855e46f37d4bbebcbcd317c381a3980fb012a5c
MD5 8ac99effe8367412fb82fedab92980c7
BLAKE2b-256 384d461357317d2ac3a85a0b929d58ab6c0b5de9ea2ff2b790bcc6b8d7ed0c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for codestrain-0.1.4-py3-none-any.whl:

Publisher: release.yml on codestrain/codestrain-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page