cc-context-stats 1.15.1 → 1.16.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 +9 -4
- package/package.json +1 -1
- package/scripts/context-stats.sh +1 -1
package/README.md
CHANGED
|
@@ -110,13 +110,17 @@ The CLI gives you the full session picture when the status line is not enough.
|
|
|
110
110
|
| Model Intelligence | How quickly quality is degrading as context grows |
|
|
111
111
|
| Zone distribution | Where the session spent most of its time |
|
|
112
112
|
| Final context composition | How much of the final request was cache, reads, or new input |
|
|
113
|
-
| Cache activity trend | When cache creation and cache reads changed over time |
|
|
113
|
+
| Cache activity trend | When cache creation and cache reads changed over time, with TTL countdown |
|
|
114
114
|
|
|
115
115
|
| Status bar view | Context growth | Cumulative graph |
|
|
116
116
|
|:---:|:---:|:---:|
|
|
117
117
|
|  |  |  |
|
|
118
118
|
|
|
119
|
-
|
|
|
119
|
+
| Cumulative graph | Cache graph |
|
|
120
|
+
|:---:|:---:|
|
|
121
|
+
|  |  |
|
|
122
|
+
|
|
123
|
+
| MI view | Status bar warning state |
|
|
120
124
|
|:---:|:---:|
|
|
121
125
|
|  |  |
|
|
122
126
|
|
|
@@ -127,13 +131,14 @@ Each image shows a different slice of the same session:
|
|
|
127
131
|
- `1.10-cumulative.png` shows overall context usage over time.
|
|
128
132
|
- `1.10.0-model-intelligence.png` shows the MI view as context pressure rises.
|
|
129
133
|
- `1.10-statusline.png` shows the warning state when the session is getting tight.
|
|
134
|
+
- `1.16-cache.png` shows cache creation and read tokens per request with a TTL countdown.
|
|
130
135
|
|
|
131
136
|
## Export Report
|
|
132
137
|
|
|
133
138
|
Export a session when you want the timeline, charts, and summary in one Markdown file.
|
|
134
139
|
|
|
135
140
|
```bash
|
|
136
|
-
context-stats
|
|
141
|
+
context-stats <session_id> export --output report.md
|
|
137
142
|
```
|
|
138
143
|
|
|
139
144
|
The report starts with the command that produced it, then folds the headline facts into an executive snapshot.
|
|
@@ -154,7 +159,7 @@ Example output:
|
|
|
154
159
|
|
|
155
160
|
## Generate
|
|
156
161
|
|
|
157
|
-
context-stats
|
|
162
|
+
context-stats 8bb55603-45b8-4bdf-aa04-d51366610b1a export --output report.md
|
|
158
163
|
|
|
159
164
|
## Executive Snapshot
|
|
160
165
|
| Signal | Value | Why it matters |
|
package/package.json
CHANGED
package/scripts/context-stats.sh
CHANGED