cc-context-stats 1.8.1 → 1.9.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 +14 -0
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -68,6 +68,20 @@ Or with uv:
|
|
|
68
68
|
uv pip install cc-context-stats
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
+
### Verify Installation
|
|
72
|
+
|
|
73
|
+
After installing via any method, verify that both the statusline and context-stats CLI are working:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
curl -fsSL https://raw.githubusercontent.com/luongnv89/cc-context-stats/main/scripts/check-install.sh | bash
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Or if you cloned the repo:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
./scripts/check-install.sh
|
|
83
|
+
```
|
|
84
|
+
|
|
71
85
|
## Quick Start
|
|
72
86
|
|
|
73
87
|
### Status Line Integration
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-context-stats",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Monitor your Claude Code session context in real-time - track token usage and never run out of context",
|
|
5
5
|
"main": "scripts/statusline.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"context-stats": "scripts/context-stats.sh"
|
|
8
|
-
"claude-statusline": "scripts/statusline.js"
|
|
7
|
+
"context-stats": "scripts/context-stats.sh"
|
|
9
8
|
},
|
|
10
9
|
"scripts": {
|
|
11
10
|
"test": "jest",
|