claude-slim 2.4.0 → 2.5.0
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/README.md +4 -11
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -20,18 +20,11 @@ Every Claude Code session auto-loads every skill, memory file, and plugin instru
|
|
|
20
20
|
|
|
21
21
|
---
|
|
22
22
|
|
|
23
|
-
###
|
|
23
|
+
### See it in action
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
│██████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░│ Before claude-slim
|
|
29
|
-
│ 12K tokens consumed ↑ your actual work ↑ │
|
|
30
|
-
├──────────────────────────────────────────────────┤
|
|
31
|
-
│██████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ │ After claude-slim
|
|
32
|
-
│ 5K ↑ more room for your work ↑ │
|
|
33
|
-
└──────────────────────────────────────────────────┘
|
|
34
|
-
```
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="docs/demo.gif" alt="claude-slim cleanup: 11,442 tokens of overhead reduced to ~5,800 in 45 seconds" width="900" />
|
|
27
|
+
</p>
|
|
35
28
|
|
|
36
29
|
Where the bloat hides:
|
|
37
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-slim",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "Analyze and reduce Claude Code token overhead",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"dev": "tsc --watch",
|
|
18
18
|
"test": "vitest run",
|
|
19
19
|
"test:watch": "vitest",
|
|
20
|
+
"demo": "npm run build && bash scripts/demo/fixture.sh && vhs scripts/demo/demo.tape",
|
|
20
21
|
"prepublishOnly": "npm run build"
|
|
21
22
|
},
|
|
22
23
|
"keywords": [
|