@cc-status-line/cli 0.2.1 → 0.3.1
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.full +12 -3
- package/package.json +4 -4
package/README.md.full
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# cc-status
|
|
2
2
|
|
|
3
|
-
> Multi-line, mode-switchable status line for [Claude Code](https://docs.claude.com/en/docs/claude-code) — written in Rust,
|
|
3
|
+
> Multi-line, mode-switchable status line for [Claude Code](https://docs.claude.com/en/docs/claude-code) — written in Rust, with optional daemon, ~140ms cold render.
|
|
4
|
+
|
|
5
|
+
🌐 **Site**: <https://hankegui.github.io/cc-status>
|
|
6
|
+
🐙 **Source**: <https://github.com/hankeGui/cc-status>
|
|
4
7
|
|
|
5
8
|
```
|
|
6
9
|
~/hanke-dev/cc-status main Claude Opus 4.7 ctx 86% █████▏ 154.6k/950k
|
|
@@ -12,6 +15,8 @@ ctx 86% █████▏ 154.6k/950k ↑154.6k ↓185 +687 🎯99% cache 4:4
|
|
|
12
15
|
skills: jira×3 wiki×1 mcp: github×2
|
|
13
16
|
```
|
|
14
17
|
|
|
18
|
+
> Run `bash scripts/screenshots.sh` (with `freeze` on PATH) to regenerate the PNG/SVG screenshots embedded above.
|
|
19
|
+
|
|
15
20
|
## Why
|
|
16
21
|
|
|
17
22
|
Most Claude Code status lines stop at "model name + ctx percentage." That hides what actually drives cost and behavior:
|
|
@@ -292,11 +297,15 @@ file; subsequent renders only read newly-appended bytes.
|
|
|
292
297
|
|
|
293
298
|
## Roadmap
|
|
294
299
|
|
|
295
|
-
- [
|
|
296
|
-
- [
|
|
300
|
+
- [x] Daemon mode (Unix socket) for sub-ms cold start
|
|
301
|
+
- [x] Cost segment with per-model pricing
|
|
302
|
+
- [x] Cross-session cost dashboard (`ccs cost`)
|
|
303
|
+
- [x] Auto-update (`ccs upgrade`)
|
|
304
|
+
- [x] Shell completions
|
|
297
305
|
- [ ] Per-session colors / titles (parallel CC instances)
|
|
298
306
|
- [ ] Pace-aware quota burn warning
|
|
299
307
|
- [ ] Plugin segments (custom shell commands)
|
|
308
|
+
- [ ] Re-enable Windows builds
|
|
300
309
|
|
|
301
310
|
## License
|
|
302
311
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cc-status-line/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Multi-line, mode-switchable status line for Claude Code (Rust binary, npm-distributed)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"postinstall": "node postinstall.js || true"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@cc-status-line/darwin-arm64": "0.
|
|
39
|
-
"@cc-status-line/linux-x64": "0.
|
|
40
|
-
"@cc-status-line/linux-arm64": "0.
|
|
38
|
+
"@cc-status-line/darwin-arm64": "0.3.1",
|
|
39
|
+
"@cc-status-line/linux-x64": "0.3.1",
|
|
40
|
+
"@cc-status-line/linux-arm64": "0.3.1"
|
|
41
41
|
}
|
|
42
42
|
}
|