inspecto 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +16 -2
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -1,13 +1,27 @@
1
1
  # inspecto
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/inspecto)](https://www.npmjs.com/package/inspecto)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![Node.js >= 18](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org)
6
+
3
7
  **Claude Code session quality analyzer — grade sessions, detect regressions, catch cache bugs.**
4
8
 
5
9
  > AMD's AI director manually analyzed 7,000 Claude Code sessions to prove it got worse.
6
10
  > `inspecto` automates that analysis for every developer.
7
11
 
8
- Three tools already count tokens (`ccusage`, `claude-usage`, `Claude-Code-Usage-Monitor`). They answer *"how much did I spend?"*
12
+ | | `ccusage` | `claude-usage` | `Claude-Code-Usage-Monitor` | **`inspecto`** |
13
+ |---|---|---|---|---|
14
+ | Tracks token spend | ✓ | ✓ | ✓ | ✓ |
15
+ | Answers *"how much did I spend?"* | ✓ | ✓ | ✓ | ✓ |
16
+ | Detects quality regressions | ✗ | ✗ | ✗ | **✓** |
17
+ | Grades Claude's behavior | ✗ | ✗ | ✗ | **✓** |
18
+ | Catches silent cache bugs | ✗ | ✗ | ✗ | **✓** |
19
+ | Flags lazy editing patterns | ✗ | ✗ | ✗ | **✓** |
20
+ | Works fully offline, no API key | ✓ | ✓ | ✓ | **✓** |
21
+
22
+ The others answer *"how much did I spend?"*
9
23
 
10
- `inspecto` answers a different question: **"Is Claude Code getting worse for me, and can I prove it?"**
24
+ `inspecto` answers: **"Is Claude Code getting worse for me and can I prove it?"**
11
25
 
12
26
  ---
13
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inspecto",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "inspecto — Claude Code session quality analyzer. Grade sessions, detect regressions, catch cache bugs.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -16,11 +16,15 @@
16
16
  },
17
17
  "keywords": [
18
18
  "claude-code",
19
- "ai-quality",
19
+ "claude-code-quality",
20
+ "session-grader",
21
+ "ai-regression",
20
22
  "session-analysis",
21
23
  "token-usage",
24
+ "cache-hit-rate",
22
25
  "developer-tools",
23
- "cli"
26
+ "cli",
27
+ "anthropic"
24
28
  ],
25
29
  "author": "Rahul Bhardwaj",
26
30
  "license": "MIT",