Release 0.9.1: yield command
Some checks failed
CI / semgrep (push) Has been cancelled

Adds `codeburn yield` to track which AI sessions shipped to main vs were reverted or abandoned.
This commit is contained in:
AgentSeal 2026-04-25 17:11:37 +02:00
parent 54c035f5aa
commit 37a54081b2
3 changed files with 8 additions and 3 deletions

View file

@ -1,5 +1,10 @@
# Changelog
## 0.9.1 - 2026-04-25
### Added
- **`codeburn yield` command.** Correlates AI sessions with git history to categorize spend by outcome: **productive** (code shipped to main), **reverted** (commits later undone), or **abandoned** (work that never committed). Shows percentage breakdown so you know not just what you spent, but what happened to it. Accepts `--today`, `--week`, `--month` flags.
## 0.9.0 - 2026-04-24
### Added (CLI)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "codeburn",
"version": "0.7.3",
"version": "0.8.9",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "codeburn",
"version": "0.7.3",
"version": "0.8.9",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",

View file

@ -1,6 +1,6 @@
{
"name": "codeburn",
"version": "0.9.0",
"version": "0.9.1",
"description": "See where your AI coding tokens go - by task, tool, model, and project",
"type": "module",
"main": "./dist/cli.js",