claude-code-status-line 1.2.3

A configurable status line for Claude Code with powerline arrows, context tracking, and quota monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# Development

Contributing, building from source, and development guidelines.

## ๐Ÿค Contributing

We welcome contributions! Here's how to get started.

### Ways to Contribute

- ๐Ÿ› **Report bugs** - [Open an issue]https://github.com/ndave92/claude-code-status-line/issues
- โœจ **Suggest features** - [Start a discussion]https://github.com/ndave92/claude-code-status-line/discussions
- ๐Ÿ“ **Improve documentation** - Submit a PR for wiki or README updates
- ๐ŸŽจ **Share themes** - Post your color schemes in discussions
- ๐Ÿ’ป **Submit code** - Fix bugs or implement features

### Before Contributing

1. Check [existing issues]https://github.com/ndave92/claude-code-status-line/issues
2. For major changes, open an issue or discussion first
3. Follow the code style (enforced by `rustfmt` and `clippy`)

---

## ๐Ÿ› ๏ธ Development Setup

### Prerequisites

- **Rust** (stable toolchain)

  macOS / Linux:
  ```bash
  curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  ```

  Windows: Download and run [rustup-init.exe]https://rustup.rs/

- **Git**
- **Claude Code** (for testing)

### Clone and Build

```bash
# Clone the repository
git clone https://github.com/ndave92/claude-code-status-line.git
cd claude-code-status-line

# Build debug version
cargo build

# Build release version
cargo build --release

# Run tests
cargo test

# Check formatting
cargo fmt --all -- --check

# Run linter
cargo clippy --all-targets --all-features -- -D warnings
```

### Development Workflow

```bash
# Create a feature branch
git checkout -b feature/my-feature

# Make changes and test
cargo build
cargo test

# Format code
cargo fmt --all

# Check for issues
cargo clippy --all-targets --all-features

# Run validation script
bash scripts/validate.sh

# Commit and push
git add .
git commit -m "Description of changes"
git push origin feature/my-feature
```

---

## ๐Ÿ—๏ธ Project Structure

```
claude-code-status-line/
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ main.rs           # Entry point
โ”‚   โ”œโ”€โ”€ lib.rs            # Library interface
โ”‚   โ”œโ”€โ”€ config.rs         # Configuration loading
โ”‚   โ”œโ”€โ”€ colors.rs         # Color definitions
โ”‚   โ”œโ”€โ”€ statusline.rs     # Main statusline logic
โ”‚   โ”œโ”€โ”€ render.rs         # Rendering functions
โ”‚   โ”œโ”€โ”€ context.rs        # Context usage handling
โ”‚   โ”œโ”€โ”€ quota.rs          # Quota API integration
โ”‚   โ”œโ”€โ”€ git.rs            # Git information
โ”‚   โ”œโ”€โ”€ types.rs          # Common types
โ”‚   โ””โ”€โ”€ utils.rs          # Utility functions
โ”œโ”€โ”€ docs/
โ”‚   โ””โ”€โ”€ wiki/             # Wiki content
โ”œโ”€โ”€ scripts/
โ”‚   โ”œโ”€โ”€ validate.sh       # Validation script
โ”‚   โ””โ”€โ”€ quick-check.sh    # Quick checks
โ”œโ”€โ”€ .claude/
โ”‚   โ””โ”€โ”€ commands/         # Claude Code commands
โ”‚       โ”œโ”€โ”€ install-statusline.md
โ”‚       โ””โ”€โ”€ update-statusline.md
โ”œโ”€โ”€ .github/
โ”‚   โ””โ”€โ”€ workflows/        # CI/CD workflows
โ”‚       โ”œโ”€โ”€ ci.yml
โ”‚       โ”œโ”€โ”€ release.yml
โ”‚       โ””โ”€โ”€ publish-crates.yml
โ”œโ”€โ”€ Cargo.toml            # Dependencies and metadata
โ”œโ”€โ”€ settings.json           # Example config
โ”œโ”€โ”€ colors.json           # Example colors
โ””โ”€โ”€ README.md
```

### Module Overview

- **main.rs** - Reads JSON input from stdin, parses it, and renders the status line
- **config.rs** - Loads and validates `settings.json` and `colors.json`
- **statusline.rs** - Orchestrates section rendering and layout
- **render.rs** - ANSI escape code generation for colors and styling
- **quota.rs** - Fetches quota information from Claude API
- **git.rs** - Detects git branch and status
- **context.rs** - Calculates context usage percentages
- **utils.rs** - Text truncation, width calculation, etc.

---

## ๐Ÿงช Testing

### Run Tests

```bash
# All tests
cargo test

# Specific test
cargo test test_name

# With output
cargo test -- --nocapture

# Documentation tests
cargo test --doc
```

### Manual Testing

Test with sample input:

```bash
# Build
cargo build

# Test with sample data
echo '{"workspace":{"current_dir":"/Users/test/project"},"model":{"display_name":"Sonnet 4.5"},"context_window":{"context_window_size":200000,"current_usage":{"input_tokens":15000}}}' | ./target/debug/claude-code-status-line
```

### Test with Claude Code

1. Build the binary
2. Update your `~/.claude/settings.json` to point to the debug binary:
   ```json
   {
     "statusLine": {
       "type": "command",
       "command": "/path/to/claude-code-status-line/target/debug/claude-code-status-line",
       "padding": 0
     }
   }
   ```
3. Restart Claude Code
4. Make changes and rebuild (`cargo build`)
5. Restart Claude Code to see changes

---

## ๐Ÿ“‹ Code Style

### Formatting

Use `rustfmt` for consistent formatting:

```bash
# Format all code
cargo fmt --all

# Check without modifying
cargo fmt --all -- --check
```

### Linting

Use `clippy` for best practices:

```bash
# Run clippy
cargo clippy --all-targets --all-features

# Deny warnings
cargo clippy --all-targets --all-features -- -D warnings
```

### Style Guidelines

- Use descriptive variable names
- Add comments for complex logic
- Keep functions focused and small
- Use Rust idioms (Result, Option, iterators)
- Prefer immutability when possible
- Handle errors gracefully

---

## ๐Ÿ”„ Validation Script

Run the full validation suite before committing:

**macOS / Linux:**
```bash
bash scripts/validate.sh
```

**Windows:**

Using Git Bash (recommended):
```bash
bash scripts/validate.sh
```

Or run manually in PowerShell:
```powershell
cargo fmt --all
cargo clippy --all-targets --all-features -- -D warnings
cargo test
cargo build --release
```

This runs:
1. Code formatting (with auto-fix)
2. Clippy checks
3. All tests
4. Release build

---

## ๐Ÿ“ฆ Release Process

### Version Bumping

1. Update version in `Cargo.toml`
2. Update version in `Cargo.lock`:
   ```bash
   cargo build
   ```
3. Commit changes:
   ```bash
   git add Cargo.toml Cargo.lock
   git commit -m "Bump version to X.Y.Z"
   ```

### Creating a Release

1. **Merge to master:**
   ```bash
   git checkout master
   git merge dev
   git push origin master
   ```

2. **Create GitHub release:**
   ```bash
   gh release create vX.Y.Z \
     --title "vX.Y.Z" \
     --notes "Release notes here"
   ```

3. **Automated workflows run:**
   - Build binaries for all platforms
   - Publish to crates.io
   - Attach binaries to GitHub release

### Release Checklist

- [ ] Version bumped in Cargo.toml
- [ ] CHANGELOG updated (if exists)
- [ ] All tests pass (`cargo test`)
- [ ] Validation script passes (`bash scripts/validate.sh`)
- [ ] Documentation updated
- [ ] Merged to master
- [ ] GitHub release created
- [ ] Binaries built and attached
- [ ] Published to crates.io

---

## ๐Ÿ› Debugging

### Debug Logging

Add debug output:

```rust
eprintln!("Debug: {:?}", some_value);
```

View in Claude Code logs or redirect stderr:

**macOS / Linux:**
```bash
echo '...' | ./target/debug/claude-code-status-line 2> debug.log
```

**Windows (PowerShell):**
```powershell
'...' | .\target\debug\claude-code-status-line.exe 2> debug.log
```

### Common Issues

**Build errors:**
```bash
# Clean and rebuild
cargo clean
cargo build
```

**Test failures:**
```bash
# Run specific test with output
cargo test test_name -- --nocapture
```

**Clippy warnings:**
```bash
# See all warnings
cargo clippy --all-targets --all-features
```

---

## ๐Ÿ“š Dependencies

Key dependencies used:

- **serde / serde_json** - JSON parsing and serialization
- **chrono** - Date/time handling for quota timers
- **keyring** - Secure token storage (cross-platform)
- **terminal_size** - Terminal width detection
- **unicode-width** - Text width calculation

### Adding Dependencies

```bash
# Add a new dependency
cargo add dependency-name

# Add a dev dependency
cargo add --dev dev-dependency-name
```

Update `Cargo.toml` and commit changes.

---

## ๐Ÿค Pull Request Process

1. **Fork the repository**
2. **Create a feature branch** from `dev`
3. **Make your changes**
4. **Run validation:** `bash scripts/validate.sh`
5. **Commit with clear messages**
6. **Push to your fork**
7. **Open a Pull Request** against `dev` branch

### PR Guidelines

- Describe what your PR does
- Reference related issues (#123)
- Include test cases for new features
- Update documentation if needed
- Ensure CI passes

---

## ๐Ÿ’ฌ Getting Help

- **Questions:** [GitHub Discussions]https://github.com/ndave92/claude-code-status-line/discussions
- **Issues:** [GitHub Issues]https://github.com/ndave92/claude-code-status-line/issues
- **Code Review:** Tag maintainers in your PR

---

## ๐Ÿ“„ License

By contributing, you agree that your contributions will be licensed under the MIT License.