ccstatusline 2.2.1 → 2.2.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.
- package/README.md +8 -2
- package/dist/ccstatusline.js +2481 -1243
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -46,13 +46,14 @@
|
|
|
46
46
|
|
|
47
47
|
## 🆕 Recent Updates
|
|
48
48
|
|
|
49
|
-
### v2.2.0 - v2.2.
|
|
49
|
+
### v2.2.0 - v2.2.2 - Token Speed + Skills widget updates
|
|
50
50
|
|
|
51
51
|
- **🚀 New Token Speed widgets** - Added three widgets: **Input Speed**, **Output Speed**, and **Total Speed**.
|
|
52
52
|
- Each speed widget supports a configurable window of `0-120` seconds in the widget editor (`w` key).
|
|
53
53
|
- `0` disables window mode and uses a full-session average speed.
|
|
54
54
|
- `1-120` calculates recent speed over the selected rolling window.
|
|
55
55
|
- **🧩 New Skills widget controls (v2.2.1)** - Added configurable Skills modes (last/count/list), optional hide-when-empty behavior, and list-size limiting with most-recent-first ordering.
|
|
56
|
+
- **🌐 Usage API proxy support (v2.2.2)** - Usage widgets honor the uppercase `HTTPS_PROXY` environment variable for their direct API call to Anthropic.
|
|
56
57
|
- **🤝 Better subagent-aware speed reporting** - Token speed calculations continue to include referenced subagent activity so displayed speeds better reflect actual concurrent work.
|
|
57
58
|
|
|
58
59
|
### v2.1.0 - v2.1.10 - Usage widgets, links, new git insertions / deletions widgets, and reliability fixes
|
|
@@ -203,6 +204,8 @@ The interactive configuration tool provides a terminal UI where you can:
|
|
|
203
204
|
> $env:CLAUDE_CONFIG_DIR="C:\custom\path\.claude"
|
|
204
205
|
> ```
|
|
205
206
|
|
|
207
|
+
> 🌐 **Usage API proxy:** Usage widgets honor the uppercase `HTTPS_PROXY` environment variable for their direct API call to Anthropic.
|
|
208
|
+
|
|
206
209
|
### Claude Code settings.json format
|
|
207
210
|
|
|
208
211
|
When you install from the TUI, ccstatusline writes a `statusLine` command object to your Claude Code settings:
|
|
@@ -673,9 +676,12 @@ bun run example
|
|
|
673
676
|
# Run tests
|
|
674
677
|
bun test
|
|
675
678
|
|
|
676
|
-
# Run typecheck + eslint
|
|
679
|
+
# Run typecheck + eslint checks without modifying files
|
|
677
680
|
bun run lint
|
|
678
681
|
|
|
682
|
+
# Apply ESLint auto-fixes intentionally
|
|
683
|
+
bun run lint:fix
|
|
684
|
+
|
|
679
685
|
# Build for distribution
|
|
680
686
|
bun run build
|
|
681
687
|
|