chekk 0.3.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/chekk.js +1 -1
- package/package.json +1 -1
- package/src/display.js +423 -240
- package/src/index.js +24 -3
- package/src/insights.js +511 -0
- package/src/metrics/ai-leverage.js +13 -3
- package/src/metrics/debug-cycles.js +17 -3
- package/src/metrics/decomposition.js +12 -2
- package/src/metrics/session-structure.js +12 -2
- package/src/scorer.js +55 -26
package/bin/chekk.js
CHANGED
|
@@ -4,7 +4,7 @@ import { execSync, spawn } from 'child_process';
|
|
|
4
4
|
import { Command } from 'commander';
|
|
5
5
|
import { run } from '../src/index.js';
|
|
6
6
|
|
|
7
|
-
const LOCAL_VERSION = '0.
|
|
7
|
+
const LOCAL_VERSION = '0.4.1';
|
|
8
8
|
|
|
9
9
|
// ── Auto-update check ──
|
|
10
10
|
// If running from a cached npx install, check if there's a newer version
|