@chongdashu/cc-statusline 1.2.0 → 1.2.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 +29 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,40 +34,47 @@ Transform your bland Claude Code terminal into an information-rich powerhouse:
|
|
|
34
34
|
|
|
35
35
|
- **📁 Smart Directory Display** - Current folder with `~` abbreviation
|
|
36
36
|
- **🌿 Git Integration** - Current branch name with clean styling
|
|
37
|
-
- **🤖 Model Intelligence** - Shows which Claude model you're using
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
37
|
+
- **🤖 Model Intelligence** - Shows which Claude model you're using plus Claude Code version
|
|
38
|
+
- **🧠 Context Awareness** - Real-time context window usage with visual progress bars
|
|
39
|
+
- **💰 Smart Cost Tracking** - Live cost monitoring with highlighted burn rates via ccusage
|
|
40
|
+
- **⌛ Session Management** - Time remaining until usage limit resets with progress visualization
|
|
41
|
+
- **📊 Advanced Analytics** - Token consumption, burn rate metrics, and output style display
|
|
42
|
+
- **🎨 Modern Colors** - Beautiful 256-color palette optimized for Claude Code terminals
|
|
42
43
|
- **⚡ Lightning Fast** - Optimized bash script with <100ms execution time
|
|
43
44
|
|
|
44
45
|
## 🎛️ Features Overview
|
|
45
46
|
|
|
46
|
-
### 🔥 Default Features (Pre-selected)
|
|
47
|
+
### 🔥 Default Features (All Pre-selected in v1.2.0+)
|
|
47
48
|
| Feature | Description | Example |
|
|
48
49
|
|---------|-------------|---------|
|
|
49
50
|
| 📁 **Directory** | Current working directory | `~/my-project` |
|
|
50
|
-
| 🌿 **Git Branch** | Active git branch | `
|
|
51
|
-
| 🤖 **Model** | Claude model name & version | `
|
|
52
|
-
|
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
51
|
+
| 🌿 **Git Branch** | Active git branch | `feature/statusline` |
|
|
52
|
+
| 🤖 **Model** | Claude model name & version | `Sonnet 4` |
|
|
53
|
+
| 📟 **Claude Code** | Claude Code version | `v1.0.85` |
|
|
54
|
+
| 🎨 **Output Style** | Current output style setting | `default` |
|
|
55
|
+
| 🧠 **Context** | Remaining context with progress bar | `83% [========--]` |
|
|
56
|
+
| 💰 **Cost** | Live costs with highlighted burn rate | `$49.00 ($16.55/h)` |
|
|
57
|
+
| ⌛ **Session** | Time until reset with progress | `3h 7m until reset at 01:00 (37%) [===-------]` |
|
|
58
|
+
|
|
59
|
+
### 🚀 Power Features (Also Pre-selected)
|
|
56
60
|
| Feature | Description | Example |
|
|
57
61
|
|---------|-------------|---------|
|
|
58
|
-
| 📊 **
|
|
59
|
-
| ⚡ **Burn Rate** | Tokens per minute | `847 tpm` |
|
|
62
|
+
| 📊 **Tokens** | Token consumption with burn rate | `14638846 tok (279900 tpm)` |
|
|
60
63
|
|
|
61
64
|
### 🎨 Example Outputs
|
|
62
65
|
|
|
63
|
-
**
|
|
66
|
+
**New 3-Line Modern Layout (v1.2.0+):**
|
|
64
67
|
```
|
|
65
|
-
📁 ~/
|
|
68
|
+
📁 ~/Projects/cc-statusline 🌿 feature/context-usage-output-styles 🤖 Sonnet 4 📟 v1.0.85 🎨 default
|
|
69
|
+
🧠 Context Remaining: 83% [========--] ⌛ 3h 7m until reset at 01:00 (37%) [===-------]
|
|
70
|
+
💰 $49.00 ($16.55/h) 📊 14638846 tok (279900 tpm)
|
|
66
71
|
```
|
|
67
72
|
|
|
68
|
-
**
|
|
73
|
+
**Compact Mode:**
|
|
69
74
|
```
|
|
70
|
-
📁 ~/
|
|
75
|
+
📁 ~/my-app 🌿 main 🤖 Claude Sonnet 📟 v1.0.85
|
|
76
|
+
🧠 Context Remaining: 95% [=========-]
|
|
77
|
+
💰 $2.48 ($12.50/h)
|
|
71
78
|
```
|
|
72
79
|
|
|
73
80
|
## 🛠️ Advanced Usage
|
|
@@ -109,8 +116,8 @@ npm install -g @chongdashu/cc-statusline
|
|
|
109
116
|
### Technical Architecture
|
|
110
117
|
|
|
111
118
|
- **⚡ Bash-First** - Native shell execution for maximum speed
|
|
112
|
-
- **🎨
|
|
113
|
-
- **🌍 Environment Respect** - Honors `NO_COLOR` and other conventions
|
|
119
|
+
- **🎨 Claude Code Optimized** - Forces colors for Claude Code terminals (respects NO_COLOR)
|
|
120
|
+
- **🌍 Environment Respect** - Honors `NO_COLOR` and other terminal conventions
|
|
114
121
|
- **📦 Zero Dependencies** - Self-contained script with graceful fallbacks
|
|
115
122
|
- **🔒 Secure** - No network requests except ccusage integration
|
|
116
123
|
|
|
@@ -169,6 +176,8 @@ If auto-configuration fails, simply add this to `.claude/settings.json`:
|
|
|
169
176
|
- **Install jq**: `brew install jq` (macOS) or `apt install jq` (Ubuntu)
|
|
170
177
|
- **ccusage setup**: Works automatically via `npx ccusage@latest`
|
|
171
178
|
- **Git not found**: Install git for branch display
|
|
179
|
+
- **Context not showing**: Ensure you're in an active Claude Code session with context usage
|
|
180
|
+
- **Colors not working**: Check that NO_COLOR environment variable is not set
|
|
172
181
|
|
|
173
182
|
## 🚀 Performance
|
|
174
183
|
|