@owloops/claude-powerline 1.9.5 → 1.9.7

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.
Files changed (3) hide show
  1. package/README.md +83 -114
  2. package/dist/index.js +8 -8
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -165,9 +165,8 @@ Config files reload automatically and no restart needed.
165
165
 
166
166
  ### Segment Configuration
167
167
 
168
- #### Directory
169
-
170
- Shows current working directory name.
168
+ <details>
169
+ <summary><strong>Directory</strong> - Shows current working directory name</summary>
171
170
 
172
171
  ```json
173
172
  "directory": {
@@ -180,11 +179,10 @@ Shows current working directory name.
180
179
 
181
180
  - `showBasename`: Show only folder name instead of full path
182
181
 
183
- ---
184
-
185
- #### Git
182
+ </details>
186
183
 
187
- Shows branch, status, and repository information.
184
+ <details>
185
+ <summary><strong>Git</strong> - Shows branch, status, and repository information</summary>
188
186
 
189
187
  ```json
190
188
  "git": {
@@ -215,11 +213,10 @@ Shows branch, status, and repository information.
215
213
 
216
214
  - `⎇` Branch • `♯` SHA • `⌂` Tag • `⧇` Stash • `✓` Clean • `●` Dirty • `⚠` Conflicts • `↑3` Ahead • `↓2` Behind • `(+1 ~2 ?3)` Staged/Unstaged/Untracked
217
215
 
218
- ---
216
+ </details>
219
217
 
220
- #### Metrics
221
-
222
- Shows performance analytics from your Claude sessions.
218
+ <details>
219
+ <summary><strong>Metrics</strong> - Shows performance analytics from your Claude sessions</summary>
223
220
 
224
221
  ```json
225
222
  "metrics": {
@@ -246,11 +243,10 @@ Shows performance analytics from your Claude sessions.
246
243
 
247
244
  - `⧖` Total API time • `Δ` Last response • `⧗` Session duration • `⟐` Messages • `+` Lines added • `-` Lines removed
248
245
 
249
- ---
250
-
251
- #### Model
246
+ </details>
252
247
 
253
- Shows current Claude model being used.
248
+ <details>
249
+ <summary><strong>Model</strong> - Shows current Claude model being used</summary>
254
250
 
255
251
  ```json
256
252
  "model": {
@@ -258,11 +254,10 @@ Shows current Claude model being used.
258
254
  }
259
255
  ```
260
256
 
261
- ---
257
+ </details>
262
258
 
263
- #### Context
264
-
265
- Shows context window usage and auto-compact threshold.
259
+ <details>
260
+ <summary><strong>Context</strong> - Shows context window usage and auto-compact threshold</summary>
266
261
 
267
262
  ```json
268
263
  "context": {
@@ -277,11 +272,29 @@ Shows context window usage and auto-compact threshold.
277
272
 
278
273
  **Display:** `◔ 34,040 (79%)` or `◔ 79%` (percentage only)
279
274
 
280
- ---
275
+ ##### Model Context Limits
276
+
277
+ Configure context window limits for different model types. Defaults to 200K tokens for all models.
278
+
279
+ ```json
280
+ "modelContextLimits": {
281
+ "sonnet": 1000000,
282
+ "opus": 200000
283
+ }
284
+ ```
285
+
286
+ **Available Model Types:**
287
+
288
+ - `sonnet`: Claude Sonnet models (3.5, 4, etc.)
289
+ - `opus`: Claude Opus models
290
+ - `default`: Fallback for unrecognized models (200K)
291
+
292
+ **Note:** Sonnet 4's 1M context window is currently in beta for tier 4+ users. Set `"sonnet": 1000000` when you have access.
281
293
 
282
- #### Tmux
294
+ </details>
283
295
 
284
- Shows tmux session name and window info when in tmux.
296
+ <details>
297
+ <summary><strong>Tmux</strong> - Shows tmux session name and window info when in tmux</summary>
285
298
 
286
299
  ```json
287
300
  "tmux": {
@@ -289,11 +302,10 @@ Shows tmux session name and window info when in tmux.
289
302
  }
290
303
  ```
291
304
 
292
- ---
305
+ </details>
293
306
 
294
- #### Version
295
-
296
- Shows Claude Code version.
307
+ <details>
308
+ <summary><strong>Version</strong> - Shows Claude Code version</summary>
297
309
 
298
310
  ```json
299
311
  "version": {
@@ -303,11 +315,10 @@ Shows Claude Code version.
303
315
 
304
316
  **Display:** `v1.0.81`
305
317
 
306
- ---
307
-
308
- #### Session
318
+ </details>
309
319
 
310
- Shows real-time usage for current Claude conversation.
320
+ <details>
321
+ <summary><strong>Session</strong> - Shows real-time usage for current Claude conversation</summary>
311
322
 
312
323
  ```json
313
324
  "session": {
@@ -324,11 +335,10 @@ Shows real-time usage for current Claude conversation.
324
335
 
325
336
  **Symbols:** `§` Session
326
337
 
327
- ---
328
-
329
- #### Block
338
+ </details>
330
339
 
331
- Shows usage within current 5-hour billing window (Claude\'s rate limit period).
340
+ <details>
341
+ <summary><strong>Block</strong> - Shows usage within current 5-hour billing window (Claude's rate limit period)</summary>
332
342
 
333
343
  ```json
334
344
  "block": {
@@ -352,11 +362,10 @@ Shows usage within current 5-hour billing window (Claude\'s rate limit period).
352
362
  > [!TIP]
353
363
  > Claude's rate limits consider multiple factors beyond tokens (message count, length, attachments, model). See [Anthropic's usage documentation](https://support.anthropic.com/en/articles/11014257-about-claude-s-max-plan-usage) for details.
354
364
 
355
- ---
365
+ </details>
356
366
 
357
- #### Today
358
-
359
- Shows total daily usage with budget monitoring.
367
+ <details>
368
+ <summary><strong>Today</strong> - Shows total daily usage with budget monitoring</summary>
360
369
 
361
370
  ```json
362
371
  "today": {
@@ -371,6 +380,8 @@ Shows total daily usage with budget monitoring.
371
380
 
372
381
  **Symbols:** `☉` Today
373
382
 
383
+ </details>
384
+
374
385
  ### Budget Configuration
375
386
 
376
387
  ```json
@@ -419,34 +430,16 @@ Prevent segment cutoff by organizing segments across multiple lines.
419
430
  > [!NOTE]
420
431
  > Claude Code system messages may truncate long status lines. Multi-line layouts prevent segment cutoff and improve readability.
421
432
 
422
- ### Color Compatibility
433
+ ### Colors & Themes
423
434
 
424
- Automatically detects terminal color capabilities for optimal display.
435
+ Create custom themes and configure color compatibility:
425
436
 
426
437
  ```json
427
438
  {
439
+ "theme": "custom",
428
440
  "display": {
429
441
  "colorCompatibility": "auto"
430
- }
431
- }
432
- ```
433
-
434
- - `auto` (default) - Automatic detection
435
- - `ansi` - 16-color text-only mode
436
- - `ansi256` - 256-color with backgrounds
437
- - `truecolor` - 24-bit RGB colors
438
-
439
- Each theme includes optimized color variants for different terminal capabilities. macOS Terminal.app automatically uses 256-color variants for better appearance.
440
-
441
- Respects `NO_COLOR`, `FORCE_COLOR`, and `COLORTERM` environment variables.
442
-
443
- ### Custom Colors
444
-
445
- Create custom themes by defining segment colors.
446
-
447
- ```json
448
- {
449
- "theme": "custom",
442
+ },
450
443
  "colors": {
451
444
  "custom": {
452
445
  "directory": { "bg": "#ff6600", "fg": "#ffffff" },
@@ -457,47 +450,46 @@ Create custom themes by defining segment colors.
457
450
  }
458
451
  ```
459
452
 
460
- **Color Options:**
453
+ **Color Options:** `bg` (hex, `transparent`, `none`) • `fg` (hex)
461
454
 
462
- - `bg`: Background color (hex, `transparent`, or `none`)
463
- - `fg`: Foreground/text color (hex)
464
-
465
- > [!TIP]
466
- > Copy existing theme colors from `src/themes/` in the repository as a starting point.
455
+ **Compatibility Modes:** `auto` (default), `ansi`, `ansi256`, `truecolor`. Respects `NO_COLOR`, `FORCE_COLOR`, and `COLORTERM` environment variables.
467
456
 
468
457
  ## Performance
469
458
 
470
- **~80ms** default config (`directory`, `git`, `model`, `session`, `today`, `context`)
471
- • **~240ms** full-featured
459
+ Execution times for different configurations:
472
460
 
473
- **Benchmark Tool:**
461
+ - **~80ms** default config (`directory`, `git`, `model`, `session`, `today`, `context`)
462
+ - **~240ms** full-featured (all segments enabled)
474
463
 
475
- - `npm run benchmark:timing` - Execution timing tests
464
+ <details>
465
+ <summary><strong>Detailed Segment Timings</strong></summary>
476
466
 
477
- | Segment | Timing | Notes |
478
- |-------------|-----------|--------------------------------|
479
- | `directory` | ~40ms | No external commands |
480
- | `model` | ~40ms | Uses hook data |
481
- | `session` | ~40ms | Minimal transcript parsing |
482
- | `context` | ~40ms | Hook data calculation |
483
- | `metrics` | ~40ms | Transcript analysis |
484
- | `git` | ~60ms | No caching for fresh data |
485
- | `tmux` | ~50ms | Environment check + command |
486
- | `block` | ~180ms | 5-hour window transcript load |
487
- | `today` | ~250ms | Full daily transcript load (cached: ~50ms) |
488
- | `version` | ~40ms | Uses hook data |
467
+ | Segment | Timing | Notes |
468
+ |---------|--------|-------|
469
+ | `directory` | ~40ms | No external commands |
470
+ | `model` | ~40ms | Uses hook data |
471
+ | `session` | ~40ms | Minimal transcript parsing |
472
+ | `context` | ~40ms | Hook data calculation |
473
+ | `metrics` | ~40ms | Transcript analysis |
474
+ | `git` | ~60ms | No caching for fresh data |
475
+ | `tmux` | ~50ms | Environment check + command |
476
+ | `block` | ~180ms | 5-hour window transcript load |
477
+ | `today` | ~250ms | Full daily transcript load (cached: ~50ms) |
478
+ | `version` | ~40ms | Uses hook data |
489
479
 
490
- **Tips:** Install globally (`npm install -g`) to avoid npx overhead
491
- • Disable unused segments
492
- • **Cache cleanup:** Remove `~/.claude/powerline/` to clear usage cache if needed
480
+ **Benchmark:** `npm run benchmark:timing`
493
481
 
494
- ## Custom Segments
482
+ </details>
483
+
484
+ ### Optimization Tips
495
485
 
496
- Extend the statusline using shell composition for unlimited flexibility.
486
+ - **Global install:** `npm install -g` to avoid npx overhead
487
+ - **Disable unused segments** for faster execution
488
+ - **Cache cleanup:** Remove `~/.claude/powerline/` if needed
497
489
 
498
- ### Simple Addition
490
+ ## Custom Segments
499
491
 
500
- Add custom segments using shell commands:
492
+ Extend the statusline using shell composition:
501
493
 
502
494
  ```json
503
495
  {
@@ -509,27 +501,8 @@ Add custom segments using shell commands:
509
501
  }
510
502
  ```
511
503
 
512
- ### With Colors
513
-
514
- Use `tput` for terminal-compatible colors:
515
-
516
- ```bash
517
- echo "$(tput setab 4)$(tput setaf 15) ⏱ $(date +%H:%M) $(tput sgr0)"
518
- # setab: background (1-7) | setaf: foreground (0-15) | sgr0: reset
519
- ```
520
-
521
- ### Advanced Script
522
-
523
- Create `~/.local/bin/my-statusline` for complex extensions:
524
-
525
- ```bash
526
- #!/bin/bash
527
- npx -y @owloops/claude-powerline
528
- echo "$(tput setab 6)$(tput setaf 0) ⏱ $(date +%H:%M) $(tput sgr0)"
529
- ```
530
-
531
- > [!TIP]
532
- > Shell composition provides unlimited flexibility while keeping the core package secure.
504
+ > [!NOTE]
505
+ > Use `tput` for colors: `setab <bg>` (background), `setaf <fg>` (foreground), `sgr0` (reset). Example: `echo "$(tput setab 4)$(tput setaf 15) text $(tput sgr0)"`. For complex logic, create a shell script with multiple commands, conditions, and variables.
533
506
 
534
507
  ## Contributing
535
508
 
@@ -537,10 +510,6 @@ Contributions are welcome! Please feel free to submit issues or pull requests.
537
510
 
538
511
  See [CONTRIBUTORS.md](CONTRIBUTORS.md) for people who have contributed outside of GitHub PRs.
539
512
 
540
- ### Library Usage
541
-
542
- Claude-powerline is designed as a CLI tool for Claude Code statuslines. While the codebase contains reusable components like `PricingService` and `PowerlineRenderer`, we currently focus on the CLI use case to keep the project simple and maintainable.
543
-
544
513
  ## License
545
514
 
546
515
  This project is licensed under the [MIT License](LICENSE).
package/dist/index.js CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env node
2
- import y from'process';import _,{join,posix}from'path';import w,{existsSync,readFileSync,createReadStream}from'fs';import {exec,execSync}from'child_process';import U,{homedir}from'os';import {json}from'stream/consumers';import V from'tty';import {promisify}from'util';import {get}from'https';import {URL}from'url';import {createHash}from'crypto';import {setTimeout}from'timers/promises';import {readdir,stat,readFile}from'fs/promises';import {createInterface}from'readline';function ie(o,e){if(e&&(o.toLowerCase()==="transparent"||o.toLowerCase()==="none"))return "\x1B[49m";let t=parseInt(o.slice(1,3),16),n=parseInt(o.slice(3,5),16),r=parseInt(o.slice(5,7),16);return `\x1B[${e?"48":"38"};2;${t};${n};${r}m`}function ae(o,e=false){let t=o.match(/48;2;(\d+);(\d+);(\d+)/);if(t)return `\x1B[38;2;${t[1]};${t[2]};${t[3]}m`;if(e)return "\x1B[37m";if(o.includes("\x1B[")&&o.includes("m")){let n=o.match(/\[(\d+)m/);if(n&&n[1]){let r=parseInt(n[1],10);if(r>=40&&r<=47)return `\x1B[${r-10}m`;if(r>=100&&r<=107)return `\x1B[${r-10}m`}}return o.replace("48","38")}function ce(){let{env:o}=y;if(o.NO_COLOR)return "none";let e=o.FORCE_COLOR;if(e==="false"||e==="0")return "none";if(e==="true"||e==="1")return "ansi";if(e==="2")return "ansi256";if(e==="3")return "truecolor";if(o.TERM==="dumb")return "none";if(o.CI)return ["GITHUB_ACTIONS","GITEA_ACTIONS","CIRCLECI"].some(n=>n in o)?"truecolor":"ansi";if(o.COLORTERM==="truecolor"||["xterm-kitty","xterm-ghostty","wezterm","alacritty","foot","contour"].includes(o.TERM||""))return "truecolor";if(o.TERM_PROGRAM)switch(o.TERM_PROGRAM){case "iTerm.app":return "truecolor";case "Apple_Terminal":return "ansi256";case "vscode":return "truecolor";case "Tabby":return "truecolor"}if(/-256(color)?$/i.test(o.TERM||""))return "ansi256";if(/-truecolor$/i.test(o.TERM||""))return "truecolor";if(/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(o.TERM||"")||o.COLORTERM)return "ansi";if(V?.WriteStream?.prototype?.hasColors)try{if(!V.WriteStream.prototype.hasColors())return "none";let r=V.WriteStream.prototype.hasColors(256);return V.WriteStream.prototype.hasColors(16777216)?"truecolor":r?"ansi256":"ansi"}catch{}return "ansi"}function le(o,e){if(e&&(o.toLowerCase()==="transparent"||o.toLowerCase()==="none"))return "\x1B[49m";let t=parseInt(o.slice(1,3),16),n=parseInt(o.slice(3,5),16),r=parseInt(o.slice(5,7),16),i=((a,c,u)=>a===c&&c===u?a<8?16:a>248?231:Math.round((a-8)/247*24)+232:16+36*Math.round(a/255*5)+6*Math.round(c/255*5)+Math.round(u/255*5))(t,n,r);return `\x1B[${e?"48":"38"};5;${i}m`}function ue(o,e){if(e&&(o.toLowerCase()==="transparent"||o.toLowerCase()==="none"))return "\x1B[49m";if(e)return "";let t=parseInt(o.slice(1,3),16),n=parseInt(o.slice(3,5),16),r=parseInt(o.slice(5,7),16);return n>t&&n>r&&n>120?"\x1B[32m":t>n&&t>r&&t>120?"\x1B[31m":r>t&&r>n&&r>120?"\x1B[34m":(t+n+r)/3>150?"\x1B[37m":"\x1B[90m"}var we={directory:{bg:"#8b4513",fg:"#ffffff"},git:{bg:"#404040",fg:"#ffffff"},model:{bg:"#2d2d2d",fg:"#ffffff"},session:{bg:"#202020",fg:"#00ffff"},block:{bg:"#2a2a2a",fg:"#87ceeb"},today:{bg:"#1a1a1a",fg:"#98fb98"},tmux:{bg:"#2f4f2f",fg:"#90ee90"},context:{bg:"#4a5568",fg:"#cbd5e0"},metrics:{bg:"#374151",fg:"#d1d5db"},version:{bg:"#3a3a4a",fg:"#b8b8d0"}},ke={directory:{bg:"#af5f00",fg:"#ffffff"},git:{bg:"#444444",fg:"#ffffff"},model:{bg:"#3a3a3a",fg:"#ffffff"},session:{bg:"#262626",fg:"#00ffff"},block:{bg:"#303030",fg:"#87ceeb"},today:{bg:"#1c1c1c",fg:"#87ff87"},tmux:{bg:"#444444",fg:"#87ff87"},context:{bg:"#585858",fg:"#d0d0d0"},metrics:{bg:"#4e4e4e",fg:"#d0d0d0"},version:{bg:"#444444",fg:"#d7afff"}},Se={directory:{bg:"#d75f00",fg:"#ffffff"},git:{bg:"#585858",fg:"#ffffff"},model:{bg:"#444444",fg:"#ffffff"},session:{bg:"#303030",fg:"#00ffff"},block:{bg:"#3a3a3a",fg:"#5fafff"},today:{bg:"#262626",fg:"#00ff00"},tmux:{bg:"#585858",fg:"#00ff00"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#666666",fg:"#ffffff"},version:{bg:"#585858",fg:"#af87ff"}};var Te={directory:{bg:"#ff6b47",fg:"#ffffff"},git:{bg:"#4fb3d9",fg:"#ffffff"},model:{bg:"#87ceeb",fg:"#000000"},session:{bg:"#da70d6",fg:"#ffffff"},block:{bg:"#6366f1",fg:"#ffffff"},today:{bg:"#10b981",fg:"#ffffff"},tmux:{bg:"#32cd32",fg:"#ffffff"},context:{bg:"#718096",fg:"#ffffff"},metrics:{bg:"#6b7280",fg:"#ffffff"},version:{bg:"#8b7dd8",fg:"#ffffff"}},xe={directory:{bg:"#ff5f5f",fg:"#ffffff"},git:{bg:"#5fafff",fg:"#ffffff"},model:{bg:"#87d7ff",fg:"#000000"},session:{bg:"#ff5fff",fg:"#ffffff"},block:{bg:"#5f5fff",fg:"#ffffff"},today:{bg:"#00d787",fg:"#ffffff"},tmux:{bg:"#00ff5f",fg:"#ffffff"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#767676",fg:"#ffffff"},version:{bg:"#af87ff",fg:"#ffffff"}},ve={directory:{bg:"#ff5f5f",fg:"#ffffff"},git:{bg:"#5fafff",fg:"#ffffff"},model:{bg:"#87d7ff",fg:"#000000"},session:{bg:"#ff5fff",fg:"#ffffff"},block:{bg:"#5f5fff",fg:"#ffffff"},today:{bg:"#00d787",fg:"#ffffff"},tmux:{bg:"#00ff5f",fg:"#ffffff"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#767676",fg:"#ffffff"},version:{bg:"#af87ff",fg:"#ffffff"}};var Ee={directory:{bg:"#434c5e",fg:"#d8dee9"},git:{bg:"#3b4252",fg:"#a3be8c"},model:{bg:"#4c566a",fg:"#81a1c1"},session:{bg:"#2e3440",fg:"#88c0d0"},block:{bg:"#3b4252",fg:"#81a1c1"},today:{bg:"#2e3440",fg:"#8fbcbb"},tmux:{bg:"#2e3440",fg:"#8fbcbb"},context:{bg:"#5e81ac",fg:"#eceff4"},metrics:{bg:"#b48ead",fg:"#2e3440"},version:{bg:"#434c5e",fg:"#88c0d0"}},Pe={directory:{bg:"#5f87af",fg:"#e4e4e4"},git:{bg:"#4e4e4e",fg:"#87d787"},model:{bg:"#6c6c6c",fg:"#87afd7"},session:{bg:"#3a3a3a",fg:"#5fafaf"},block:{bg:"#4e4e4e",fg:"#87afd7"},today:{bg:"#3a3a3a",fg:"#5fd7d7"},tmux:{bg:"#3a3a3a",fg:"#5fd7d7"},context:{bg:"#5f87d7",fg:"#ffffff"},metrics:{bg:"#d787af",fg:"#3a3a3a"},version:{bg:"#5f87af",fg:"#5fafaf"}},$e={directory:{bg:"#0087af",fg:"#ffffff"},git:{bg:"#585858",fg:"#87d700"},model:{bg:"#808080",fg:"#87afff"},session:{bg:"#444444",fg:"#00d7d7"},block:{bg:"#585858",fg:"#87afff"},today:{bg:"#444444",fg:"#00ffff"},tmux:{bg:"#444444",fg:"#00ffff"},context:{bg:"#0087ff",fg:"#ffffff"},metrics:{bg:"#ff87d7",fg:"#444444"},version:{bg:"#0087af",fg:"#00d7d7"}};var Re={directory:{bg:"#2f334d",fg:"#82aaff"},git:{bg:"#1e2030",fg:"#c3e88d"},model:{bg:"#191b29",fg:"#fca7ea"},session:{bg:"#222436",fg:"#86e1fc"},block:{bg:"#2d3748",fg:"#7aa2f7"},today:{bg:"#1a202c",fg:"#4fd6be"},tmux:{bg:"#191b29",fg:"#4fd6be"},context:{bg:"#414868",fg:"#c0caf5"},metrics:{bg:"#3d59a1",fg:"#c0caf5"},version:{bg:"#292e42",fg:"#bb9af7"}},De={directory:{bg:"#444478",fg:"#87afff"},git:{bg:"#262640",fg:"#afff87"},model:{bg:"#1c1c30",fg:"#ff87ff"},session:{bg:"#3a3a50",fg:"#5fd7ff"},block:{bg:"#4e4e68",fg:"#5f87ff"},today:{bg:"#262640",fg:"#00d7af"},tmux:{bg:"#1c1c30",fg:"#00d7af"},context:{bg:"#5f5f87",fg:"#d7d7ff"},metrics:{bg:"#5f5faf",fg:"#d7d7ff"},version:{bg:"#444460",fg:"#d787ff"}},Be={directory:{bg:"#5f5faf",fg:"#87afff"},git:{bg:"#303050",fg:"#87ff87"},model:{bg:"#262640",fg:"#ff87ff"},session:{bg:"#444470",fg:"#00d7ff"},block:{bg:"#666680",fg:"#5f87ff"},today:{bg:"#303050",fg:"#00d787"},tmux:{bg:"#262640",fg:"#00d787"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#8787d7",fg:"#ffffff"},version:{bg:"#585870",fg:"#d787ff"}};var Ae={directory:{bg:"#26233a",fg:"#c4a7e7"},git:{bg:"#1f1d2e",fg:"#9ccfd8"},model:{bg:"#191724",fg:"#ebbcba"},session:{bg:"#26233a",fg:"#f6c177"},block:{bg:"#2a273f",fg:"#eb6f92"},today:{bg:"#232136",fg:"#9ccfd8"},tmux:{bg:"#26233a",fg:"#908caa"},context:{bg:"#393552",fg:"#e0def4"},metrics:{bg:"#524f67",fg:"#e0def4"},version:{bg:"#2a273f",fg:"#c4a7e7"}},Ue={directory:{bg:"#444444",fg:"#d787d7"},git:{bg:"#262626",fg:"#87d7d7"},model:{bg:"#1c1c1c",fg:"#ffaf87"},session:{bg:"#444444",fg:"#d7af5f"},block:{bg:"#4e4e4e",fg:"#ff5f87"},today:{bg:"#3a3a3a",fg:"#87d7d7"},tmux:{bg:"#444444",fg:"#9e9e9e"},context:{bg:"#585858",fg:"#e4e4e4"},metrics:{bg:"#767676",fg:"#e4e4e4"},version:{bg:"#4e4e4e",fg:"#d787d7"}},Me={directory:{bg:"#585858",fg:"#ff87ff"},git:{bg:"#303030",fg:"#00d7d7"},model:{bg:"#262626",fg:"#ffaf87"},session:{bg:"#585858",fg:"#d7af00"},block:{bg:"#666666",fg:"#ff5f87"},today:{bg:"#444444",fg:"#00d7d7"},tmux:{bg:"#585858",fg:"#bcbcbc"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#a8a8a8",fg:"#000000"},version:{bg:"#666666",fg:"#ff87ff"}};var ge={dark:we,"dark-ansi256":ke,"dark-ansi":Se,light:Te,"light-ansi256":xe,"light-ansi":ve,nord:Ee,"nord-ansi256":Pe,"nord-ansi":$e,"tokyo-night":Re,"tokyo-night-ansi256":De,"tokyo-night-ansi":Be,"rose-pine":Ae,"rose-pine-ansi256":Ue,"rose-pine-ansi":Me};function J(o,e){let t=ge[o];if(!t)return null;if(e==="none"||e==="ansi"){let n=ge[`${o}-ansi`];if(n)return n}if(e==="ansi256"){let n=ge[`${o}-ansi256`];if(n)return n}return t}var l=(o,...e)=>{process.env.CLAUDE_POWERLINE_DEBUG&&console.error(`[DEBUG] ${o}`,...e);};var k=promisify(exec),M=class{isGitRepo(e){try{return w.existsSync(_.join(e,".git"))}catch{return false}}async getGitInfo(e,t={},n){let r=n&&this.isGitRepo(n)?n:e;if(!this.isGitRepo(r))return null;try{let s=await this.getStatusWithBranchAsync(r),i=await this.getAheadBehindAsync(r),a={branch:s.branch||"detached",status:s.status,ahead:i.ahead,behind:i.behind};t.showWorkingTree&&s.workingTree&&(a.staged=s.workingTree.staged,a.unstaged=s.workingTree.unstaged,a.untracked=s.workingTree.untracked,a.conflicts=s.workingTree.conflicts);let c={},u={};t.showSha&&(c.sha=this.getShaAsync(r)),t.showTag&&(c.tag=this.getNearestTagAsync(r)),t.showTimeSinceCommit&&(c.timeSinceCommit=this.getTimeSinceLastCommitAsync(r)),t.showStashCount&&(u.stashCount=this.getStashCountAsync(r)),t.showUpstream&&(u.upstream=this.getUpstreamAsync(r)),t.showRepoName&&(u.repoName=this.getRepoNameAsync(r));let g=new Map;for(let[m,f]of Object.entries(c))try{let d=await f;g.set(m,d);}catch{}return Object.keys(u).length>0&&(await Promise.allSettled(Object.entries(u).map(async([f,d])=>({key:f,value:await d})))).forEach(f=>{f.status==="fulfilled"&&g.set(f.value.key,f.value.value);}),t.showSha&&(a.sha=g.get("sha")||void 0),t.showOperation&&(a.operation=this.getOngoingOperation(r)||void 0),t.showTag&&(a.tag=g.get("tag")||void 0),t.showTimeSinceCommit&&(a.timeSinceCommit=g.get("timeSinceCommit")||void 0),t.showStashCount&&(a.stashCount=g.get("stashCount")||0),t.showUpstream&&(a.upstream=g.get("upstream")||void 0),t.showRepoName&&(a.repoName=g.get("repoName")||void 0,a.isWorktree=this.isWorktree(r)),a}catch{return null}}async getShaAsync(e){try{return (await k("git rev-parse --short=7 HEAD",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim()||null}catch{return null}}getOngoingOperation(e){try{let t=_.join(e,".git");return w.existsSync(_.join(t,"MERGE_HEAD"))?"MERGE":w.existsSync(_.join(t,"CHERRY_PICK_HEAD"))?"CHERRY-PICK":w.existsSync(_.join(t,"REVERT_HEAD"))?"REVERT":w.existsSync(_.join(t,"BISECT_LOG"))?"BISECT":w.existsSync(_.join(t,"rebase-merge"))||w.existsSync(_.join(t,"rebase-apply"))?"REBASE":null}catch{return null}}async getNearestTagAsync(e){try{return (await k("git describe --tags --abbrev=0",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim()||null}catch{return null}}async getTimeSinceLastCommitAsync(e){try{let n=(await k("git log -1 --format=%ct",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();if(!n)return null;let r=parseInt(n)*1e3,s=Date.now();return Math.floor((s-r)/1e3)}catch{return null}}async getStashCountAsync(e){try{let n=(await k("git stash list",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();return n?n.split(`
3
- `).length:0}catch{return 0}}async getUpstreamAsync(e){try{return (await k("git rev-parse --abbrev-ref @{u}",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim()||null}catch{return null}}async getRepoNameAsync(e){try{let n=(await k("git config --get remote.origin.url",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();return n?n.match(/\/([^/]+?)(\.git)?$/)?.[1]||_.basename(e):_.basename(e)}catch{return _.basename(e)}}isWorktree(e){try{let t=_.join(e,".git");return !!(w.existsSync(t)&&w.statSync(t).isFile())}catch{return false}}async getStatusWithBranchAsync(e){try{l(`[GIT-EXEC] Running git status in ${e}`);let r=(await k("git status --porcelain -b",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.split(`
4
- `),s=null,i="clean",a=0,c=0,u=0,g=0;for(let m of r)if(m){if(m.startsWith("## ")){let d=m.substring(3).split("...")[0];d&&d!=="HEAD (no branch)"&&(s=d);continue}if(m.length>=2){let f=m.charAt(0),d=m.charAt(1);if(f==="?"&&d==="?"){u++,i==="clean"&&(i="dirty");continue}let h=f+d;if(["DD","AU","UD","UA","DU","AA","UU"].includes(h)){g++,i="conflicts";continue}f!==" "&&f!=="?"&&(a++,i==="clean"&&(i="dirty")),d!==" "&&d!=="?"&&(c++,i==="clean"&&(i="dirty"));}}return {branch:s||await this.getFallbackBranch(e),status:i,workingTree:{staged:a,unstaged:c,untracked:u,conflicts:g}}}catch(t){return l(`Git status with branch command failed in ${e}:`,t),{branch:await this.getFallbackBranch(e),status:"clean"}}}async getFallbackBranch(e){try{let n=(await k("git branch --show-current",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();if(n)return n}catch{try{let n=(await k("git symbolic-ref --short HEAD",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();if(n)return n}catch{return null}}return null}async getAheadBehindAsync(e){try{l(`[GIT-EXEC] Running git ahead/behind in ${e}`);let[t,n]=await Promise.all([k("git rev-list --count @{u}..HEAD",{cwd:e,encoding:"utf8",timeout:2e3}),k("git rev-list --count HEAD..@{u}",{cwd:e,encoding:"utf8",timeout:2e3})]);return {ahead:parseInt(t.stdout.trim())||0,behind:parseInt(n.stdout.trim())||0}}catch(t){return l(`Git ahead/behind command failed in ${e}:`,t),{ahead:0,behind:0}}}};var Ke=promisify(exec),F=class{async getSessionId(){try{if(!process.env.TMUX_PANE)return l("TMUX_PANE not set, not in tmux session"),null;l(`Getting tmux session ID, TMUX_PANE: ${process.env.TMUX_PANE}`);let t=(await Ke("tmux display-message -p '#S'",{encoding:"utf8",timeout:1e3})).stdout.trim();return l(`Tmux session ID: ${t||"empty"}`),t||null}catch(e){return l("Error getting tmux session ID:",e),null}}isInTmux(){return !!process.env.TMUX_PANE}};function Y(){let o=[],e=process.env.CLAUDE_CONFIG_DIR;if(e&&e.split(",").forEach(t=>{let n=t.trim();existsSync(n)&&o.push(n);}),o.length===0){let t=homedir(),n=join(t,".config","claude"),r=join(t,".claude");existsSync(n)?o.push(n):existsSync(r)&&o.push(r);}return o}async function q(o){let e=[];for(let t of o){let n=join(t,"projects");if(existsSync(n))try{let r=await readdir(n,{withFileTypes:!0});for(let s of r)if(s.isDirectory()){let i=posix.join(n,s.name);e.push(i);}}catch(r){l(`Failed to read projects directory ${n}:`,r);}}return e}async function z(o){let e=Y(),t=await q(e);for(let n of t){let r=posix.join(n,`${o}.jsonl`);if(existsSync(r))return r}return null}async function de(o){try{return (await stat(o)).mtime}catch{return null}}function nt(o){let e=o.message?.id||(typeof o.raw.message=="object"&&o.raw.message!==null&&"id"in o.raw.message?o.raw.message.id:void 0),t="requestId"in o.raw?o.raw.requestId:void 0;return !e||!t?null:`${e}:${t}`}var rt=1024*1024;async function L(o){try{let t=(await stat(o)).size,n;return t>rt?(l(`Using streaming parser for large file ${o} (${Math.round(t/1024)}KB)`),n=await st(o)):n=await ot(o),l(`Parsed ${n.length} entries from ${o}`),n}catch(e){return l(`Failed to read file ${o}:`,e),[]}}async function ot(o){let t=(await readFile(o,"utf-8")).trim().split(`
5
- `).filter(r=>r.trim()),n=[];for(let r of t)try{let s=JSON.parse(r);if(!s.timestamp)continue;let i={timestamp:new Date(s.timestamp),message:s.message,costUSD:typeof s.costUSD=="number"?s.costUSD:void 0,isSidechain:s.isSidechain===!0,raw:s};n.push(i);}catch(s){l(`Failed to parse JSONL line: ${s}`);continue}return n}async function st(o){return new Promise((e,t)=>{let n=[],r=createReadStream(o,{encoding:"utf8"}),s=createInterface({input:r,crlfDelay:1/0});s.on("line",i=>{let a=i.trim();if(a)try{let c=JSON.parse(a);if(!c.timestamp)return;let u={timestamp:new Date(c.timestamp),message:c.message,costUSD:typeof c.costUSD=="number"?c.costUSD:void 0,isSidechain:c.isSidechain===!0,raw:c};n.push(u);}catch(c){l(`Failed to parse JSONL line: ${c}`);}}),s.on("close",()=>{e(n);}),s.on("error",i=>{l(`Streaming parser error for ${o}:`,i),t(i);}),r.on("error",i=>{l(`File stream error for ${o}:`,i),t(i);});})}async function X(o,e,t=false){let n=Y(),r=await q(n),s=new Set,i=r.map(async h=>{try{let T=(await readdir(h)).filter(B=>B.endsWith(".jsonl")).map(async B=>{let se=posix.join(h,B);if(existsSync(se)){let Ve=await de(se);return {filePath:se,mtime:Ve}}return null});return (await Promise.all(T)).filter(B=>B?.mtime&&(!e||e(B.filePath,B.mtime)))}catch(b){return l(`Failed to read project directory ${h}:`,b),[]}}),c=(await Promise.all(i)).flat().filter(h=>h!==null);t&&c.sort((h,b)=>b.mtime.getTime()-h.mtime.getTime());let u=c.map(h=>h.filePath),g=[],m=u.map(async h=>(await L(h)).filter(R=>!o||o(R))),f=await Promise.all(m);for(let h of f)g.push(...h);g.sort((h,b)=>h.timestamp.getTime()-b.timestamp.getTime());let d=[];for(let h of g){let b=nt(h);b&&s.has(b)||(b&&s.add(b),d.push(h));}return d}var E=class{static CACHE_DIR=_.join(homedir(),".claude","powerline");static USAGE_CACHE_DIR=_.join(this.CACHE_DIR,"usage");static LOCKS_DIR=_.join(this.CACHE_DIR,"locks");static isLocked(e){let t=_.join(this.LOCKS_DIR,e);if(!w.existsSync(t))return false;try{let n=w.readFileSync(t,"utf-8"),r=parseInt(n.trim(),10);if(isNaN(r))return l(`Invalid PID in lock file ${e}, removing stale lock`),w.unlinkSync(t),!1;try{return process.kill(r,0),!0}catch(s){return s.code==="ESRCH"?(l(`Removing stale lock file ${e} for dead process ${r}`),w.unlinkSync(t),!1):(l(`Error checking process ${r} for lock ${e}:`,s),!0)}}catch(n){return l(`Error reading lock file ${e}:`,n),true}}static async acquireLock(e,t=5e3){await this.ensureCacheDirectories();let s=_.join(this.LOCKS_DIR,e),i=Date.now(),a=String(process.pid);for(;Date.now()-i<t;)try{return await w.promises.writeFile(s,a,{flag:"wx"}),l(`Lock acquired for ${e}`),!0}catch(c){if(c.code==="EEXIST")await setTimeout(50);else throw c}return l(`Failed to acquire lock for ${e} within ${t}ms`),false}static async releaseLock(e){let t=_.join(this.LOCKS_DIR,e);try{await w.promises.unlink(t),l(`Lock released for ${e}`);}catch(n){n.code!=="ENOENT"&&l(`Error releasing lock for ${e}:`,n);}}static async ensureCacheDirectories(){try{await Promise.all([w.promises.mkdir(this.CACHE_DIR,{recursive:!0}),w.promises.mkdir(this.USAGE_CACHE_DIR,{recursive:!0}),w.promises.mkdir(this.LOCKS_DIR,{recursive:!0})]);}catch(e){l("Failed to create cache directories:",e);}}static createProjectHash(e){return createHash("md5").update(e).digest("hex").substring(0,8)}static async getUsageCache(e,t){let s="utf-8";await this.ensureCacheDirectories();let i=_.join(this.USAGE_CACHE_DIR,`${e}.json`),a=`${e}.usage.lock`;for(let c=0;c<3;c++){if(this.isLocked(a)){l(`Cache for ${e} is locked, waiting...`),await setTimeout(75);continue}try{let g=await w.promises.readFile(i,s),m=JSON.parse(g);return !t||m.timestamp>=t?(l(`[CACHE-HIT] ${e} disk cache: found`),this.deserializeDates(m.data)):(l(`${e} cache outdated: cache=${m.timestamp}, latest=${t}`),null)}catch(g){if(g.code==="ENOENT")return l(`No shared ${e} usage cache found`),null;let m=c+1;l(`Attempt ${m} failed to read ${e} cache: ${g.message}. Retrying...`),await setTimeout(75);}}return l(`Failed to read ${e} cache after 3 attempts.`),null}static deserializeDates(e){return Array.isArray(e)?e.map(t=>({...t,timestamp:new Date(t.timestamp)})):e}static async setUsageCache(e,t,n){let r=`${e}.usage.lock`;if(!await this.acquireLock(r)){l(`Could not acquire lock to set usage cache for ${e}`);return}try{await this.ensureCacheDirectories();let i=_.join(this.USAGE_CACHE_DIR,`${e}.json`),a=n||Date.now(),u=JSON.stringify({data:t,timestamp:a});await w.promises.writeFile(i,u,"utf-8"),l(`[CACHE-SET] ${e} disk cache stored`);}catch(i){l(`Failed to save ${e} usage cache:`,i);}finally{await this.releaseLock(r);}}static async getLatestTranscriptMtime(){try{let e=Y(),t=await q(e),n=0;for(let r of t)try{let i=(await w.promises.readdir(r)).filter(a=>a.endsWith(".jsonl"));for(let a of i){let c=_.join(r,a),u=await de(c);u&&u.getTime()>n&&(n=u.getTime());}}catch(s){l(`Failed to read project directory ${r}:`,s);continue}return n}catch(e){return l("Failed to get latest transcript mtime:",e),Date.now()}}};var K={"claude-3-haiku-20240307":{name:"Claude 3 Haiku",input:.25,output:1.25,cache_write_5m:.3,cache_write_1h:.5,cache_read:.03},"claude-3-5-haiku-20241022":{name:"Claude 3.5 Haiku",input:.8,output:4,cache_write_5m:1,cache_write_1h:1.6,cache_read:.08},"claude-3-5-haiku-latest":{name:"Claude 3.5 Haiku Latest",input:1,output:5,cache_write_5m:1.25,cache_write_1h:2,cache_read:.1},"claude-3-opus-latest":{name:"Claude 3 Opus Latest",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-3-opus-20240229":{name:"Claude 3 Opus",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-3-5-sonnet-latest":{name:"Claude 3.5 Sonnet Latest",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-5-sonnet-20240620":{name:"Claude 3.5 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-5-sonnet-20241022":{name:"Claude 3.5 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-opus-4-20250514":{name:"Claude Opus 4",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-opus-4-1":{name:"Claude Opus 4.1",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-opus-4-1-20250805":{name:"Claude Opus 4.1",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-sonnet-4-20250514":{name:"Claude Sonnet 4",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-4-opus-20250514":{name:"Claude 4 Opus",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-4-sonnet-20250514":{name:"Claude 4 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-7-sonnet-latest":{name:"Claude 3.7 Sonnet Latest",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-7-sonnet-20250219":{name:"Claude 3.7 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3}},P=class{static executionCache=null;static modelPricingCache=new Map;static GITHUB_PRICING_URL="https://raw.githubusercontent.com/Owloops/claude-powerline/main/pricing.json";static async loadDiskCache(){let t=Date.now()-864e5;return await E.getUsageCache("pricing",t)}static async saveDiskCache(e){await E.setUsageCache("pricing",e);}static async fetchPricingData(){return new Promise(e=>{let t=new URL(this.GITHUB_PRICING_URL),n=get({hostname:t.hostname,path:t.pathname,headers:{"User-Agent":"claude-powerline","Cache-Control":"no-cache"},timeout:5e3},r=>{if(r.statusCode!==200){l(`HTTP ${r.statusCode}: ${r.statusMessage}`),e(null);return}let s="",i=0,a=1024*1024;r.on("data",c=>{if(i+=c.length,i>a){l("Response too large"),n.destroy(),e(null);return}s+=c;}),r.on("end",()=>{try{let u=JSON.parse(s),g=u._meta,m={};for(let[f,d]of Object.entries(u))f!=="_meta"&&(m[f]=d);this.validatePricingData(m)?(l(`Fetched fresh pricing from GitHub for ${Object.keys(m).length} models`),l(`Pricing last updated: ${g?.updated||"unknown"}`),e(m)):(l("Invalid pricing data structure"),e(null));}catch(c){l("Failed to parse JSON:",c),e(null);}}),r.on("error",c=>{l("Response error:",c),e(null);});});n.on("error",r=>{l("Request error:",r),e(null);}),n.on("timeout",()=>{l("Request timeout"),n.destroy(),e(null);}),n.end();})}static async getCurrentPricing(){if(this.executionCache!==null)return l(`[CACHE-HIT] Pricing execution cache: ${Object.keys(this.executionCache).length} models`),this.executionCache;let e=await this.loadDiskCache();if(e)return l(`[CACHE-HIT] Pricing disk cache: ${Object.keys(e).length} models`),this.executionCache=e,l(`[CACHE-SET] Pricing execution cache stored: ${Object.keys(e).length} models`),e;let t=await this.fetchPricingData();return t?(await this.saveDiskCache(t),l(`[CACHE-SET] Pricing disk cache stored: ${Object.keys(t).length} models`),this.executionCache=t,l(`[CACHE-SET] Pricing execution cache stored: ${Object.keys(t).length} models`),t):(l(`[CACHE-FALLBACK] Using offline pricing data: ${Object.keys(K).length} models`),this.executionCache=K,l(`[CACHE-SET] Pricing execution cache stored: ${Object.keys(K).length} models`),K)}static validatePricingData(e){if(!e||typeof e!="object")return false;for(let[,t]of Object.entries(e)){if(!t||typeof t!="object")return false;let n=t;if(typeof n.input!="number"||typeof n.output!="number"||typeof n.cache_read!="number")return false}return true}static async getModelPricing(e){if(this.modelPricingCache.has(e))return l(`[CACHE-HIT] Model pricing cache: ${e}`),this.modelPricingCache.get(e);let t=await this.getCurrentPricing(),n;return t[e]?n=t[e]:n=this.fuzzyMatchModel(e,t),this.modelPricingCache.set(e,n),l(`[CACHE-SET] Model pricing cache: ${e}`),n}static fuzzyMatchModel(e,t){let n=e.toLowerCase();for(let[s,i]of Object.entries(t))if(s.toLowerCase()===n)return i;let r=[{pattern:["opus-4-1","claude-opus-4-1"],fallback:"claude-opus-4-1-20250805"},{pattern:["opus-4","claude-opus-4"],fallback:"claude-opus-4-20250514"},{pattern:["sonnet-4","claude-sonnet-4"],fallback:"claude-sonnet-4-20250514"},{pattern:["sonnet-3.7","3-7-sonnet"],fallback:"claude-3-7-sonnet-20250219"},{pattern:["3-5-sonnet","sonnet-3.5"],fallback:"claude-3-5-sonnet-20241022"},{pattern:["3-5-haiku","haiku-3.5"],fallback:"claude-3-5-haiku-20241022"},{pattern:["haiku","3-haiku"],fallback:"claude-3-haiku-20240307"},{pattern:["opus"],fallback:"claude-opus-4-20250514"},{pattern:["sonnet"],fallback:"claude-3-5-sonnet-20241022"}];for(let{pattern:s,fallback:i}of r)if(s.some(a=>n.includes(a))&&t[i])return t[i];return t["claude-3-5-sonnet-20241022"]||{name:`${e} (Unknown Model)`,input:3,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3,output:15}}static async calculateCostForEntry(e){let n=e.message?.usage;if(!n)return 0;let r=this.extractModelId(e),s=await this.getModelPricing(r),i=n.input_tokens||0,a=n.output_tokens||0,c=n.cache_creation_input_tokens||0,u=n.cache_read_input_tokens||0,g=i/1e6*s.input,m=a/1e6*s.output,f=u/1e6*s.cache_read,d=c/1e6*s.cache_write_5m;return g+m+d+f}static extractModelId(e){if(e.model&&typeof e.model=="string")return e.model;let t=e.message;if(t?.model){let n=t.model;return typeof n=="string"?n:n?.id||"claude-3-5-sonnet-20241022"}return e.model_id&&typeof e.model_id=="string"?e.model_id:"claude-3-5-sonnet-20241022"}};function ut(o){return {timestamp:o.timestamp.toISOString(),message:{usage:{input_tokens:o.message?.usage?.input_tokens||0,output_tokens:o.message?.usage?.output_tokens||0,cache_creation_input_tokens:o.message?.usage?.cache_creation_input_tokens,cache_read_input_tokens:o.message?.usage?.cache_read_input_tokens}},costUSD:o.costUSD}}var Z=class{async getSessionUsage(e){try{let t=await z(e);if(!t)return l(`No transcript found for session: ${e}`),null;l(`Found transcript at: ${t}`);let n=await L(t);if(n.length===0)return {totalCost:0,entries:[]};let r=[],s=0;for(let i of n)if(i.message?.usage){let a=ut(i);if(a.costUSD!==void 0)s+=a.costUSD;else {let c=await P.calculateCostForEntry(i.raw);a.costUSD=c,s+=c;}r.push(a);}return l(`Parsed ${r.length} usage entries, total cost: $${s.toFixed(4)}`),{totalCost:s,entries:r}}catch(t){return l(`Error reading session usage for ${e}:`,t),null}}calculateTokenBreakdown(e){return e.reduce((t,n)=>({input:t.input+(n.message.usage.input_tokens||0),output:t.output+(n.message.usage.output_tokens||0),cacheCreation:t.cacheCreation+(n.message.usage.cache_creation_input_tokens||0),cacheRead:t.cacheRead+(n.message.usage.cache_read_input_tokens||0)}),{input:0,output:0,cacheCreation:0,cacheRead:0})}async getSessionInfo(e,t){let n=await this.getSessionUsage(e);if(!n||n.entries.length===0)return {cost:null,calculatedCost:null,officialCost:null,tokens:null,tokenBreakdown:null};let r=this.calculateTokenBreakdown(n.entries),s=r.input+r.output+r.cacheCreation+r.cacheRead,i=n.totalCost,a=t?.cost?.total_cost_usd??null;return {cost:i??a,calculatedCost:i,officialCost:a,tokens:s,tokenBreakdown:r}}},I=class{sessionProvider=new Z;async getUsageInfo(e,t){try{return l(`Starting usage info retrieval for session: ${e}`),{session:await this.sessionProvider.getSessionInfo(e,t)}}catch(n){return l(`Error getting usage info for session ${e}:`,n),{session:{cost:null,calculatedCost:null,officialCost:null,tokens:null,tokenBreakdown:null}}}}};var O=class{thresholds={LOW:50,MEDIUM:80};getContextUsageThresholds(){return this.thresholds}getContextLimit(e){return 2e5}async calculateContextTokens(e,t){try{l(`Calculating context tokens from transcript: ${e}`);try{if(!readFileSync(e,"utf-8"))return l("Transcript file is empty"),null}catch{return l("Could not read transcript file"),null}let n=await L(e);if(n.length===0)return l("No entries in transcript"),null;let r=null;for(let s=n.length-1;s>=0;s--){let i=n[s];if(i&&i.message?.usage?.input_tokens&&i.isSidechain!==!0){r=i,l(`Context segment: Found most recent entry at ${i.timestamp.toISOString()}, stopping search`);break}}if(r?.message?.usage){let s=r.message.usage,i=(s.input_tokens||0)+(s.cache_read_input_tokens||0)+(s.cache_creation_input_tokens||0),a=t?this.getContextLimit(t):2e5;l(`Most recent main chain context: ${i} tokens (limit: ${a})`);let c=Math.min(100,Math.max(0,Math.round(i/a*100))),u=Math.round(a*.75),g=Math.min(100,Math.max(0,Math.round(i/u*100))),m=Math.max(0,100-g);return {inputTokens:i,percentage:c,usablePercentage:g,contextLeftPercentage:m,maxTokens:a,usableTokens:u}}return l("No main chain entries with usage data found"),null}catch(n){return l(`Error reading transcript: ${n instanceof Error?n.message:String(n)}`),null}}};var j=class{async loadTranscriptEntries(e){try{let t=await z(e);if(!t)return l(`No transcript found for session: ${e}`),[];l(`Loading transcript from: ${t}`);let r=(await readFile(t,"utf-8")).trim().split(`
6
- `).filter(i=>i.trim()),s=[];for(let i of r)try{let a=JSON.parse(i);if(a.isSidechain===!0)continue;s.push(a);}catch(a){l(`Failed to parse JSONL line: ${a}`);continue}return l(`Loaded ${s.length} transcript entries`),s}catch(t){return l(`Error loading transcript for ${e}:`,t),[]}}calculateMessageCount(e){return e.filter(t=>{let n=t.type||t.message?.role||t.message?.type,r=t.type==="user"&&t.message?.content?.[0]?.type==="tool_result";return n==="user"&&!r}).length}calculateLastResponseTime(e){if(e.length===0)return null;let t=e.slice(-20),n=null,r=null;for(let s of t)if(s.timestamp)try{let i=new Date(s.timestamp),a=s.type||s.message?.role||s.message?.type,c=s.type==="user"&&s.message?.content?.[0]?.type==="tool_result";if(a==="user"&&!c)n=i;else if(a==="assistant"&&n){let g=(i.getTime()-n.getTime())/1e3;g>.1&&g<300&&(r=g);}}catch{continue}return r}async getMetricsInfo(e,t){try{if(l(`Getting metrics from hook data for session: ${e}`),!t.cost)return l("No cost data available in hook data"),{responseTime:null,lastResponseTime:null,sessionDuration:null,messageCount:null,linesAdded:null,linesRemoved:null};let n=await this.loadTranscriptEntries(e),r=this.calculateMessageCount(n),s=this.calculateLastResponseTime(n);return {responseTime:t.cost.total_api_duration_ms/1e3,lastResponseTime:s,sessionDuration:t.cost.total_duration_ms/1e3,messageCount:r,linesAdded:t.cost.total_lines_added,linesRemoved:t.cost.total_lines_removed}}catch(n){return l(`Error getting metrics from hook data for session ${e}:`,n),{responseTime:null,lastResponseTime:null,sessionDuration:null,messageCount:null,linesAdded:null,linesRemoved:null}}}};function S(o){return o===null?"$0.00":o<.01?"<$0.01":`$${o.toFixed(2)}`}function C(o){return o===null||o===0?"0 tokens":o>=1e6?`${(o/1e6).toFixed(1)}M tokens`:o>=1e3?`${(o/1e3).toFixed(1)}K tokens`:`${o} tokens`}function pe(o){if(!o)return "0 tokens";let e=[];if(o.input>0&&e.push(`${C(o.input).replace(" tokens","")}in`),o.output>0&&e.push(`${C(o.output).replace(" tokens","")}out`),o.cacheCreation>0||o.cacheRead>0){let t=o.cacheCreation+o.cacheRead;e.push(`${C(t).replace(" tokens","")}cached`);}return e.length>0?e.join(" + "):"0 tokens"}function Ie(o){return o<60?`${o}s`:o<3600?`${Math.floor(o/60)}m`:o<86400?`${Math.floor(o/3600)}h`:o<604800?`${Math.floor(o/86400)}d`:`${Math.floor(o/604800)}w`}function Oe(o){return o<60?`${o.toFixed(0)}s`:o<3600?`${(o/60).toFixed(0)}m`:o<86400?`${(o/3600).toFixed(1)}h`:`${(o/86400).toFixed(1)}d`}function mt(o,e){return !e||e<=0||o<0?null:Math.min(100,o/e*100)}function be(o,e,t=80){let n=mt(o,e);if(n===null)return {percentage:null,isWarning:false,displayText:""};let r=`${n.toFixed(0)}%`,s=n>=t,i="";return s?i=` !${r}`:n>=50?i=` +${r}`:i=` ${r}`,{percentage:n,isWarning:s,displayText:i}}var N=class{constructor(e,t){this.config=e;this.symbols=t;}renderDirectory(e,t,n){let r=e.workspace?.current_dir||e.cwd||"/",s=e.workspace?.project_dir;if(n?.showBasename)return {text:_.basename(r)||"root",bgColor:t.modeBg,fgColor:t.modeFg};let i=process.env.HOME||process.env.USERPROFILE,a=r,c=s;return i&&(r.startsWith(i)&&(a=r.replace(i,"~")),s&&s.startsWith(i)&&(c=s.replace(i,"~"))),{text:this.getDisplayDirectoryName(a,c),bgColor:t.modeBg,fgColor:t.modeFg}}renderGit(e,t,n){if(!e)return null;let r=[];if(n?.showRepoName&&e.repoName&&(r.push(e.repoName),e.isWorktree&&r.push(this.symbols.git_worktree)),n?.showOperation&&e.operation&&r.push(`[${e.operation}]`),r.push(`${this.symbols.branch} ${e.branch}`),n?.showTag&&e.tag&&r.push(`${this.symbols.git_tag} ${e.tag}`),n?.showSha&&e.sha&&r.push(`${this.symbols.git_sha} ${e.sha}`),n?.showAheadBehind!==false&&(e.ahead>0&&e.behind>0?r.push(`${this.symbols.git_ahead}${e.ahead}${this.symbols.git_behind}${e.behind}`):e.ahead>0?r.push(`${this.symbols.git_ahead}${e.ahead}`):e.behind>0&&r.push(`${this.symbols.git_behind}${e.behind}`)),n?.showWorkingTree){let i=[];e.staged&&e.staged>0&&i.push(`+${e.staged}`),e.unstaged&&e.unstaged>0&&i.push(`~${e.unstaged}`),e.untracked&&e.untracked>0&&i.push(`?${e.untracked}`),e.conflicts&&e.conflicts>0&&i.push(`!${e.conflicts}`),i.length>0&&r.push(`(${i.join(" ")})`);}if(n?.showUpstream&&e.upstream&&r.push(`${this.symbols.git_upstream}${e.upstream}`),n?.showStashCount&&e.stashCount&&e.stashCount>0&&r.push(`${this.symbols.git_stash} ${e.stashCount}`),n?.showTimeSinceCommit&&e.timeSinceCommit!==void 0){let i=Ie(e.timeSinceCommit);r.push(`${this.symbols.git_time} ${i}`);}let s=this.symbols.git_clean;return e.status==="conflicts"?s=this.symbols.git_conflicts:e.status==="dirty"&&(s=this.symbols.git_dirty),r.push(s),{text:r.join(" "),bgColor:t.gitBg,fgColor:t.gitFg}}renderModel(e,t){let n=e.model?.display_name||"Claude";return {text:`${this.symbols.model} ${n}`,bgColor:t.modelBg,fgColor:t.modelFg}}renderSession(e,t,n){let r=n?.type||"cost",s=n?.costSource,i=this.config.budget?.session,a=s?this.formatSessionUsageDisplay(e.session,r,s):this.formatUsageWithBudget(e.session.cost,e.session.tokens,e.session.tokenBreakdown,r,i?.amount,i?.warningThreshold||80,i?.type);return {text:`${this.symbols.session_cost} ${a}`,bgColor:t.sessionBg,fgColor:t.sessionFg}}renderTmux(e,t){return e?{text:`tmux:${e}`,bgColor:t.tmuxBg,fgColor:t.tmuxFg}:{text:"tmux:none",bgColor:t.tmuxBg,fgColor:t.tmuxFg}}renderContext(e,t,n){if(!e)return {text:`${this.symbols.context_time} 0 (100%)`,bgColor:t.contextBg,fgColor:t.contextFg};let r=`${e.contextLeftPercentage}%`;return {text:n?.showPercentageOnly?`${this.symbols.context_time} ${r}`:`${this.symbols.context_time} ${e.inputTokens.toLocaleString()} (${r})`,bgColor:t.contextBg,fgColor:t.contextFg}}renderMetrics(e,t,n,r){if(!e)return {text:`${this.symbols.metrics_response} new`,bgColor:t.metricsBg,fgColor:t.metricsFg};let s=[];if(r?.showLastResponseTime&&e.lastResponseTime!==null){let i=e.lastResponseTime<60?`${e.lastResponseTime.toFixed(1)}s`:`${(e.lastResponseTime/60).toFixed(1)}m`;s.push(`${this.symbols.metrics_last_response} ${i}`);}if(r?.showResponseTime!==false&&e.responseTime!==null){let i=e.responseTime<60?`${e.responseTime.toFixed(1)}s`:`${(e.responseTime/60).toFixed(1)}m`;s.push(`${this.symbols.metrics_response} ${i}`);}if(r?.showDuration!==false&&e.sessionDuration!==null){let i=Oe(e.sessionDuration);s.push(`${this.symbols.metrics_duration} ${i}`);}return r?.showMessageCount!==false&&e.messageCount!==null&&s.push(`${this.symbols.metrics_messages} ${e.messageCount}`),r?.showLinesAdded!==false&&e.linesAdded!==null&&e.linesAdded>0&&s.push(`${this.symbols.metrics_lines_added} ${e.linesAdded}`),r?.showLinesRemoved!==false&&e.linesRemoved!==null&&e.linesRemoved>0&&s.push(`${this.symbols.metrics_lines_removed} ${e.linesRemoved}`),s.length===0?{text:`${this.symbols.metrics_response} active`,bgColor:t.metricsBg,fgColor:t.metricsFg}:{text:s.join(" "),bgColor:t.metricsBg,fgColor:t.metricsFg}}renderBlock(e,t,n){let r;if(e.cost===null&&e.tokens===null)r="No active block";else {let s=n?.type||"cost",i=n?.burnType,a=this.config.budget?.block,c=e.timeRemaining!==null?(()=>{let m=Math.floor(e.timeRemaining/60),f=e.timeRemaining%60;return m>0?`${m}h ${f}m`:`${f}m`})():null,u;switch(s){case "cost":a?.amount&&a?.type==="cost"?u=this.formatUsageWithBudget(e.cost,null,null,"cost",a.amount,a.warningThreshold,a.type):u=S(e.cost);break;case "tokens":a?.amount&&a?.type==="tokens"?u=this.formatUsageWithBudget(null,e.tokens,null,"tokens",a.amount,a.warningThreshold,a.type):u=C(e.tokens);break;case "weighted":let m=a?.type==="tokens"?a.amount:void 0,f=C(e.weightedTokens);if(m&&e.weightedTokens!==null){let d=be(e.weightedTokens,m,a?.warningThreshold||80);u=`${f}${d.displayText}`;}else u=`${f} (weighted)`;break;case "both":a?.amount?u=this.formatUsageWithBudget(e.cost,e.tokens,null,"both",a.amount,a.warningThreshold,a.type):u=`${S(e.cost)} / ${C(e.tokens)}`;break;case "time":u=c||"N/A";break;default:a?.amount&&a?.type==="cost"?u=this.formatUsageWithBudget(e.cost,null,null,"cost",a.amount,a.warningThreshold,a.type):u=S(e.cost);}let g="";if(i&&i!=="none")switch(i){case "cost":g=` | ${e.burnRate!==null?e.burnRate<1?`${(e.burnRate*100).toFixed(0)}\xA2/h`:`$${e.burnRate.toFixed(2)}/h`:"N/A"}`;break;case "tokens":g=` | ${e.tokenBurnRate!==null?`${C(Math.round(e.tokenBurnRate))}/h`:"N/A"}`;break;case "both":let d=e.burnRate!==null?e.burnRate<1?`${(e.burnRate*100).toFixed(0)}\xA2/h`:`$${e.burnRate.toFixed(2)}/h`:"N/A",h=e.tokenBurnRate!==null?`${C(Math.round(e.tokenBurnRate))}/h`:"N/A";g=` | ${d} / ${h}`;break}s==="time"?r=u:r=c?`${u}${g} (${c} left)`:`${u}${g}`;}return {text:`${this.symbols.block_cost} ${r}`,bgColor:t.blockBg,fgColor:t.blockFg}}renderToday(e,t,n="cost"){let r=this.config.budget?.today;return {text:`${this.symbols.today_cost} ${this.formatUsageWithBudget(e.cost,e.tokens,e.tokenBreakdown,n,r?.amount,r?.warningThreshold,r?.type)}`,bgColor:t.todayBg,fgColor:t.todayFg}}getDisplayDirectoryName(e,t){return e.startsWith("~")?e:t&&t!==e?e.startsWith(t)?e.slice(t.length+1)||_.basename(t)||"project":_.basename(e)||"root":_.basename(e)||"root"}formatUsageDisplay(e,t,n,r){switch(r){case "cost":return S(e);case "tokens":return C(t);case "both":return `${S(e)} (${C(t)})`;case "breakdown":return pe(n);default:return S(e)}}formatSessionUsageDisplay(e,t,n){let r=()=>n==="calculated"?e.calculatedCost:n==="official"?e.officialCost:e.cost;switch(t){case "cost":return S(r());case "tokens":return C(e.tokens);case "both":return `${S(r())} (${C(e.tokens)})`;case "breakdown":return pe(e.tokenBreakdown);default:return S(r())}}formatUsageWithBudget(e,t,n,r,s,i=80,a){let c=this.formatUsageDisplay(e,t,n,r);if(s&&s>0){let u=null;if(a==="tokens"&&t!==null?u=t:(a==="cost"&&e!==null||!a&&e!==null)&&(u=e),u!==null){let g=be(u,s,i);return c+g.displayText}}return c}renderVersion(e,t,n){return e.version?{text:`${this.symbols.version} v${e.version}`,bgColor:t.versionBg,fgColor:t.versionFg}:null}};function dt(o){return o.includes("opus")?5:(o.includes("sonnet")||o.includes("haiku"),1)}function ht(o){return {timestamp:o.timestamp,usage:{inputTokens:o.message?.usage?.input_tokens||0,outputTokens:o.message?.usage?.output_tokens||0,cacheCreationInputTokens:o.message?.usage?.cache_creation_input_tokens||0,cacheReadInputTokens:o.message?.usage?.cache_read_input_tokens||0},costUSD:o.costUSD||0,model:o.message?.model||"unknown"}}var ee=class{sessionDurationHours=5;floorToHour(e){let t=new Date(e);return t.setUTCMinutes(0,0,0),t}identifySessionBlocks(e){if(e.length===0)return [];let t=this.sessionDurationHours*60*60*1e3,n=[],r=[...e].sort((a,c)=>a.timestamp.getTime()-c.timestamp.getTime()),s=null,i=[];for(let a of r){let c=a.timestamp;if(s==null)s=this.floorToHour(c),i=[a];else {let u=c.getTime()-s.getTime(),g=i[i.length-1];if(g==null)continue;let m=g.timestamp,f=c.getTime()-m.getTime();u>t||f>t?(n.push(i),s=this.floorToHour(c),i=[a]):i.push(a);}}return s!=null&&i.length>0&&n.push(i),n}createBlockInfo(e,t){let n=new Date,r=this.sessionDurationHours*60*60*1e3,s=new Date(e.getTime()+r),i=t[t.length-1],a=i!=null?i.timestamp:e,c=n.getTime()-a.getTime()<r&&n<s;return {block:t,isActive:c}}findActiveBlock(e){for(let t=e.length-1;t>=0;t--){let n=e[t];if(!n||n.length===0)continue;let r=n[0];if(!r)continue;let s=this.floorToHour(r.timestamp),i=this.createBlockInfo(s,n);if(i.isActive)return i.block}return null}async loadUsageEntries(){try{l("Block segment: Loading entries for dynamic session blocks");let e=new Date;e.setDate(e.getDate()-1);let n=await X(void 0,(c,u)=>u>=e,!0),r=[];for(let c of n)if(c.message?.usage){let u=ht(c);!u.costUSD&&c.raw&&(u.costUSD=await P.calculateCostForEntry(c.raw)),r.push(u);}let s=this.identifySessionBlocks(r);l(`Block segment: Found ${s.length} session blocks`);let i=this.findActiveBlock(s),a=[];if(i&&i.length>0){l(`Block segment: Found active block with ${i.length} entries`);let c=i[0],u=i[i.length-1];c&&u&&l(`Block segment: Active block from ${c.timestamp.toISOString()} to ${u.timestamp.toISOString()}`),a=i;}else l("Block segment: No active block found"),a=[];return a}catch(e){return l("Error loading block entries:",e),[]}}async getActiveBlockInfo(){try{let e=await this.loadUsageEntries();if(e.length===0)return l("Block segment: No entries in current block"),{cost:null,tokens:null,weightedTokens:null,timeRemaining:null,burnRate:null,tokenBurnRate:null};let t=e.reduce((u,g)=>u+g.costUSD,0),n=e.reduce((u,g)=>u+g.usage.inputTokens+g.usage.outputTokens+g.usage.cacheCreationInputTokens+g.usage.cacheReadInputTokens,0),r=e.reduce((u,g)=>{let m=g.usage.inputTokens+g.usage.outputTokens+g.usage.cacheCreationInputTokens+g.usage.cacheReadInputTokens,f=dt(g.model);return u+m*f},0),s=new Date,i=null;if(e.length>0){let u=e[0];if(u){let g=this.sessionDurationHours*60*60*1e3,m=this.floorToHour(u.timestamp),f=new Date(m.getTime()+g);i=Math.max(0,Math.round((f.getTime()-s.getTime())/(1e3*60)));}}let a=null,c=null;if(e.length>=1&&(t>0||n>0)){let u=e.map(f=>f.timestamp).sort((f,d)=>f.getTime()-d.getTime()),g=u[0],m=u[u.length-1];if(g&&m){let f=(m.getTime()-g.getTime())/6e4;f>0&&(t>0&&(a=t/f*60),n>0&&(c=n/f*60));}}return l(`Block segment: $${t.toFixed(2)}, ${n} tokens, ${i}m remaining, burn rate: ${a?"$"+a.toFixed(2)+"/hr":"N/A"}`),{cost:t,tokens:n,weightedTokens:r,timeRemaining:i,burnRate:a,tokenBurnRate:c}}catch(e){return l("Error getting active block info:",e),{cost:null,tokens:null,weightedTokens:null,timeRemaining:null,burnRate:null,tokenBurnRate:null}}}};function H(o){let e=o.getFullYear(),t=String(o.getMonth()+1).padStart(2,"0"),n=String(o.getDate()).padStart(2,"0");return `${e}-${t}-${n}`}function pt(o){return o.inputTokens+o.outputTokens+o.cacheCreationInputTokens+o.cacheReadInputTokens}function bt(o){return {timestamp:o.timestamp,usage:{inputTokens:o.message?.usage?.input_tokens||0,outputTokens:o.message?.usage?.output_tokens||0,cacheCreationInputTokens:o.message?.usage?.cache_creation_input_tokens||0,cacheReadInputTokens:o.message?.usage?.cache_read_input_tokens||0},costUSD:o.costUSD||0,model:o.message?.model||"unknown"}}var te=class{async loadTodayEntries(){let t=H(new Date);l(`Today segment: Loading entries for date ${t}`);let n=await E.getLatestTranscriptMtime(),r=await E.getUsageCache("today",n);if(r)return l("Using shared today usage cache"),r;let s=new Date;s.setDate(s.getDate()-1),s.setHours(0,0,0,0);let i=(f,d)=>d>=s,a=new Date;a.setHours(0,0,0,0);let u=await X(f=>f.timestamp>=a,i,true),g=[],m=0;for(let f of u)if(H(f.timestamp)===t&&f.message?.usage){let h=bt(f);!h.costUSD&&f.raw&&(h.costUSD=await P.calculateCostForEntry(f.raw)),g.push(h),m++;}return l(`Today segment: Found ${m} entries for today (${t})`),await E.setUsageCache("today",g,n),g}async getTodayEntries(){try{return await this.loadTodayEntries()}catch(e){return l("Error loading today's entries:",e),[]}}async getTodayInfo(){try{let e=await this.getTodayEntries();if(e.length===0)return {cost:null,tokens:null,tokenBreakdown:null,date:H(new Date)};let t=e.reduce((s,i)=>s+i.costUSD,0),n=e.reduce((s,i)=>s+pt(i.usage),0),r=e.reduce((s,i)=>({input:s.input+i.usage.inputTokens,output:s.output+i.usage.outputTokens,cacheCreation:s.cacheCreation+i.usage.cacheCreationInputTokens,cacheRead:s.cacheRead+i.usage.cacheReadInputTokens}),{input:0,output:0,cacheCreation:0,cacheRead:0});return l(`Today segment: $${t.toFixed(2)}, ${n} tokens total`),{cost:t,tokens:n,tokenBreakdown:r,date:H(new Date)}}catch(e){return l("Error getting today's info:",e),{cost:null,tokens:null,tokenBreakdown:null,date:H(new Date)}}}};var G="\x1B[0m",p={right:"\uE0B0",branch:"\u2387",model:"\u26A1",git_clean:"\u2713",git_dirty:"\u25CF",git_conflicts:"\u26A0",git_ahead:"\u2191",git_behind:"\u2193",git_worktree:"\u29C9",git_tag:"\u2302",git_sha:"\u266F",git_upstream:"\u2192",git_stash:"\u29C7",git_time:"\u25F7",session_cost:"\xA7",block_cost:"\u25F1",today_cost:"\u2609",context_time:"\u25D4",metrics_response:"\u29D6",metrics_last_response:"\u0394",metrics_duration:"\u29D7",metrics_messages:"\u27D0",metrics_lines_added:"+",metrics_lines_removed:"-",metrics_burn:"\u27E2",version:"\u25C8"};var ne=class{constructor(e){this.config=e;this.symbols=this.initializeSymbols();}symbols;_usageProvider;_blockProvider;_todayProvider;_contextProvider;_gitService;_tmuxService;_metricsProvider;_segmentRenderer;get usageProvider(){return this._usageProvider||(this._usageProvider=new I),this._usageProvider}get blockProvider(){return this._blockProvider||(this._blockProvider=new ee),this._blockProvider}get todayProvider(){return this._todayProvider||(this._todayProvider=new te),this._todayProvider}get contextProvider(){return this._contextProvider||(this._contextProvider=new O),this._contextProvider}get gitService(){return this._gitService||(this._gitService=new M),this._gitService}get tmuxService(){return this._tmuxService||(this._tmuxService=new F),this._tmuxService}get metricsProvider(){return this._metricsProvider||(this._metricsProvider=new j),this._metricsProvider}get segmentRenderer(){return this._segmentRenderer||(this._segmentRenderer=new N(this.config,this.symbols)),this._segmentRenderer}needsSegmentInfo(e){return this.config.display.lines.some(t=>t.segments[e]?.enabled)}async generateStatusline(e){let t=this.needsSegmentInfo("session")?await this.usageProvider.getUsageInfo(e.session_id,e):null,n=this.needsSegmentInfo("block")?await this.blockProvider.getActiveBlockInfo():null,r=this.needsSegmentInfo("today")?await this.todayProvider.getTodayInfo():null,s=this.needsSegmentInfo("context")?await this.contextProvider.calculateContextTokens(e.transcript_path,e.model?.id):null,i=this.needsSegmentInfo("metrics")?await this.metricsProvider.getMetricsInfo(e.session_id,e):null;return (await Promise.all(this.config.display.lines.map(c=>this.renderLine(c,e,t,n,r,s,i)))).filter(c=>c.length>0).join(`
7
- `)}async renderLine(e,t,n,r,s,i,a){let c=this.getThemeColors(),u=t.workspace?.current_dir||t.cwd||"/",g=Object.entries(e.segments).filter(([f,d])=>d?.enabled).map(([f,d])=>({type:f,config:d})),m=c.reset;for(let f=0;f<g.length;f++){let d=g[f];if(!d)continue;let h=f===g.length-1,b=h?null:g[f+1],R=b?this.getSegmentBgColor(b.type,c):"",T=await this.renderSegment(d,t,n,r,s,i,a,c,u);T&&(m+=this.formatSegment(T.bgColor,T.fgColor,T.text,h?void 0:R));}return m}async renderSegment(e,t,n,r,s,i,a,c,u){return e.type==="directory"?this.segmentRenderer.renderDirectory(t,c,e.config):e.type==="model"?this.segmentRenderer.renderModel(t,c):e.type==="git"?await this.renderGitSegment(e.config,t,c,u):e.type==="session"?this.renderSessionSegment(e.config,n,c):e.type==="tmux"?await this.renderTmuxSegment(c):e.type==="context"?this.renderContextSegment(e.config,i,c):e.type==="metrics"?this.renderMetricsSegment(e.config,a,r,c):e.type==="block"?this.renderBlockSegment(e.config,r,c):e.type==="today"?this.renderTodaySegment(e.config,s,c):e.type==="version"?this.renderVersionSegment(e.config,t,c):null}async renderGitSegment(e,t,n,r){if(!this.needsSegmentInfo("git"))return null;let s=await this.gitService.getGitInfo(r,{showSha:e?.showSha,showWorkingTree:e?.showWorkingTree,showOperation:e?.showOperation,showTag:e?.showTag,showTimeSinceCommit:e?.showTimeSinceCommit,showStashCount:e?.showStashCount,showUpstream:e?.showUpstream,showRepoName:e?.showRepoName},t.workspace?.project_dir);return s?this.segmentRenderer.renderGit(s,n,e):null}renderSessionSegment(e,t,n){return t?this.segmentRenderer.renderSession(t,n,e):null}async renderTmuxSegment(e){if(!this.needsSegmentInfo("tmux"))return null;let t=await this.tmuxService.getSessionId();return this.segmentRenderer.renderTmux(t,e)}renderContextSegment(e,t,n){return this.needsSegmentInfo("context")?this.segmentRenderer.renderContext(t,n,e):null}renderMetricsSegment(e,t,n,r){return this.segmentRenderer.renderMetrics(t,r,n,e)}renderBlockSegment(e,t,n){return t?this.segmentRenderer.renderBlock(t,n,e):null}renderTodaySegment(e,t,n){if(!t)return null;let r=e?.type||"cost";return this.segmentRenderer.renderToday(t,n,r)}renderVersionSegment(e,t,n){return this.segmentRenderer.renderVersion(t,n,e)}initializeSymbols(){return {right:this.config.display.style==="minimal"?"":p.right,branch:p.branch,model:p.model,git_clean:p.git_clean,git_dirty:p.git_dirty,git_conflicts:p.git_conflicts,git_ahead:p.git_ahead,git_behind:p.git_behind,git_worktree:p.git_worktree,git_tag:p.git_tag,git_sha:p.git_sha,git_upstream:p.git_upstream,git_stash:p.git_stash,git_time:p.git_time,session_cost:p.session_cost,block_cost:p.block_cost,today_cost:p.today_cost,context_time:p.context_time,metrics_response:p.metrics_response,metrics_last_response:p.metrics_last_response,metrics_duration:p.metrics_duration,metrics_messages:p.metrics_messages,metrics_lines_added:p.metrics_lines_added,metrics_lines_removed:p.metrics_lines_removed,metrics_burn:p.metrics_burn,version:p.version}}getThemeColors(){let e=this.config.theme,t,n=this.config.display.colorCompatibility||"auto",r=n==="auto"?ce():n;if(e==="custom"){if(t=this.config.colors?.custom,!t)throw new Error("Custom theme selected but no colors provided in configuration")}else t=J(e,r),t||(console.warn(`Built-in theme '${e}' not found, falling back to 'dark' theme`),t=J("dark",r));let s=J("dark",r),i=T=>{let D=t[T]||s[T];return r==="ansi"?{bg:ue(D.bg,true),fg:ue(D.fg,false)}:r==="ansi256"?{bg:le(D.bg,true),fg:le(D.fg,false)}:{bg:ie(D.bg,true),fg:ie(D.fg,false)}},a=i("directory"),c=i("git"),u=i("model"),g=i("session"),m=i("block"),f=i("today"),d=i("tmux"),h=i("context"),b=i("metrics"),R=i("version");return {reset:G,modeBg:a.bg,modeFg:a.fg,gitBg:c.bg,gitFg:c.fg,modelBg:u.bg,modelFg:u.fg,sessionBg:g.bg,sessionFg:g.fg,blockBg:m.bg,blockFg:m.fg,todayBg:f.bg,todayFg:f.fg,tmuxBg:d.bg,tmuxFg:d.fg,contextBg:h.bg,contextFg:h.fg,metricsBg:b.bg,metricsFg:b.fg,versionBg:R.bg,versionFg:R.fg}}getSegmentBgColor(e,t){switch(e){case "directory":return t.modeBg;case "git":return t.gitBg;case "model":return t.modelBg;case "session":return t.sessionBg;case "block":return t.blockBg;case "today":return t.todayBg;case "tmux":return t.tmuxBg;case "context":return t.contextBg;case "metrics":return t.metricsBg;case "version":return t.versionBg;default:return t.modeBg}}formatSegment(e,t,n,r){let s=`${e}${t} ${n} `,i=this.config.display.colorCompatibility||"auto",c=(i==="auto"?ce():i)==="ansi";if(r){let u=ae(e,c);s+=`${G}${r}${u}${this.symbols.right}`;}else s+=`${G}${ae(e,c)}${this.symbols.right}${G}`;return s}};var je={theme:"dark",display:{style:"minimal",colorCompatibility:"auto",lines:[{segments:{directory:{enabled:true,showBasename:true},git:{enabled:true,showSha:false,showWorkingTree:false,showOperation:false,showTag:false,showTimeSinceCommit:false,showStashCount:false,showUpstream:false,showRepoName:false},model:{enabled:true},session:{enabled:true,type:"tokens",costSource:"calculated"},today:{enabled:true,type:"cost"},block:{enabled:false,type:"cost",burnType:"cost"},version:{enabled:false},tmux:{enabled:false},context:{enabled:true,showPercentageOnly:false},metrics:{enabled:false,showResponseTime:true,showLastResponseTime:true,showDuration:true,showMessageCount:true,showLinesAdded:true,showLinesRemoved:true}}}]},budget:{session:{warningThreshold:80},today:{warningThreshold:80,amount:50},block:{warningThreshold:80,amount:15}}};function Ce(o){return ["light","dark","nord","tokyo-night","rose-pine","custom"].includes(o)}function _e(o){return o==="minimal"||o==="powerline"}function oe(o,e){let t={...o};for(let n in e){let r=e[n];if(r!==void 0)if(typeof r=="object"&&r!==null&&!Array.isArray(r)){let s=t[n]||{};t[n]=oe(s,r);}else t[n]=r;}return t}function yt(o,e){return o?w.existsSync(o)?o:null:[...e?[_.join(e,".claude-powerline.json")]:[],_.join(process.cwd(),".claude-powerline.json"),_.join(U.homedir(),".claude","claude-powerline.json"),_.join(U.homedir(),".config","claude-powerline","config.json")].find(w.existsSync)||null}function Ct(o){try{let e=w.readFileSync(o,"utf-8");return JSON.parse(e)}catch(e){throw new Error(`Failed to load config file ${o}: ${e instanceof Error?e.message:String(e)}`)}}function _t(){let o={},e={},t=process.env.CLAUDE_POWERLINE_THEME;t&&Ce(t)&&(o.theme=t);let n=process.env.CLAUDE_POWERLINE_STYLE;return n&&(_e(n)?e.style=n:(console.warn(`Invalid display style '${n}' from environment variable, falling back to 'minimal'`),e.style="minimal")),Object.keys(e).length>0&&(o.display=e),o}function wt(){return process.env.CLAUDE_POWERLINE_CONFIG}function kt(o){let e={},t={},n=o.find(s=>s.startsWith("--theme="))?.split("=")[1];n&&Ce(n)&&(e.theme=n);let r=o.find(s=>s.startsWith("--style="))?.split("=")[1];return r&&(_e(r)?t.style=r:(console.warn(`Invalid display style '${r}' from CLI argument, falling back to 'minimal'`),t.style="minimal")),Object.keys(t).length>0&&(e.display=t),e}function St(o=process.argv,e){let t=JSON.parse(JSON.stringify(je)),n=o.find(a=>a.startsWith("--config="))?.split("=")[1]||wt(),r=yt(n,e);if(r)try{let a=Ct(r);t=oe(t,a);}catch(a){console.warn(`Warning: ${a instanceof Error?a.message:String(a)}`);}t.display?.style&&!_e(t.display.style)&&(console.warn(`Invalid display style '${t.display.style}' in config file, falling back to 'minimal'`),t.display.style="minimal"),t.theme&&!Ce(t.theme)&&(console.warn(`Invalid theme '${t.theme}' in config file, falling back to 'dark'`),t.theme="dark");let s=_t();t=oe(t,s);let i=kt(o);return t=oe(t,i),t}var He=St;async function xt(){try{let o=U.platform(),e;if(o==="darwin")e=_.join(U.homedir(),"Library","Fonts");else if(o==="linux")e=_.join(U.homedir(),".local","share","fonts");else if(o==="win32")e=_.join(U.homedir(),"AppData","Local","Microsoft","Windows","Fonts");else {console.log("Unsupported platform for font installation");return}w.existsSync(e)||w.mkdirSync(e,{recursive:!0}),console.log("Installing Powerline Fonts..."),console.log("Downloading from https://github.com/powerline/fonts");let t=_.join(U.tmpdir(),"powerline-fonts"),n=()=>{w.existsSync(t)&&w.rmSync(t,{recursive:!0,force:!0});};y.on("SIGINT",n),y.on("SIGTERM",n);try{w.existsSync(t)&&w.rmSync(t,{recursive:!0,force:!0}),console.log("Cloning powerline fonts repository..."),execSync("git clone --depth=1 https://github.com/powerline/fonts.git powerline-fonts",{stdio:"inherit",cwd:U.tmpdir()}),console.log("Installing fonts...");let r=_.join(t,"install.sh");if(w.existsSync(r))w.chmodSync(r,493),execSync("./install.sh",{stdio:"inherit",cwd:t});else throw new Error("Install script not found in powerline fonts repository");console.log("Powerline fonts installation complete!"),console.log("Please restart your terminal and set your terminal font to a powerline font."),console.log("Popular choices: Source Code Pro Powerline, DejaVu Sans Mono Powerline, Ubuntu Mono Powerline");}finally{n(),y.removeListener("SIGINT",n),y.removeListener("SIGTERM",n);}}catch(o){console.error("Error installing fonts:",o instanceof Error?o.message:String(o)),console.log("You can manually install fonts from: https://github.com/powerline/fonts");}}function We(){console.log(`
2
+ import y from'process';import w,{join,posix}from'path';import _,{existsSync,readFileSync,createReadStream}from'fs';import {exec,execSync}from'child_process';import U,{homedir}from'os';import {json}from'stream/consumers';import V from'tty';import {promisify}from'util';import {get}from'https';import {URL}from'url';import {createHash}from'crypto';import {setTimeout}from'timers/promises';import {readdir,stat,readFile}from'fs/promises';import {createInterface}from'readline';function ie(r,e){if(e&&(r.toLowerCase()==="transparent"||r.toLowerCase()==="none"))return "\x1B[49m";let t=parseInt(r.slice(1,3),16),n=parseInt(r.slice(3,5),16),o=parseInt(r.slice(5,7),16);return `\x1B[${e?"48":"38"};2;${t};${n};${o}m`}function ae(r,e=false){let t=r.match(/48;2;(\d+);(\d+);(\d+)/);if(t)return `\x1B[38;2;${t[1]};${t[2]};${t[3]}m`;if(e)return "\x1B[37m";if(r.includes("\x1B[")&&r.includes("m")){let n=r.match(/\[(\d+)m/);if(n&&n[1]){let o=parseInt(n[1],10);if(o>=40&&o<=47)return `\x1B[${o-10}m`;if(o>=100&&o<=107)return `\x1B[${o-10}m`}}return r.replace("48","38")}function ce(){let{env:r}=y;if(r.NO_COLOR)return "none";let e=r.FORCE_COLOR;if(e==="false"||e==="0")return "none";if(e==="true"||e==="1")return "ansi";if(e==="2")return "ansi256";if(e==="3")return "truecolor";if(r.TERM==="dumb")return "none";if(r.CI)return ["GITHUB_ACTIONS","GITEA_ACTIONS","CIRCLECI"].some(n=>n in r)?"truecolor":"ansi";if(r.COLORTERM==="truecolor"||["xterm-kitty","xterm-ghostty","wezterm","alacritty","foot","contour"].includes(r.TERM||""))return "truecolor";if(r.TERM_PROGRAM)switch(r.TERM_PROGRAM){case "iTerm.app":return "truecolor";case "Apple_Terminal":return "ansi256";case "vscode":return "truecolor";case "Tabby":return "truecolor"}if(/-256(color)?$/i.test(r.TERM||""))return "ansi256";if(/-truecolor$/i.test(r.TERM||""))return "truecolor";if(/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(r.TERM||"")||r.COLORTERM)return "ansi";if(V?.WriteStream?.prototype?.hasColors)try{if(!V.WriteStream.prototype.hasColors())return "none";let o=V.WriteStream.prototype.hasColors(256);return V.WriteStream.prototype.hasColors(16777216)?"truecolor":o?"ansi256":"ansi"}catch{}return "ansi"}function le(r,e){if(e&&(r.toLowerCase()==="transparent"||r.toLowerCase()==="none"))return "\x1B[49m";let t=parseInt(r.slice(1,3),16),n=parseInt(r.slice(3,5),16),o=parseInt(r.slice(5,7),16),i=((a,c,u)=>a===c&&c===u?a<8?16:a>248?231:Math.round((a-8)/247*24)+232:16+36*Math.round(a/255*5)+6*Math.round(c/255*5)+Math.round(u/255*5))(t,n,o);return `\x1B[${e?"48":"38"};5;${i}m`}function ue(r,e){if(e&&(r.toLowerCase()==="transparent"||r.toLowerCase()==="none"))return "\x1B[49m";if(e)return "";let t=parseInt(r.slice(1,3),16),n=parseInt(r.slice(3,5),16),o=parseInt(r.slice(5,7),16);return n>t&&n>o&&n>120?"\x1B[32m":t>n&&t>o&&t>120?"\x1B[31m":o>t&&o>n&&o>120?"\x1B[34m":(t+n+o)/3>150?"\x1B[37m":"\x1B[90m"}var _e={directory:{bg:"#8b4513",fg:"#ffffff"},git:{bg:"#404040",fg:"#ffffff"},model:{bg:"#2d2d2d",fg:"#ffffff"},session:{bg:"#202020",fg:"#00ffff"},block:{bg:"#2a2a2a",fg:"#87ceeb"},today:{bg:"#1a1a1a",fg:"#98fb98"},tmux:{bg:"#2f4f2f",fg:"#90ee90"},context:{bg:"#4a5568",fg:"#cbd5e0"},metrics:{bg:"#374151",fg:"#d1d5db"},version:{bg:"#3a3a4a",fg:"#b8b8d0"}},ke={directory:{bg:"#af5f00",fg:"#ffffff"},git:{bg:"#444444",fg:"#ffffff"},model:{bg:"#3a3a3a",fg:"#ffffff"},session:{bg:"#262626",fg:"#00ffff"},block:{bg:"#303030",fg:"#87ceeb"},today:{bg:"#1c1c1c",fg:"#87ff87"},tmux:{bg:"#444444",fg:"#87ff87"},context:{bg:"#585858",fg:"#d0d0d0"},metrics:{bg:"#4e4e4e",fg:"#d0d0d0"},version:{bg:"#444444",fg:"#d7afff"}},Se={directory:{bg:"#d75f00",fg:"#ffffff"},git:{bg:"#585858",fg:"#ffffff"},model:{bg:"#444444",fg:"#ffffff"},session:{bg:"#303030",fg:"#00ffff"},block:{bg:"#3a3a3a",fg:"#5fafff"},today:{bg:"#262626",fg:"#00ff00"},tmux:{bg:"#585858",fg:"#00ff00"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#666666",fg:"#ffffff"},version:{bg:"#585858",fg:"#af87ff"}};var Te={directory:{bg:"#ff6b47",fg:"#ffffff"},git:{bg:"#4fb3d9",fg:"#ffffff"},model:{bg:"#87ceeb",fg:"#000000"},session:{bg:"#da70d6",fg:"#ffffff"},block:{bg:"#6366f1",fg:"#ffffff"},today:{bg:"#10b981",fg:"#ffffff"},tmux:{bg:"#32cd32",fg:"#ffffff"},context:{bg:"#718096",fg:"#ffffff"},metrics:{bg:"#6b7280",fg:"#ffffff"},version:{bg:"#8b7dd8",fg:"#ffffff"}},xe={directory:{bg:"#ff5f5f",fg:"#ffffff"},git:{bg:"#5fafff",fg:"#ffffff"},model:{bg:"#87d7ff",fg:"#000000"},session:{bg:"#ff5fff",fg:"#ffffff"},block:{bg:"#5f5fff",fg:"#ffffff"},today:{bg:"#00d787",fg:"#ffffff"},tmux:{bg:"#00ff5f",fg:"#ffffff"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#767676",fg:"#ffffff"},version:{bg:"#af87ff",fg:"#ffffff"}},ve={directory:{bg:"#ff5f5f",fg:"#ffffff"},git:{bg:"#5fafff",fg:"#ffffff"},model:{bg:"#87d7ff",fg:"#000000"},session:{bg:"#ff5fff",fg:"#ffffff"},block:{bg:"#5f5fff",fg:"#ffffff"},today:{bg:"#00d787",fg:"#ffffff"},tmux:{bg:"#00ff5f",fg:"#ffffff"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#767676",fg:"#ffffff"},version:{bg:"#af87ff",fg:"#ffffff"}};var Pe={directory:{bg:"#434c5e",fg:"#d8dee9"},git:{bg:"#3b4252",fg:"#a3be8c"},model:{bg:"#4c566a",fg:"#81a1c1"},session:{bg:"#2e3440",fg:"#88c0d0"},block:{bg:"#3b4252",fg:"#81a1c1"},today:{bg:"#2e3440",fg:"#8fbcbb"},tmux:{bg:"#2e3440",fg:"#8fbcbb"},context:{bg:"#5e81ac",fg:"#eceff4"},metrics:{bg:"#b48ead",fg:"#2e3440"},version:{bg:"#434c5e",fg:"#88c0d0"}},Ee={directory:{bg:"#5f87af",fg:"#e4e4e4"},git:{bg:"#4e4e4e",fg:"#87d787"},model:{bg:"#6c6c6c",fg:"#87afd7"},session:{bg:"#3a3a3a",fg:"#5fafaf"},block:{bg:"#4e4e4e",fg:"#87afd7"},today:{bg:"#3a3a3a",fg:"#5fd7d7"},tmux:{bg:"#3a3a3a",fg:"#5fd7d7"},context:{bg:"#5f87d7",fg:"#ffffff"},metrics:{bg:"#d787af",fg:"#3a3a3a"},version:{bg:"#5f87af",fg:"#5fafaf"}},$e={directory:{bg:"#0087af",fg:"#ffffff"},git:{bg:"#585858",fg:"#87d700"},model:{bg:"#808080",fg:"#87afff"},session:{bg:"#444444",fg:"#00d7d7"},block:{bg:"#585858",fg:"#87afff"},today:{bg:"#444444",fg:"#00ffff"},tmux:{bg:"#444444",fg:"#00ffff"},context:{bg:"#0087ff",fg:"#ffffff"},metrics:{bg:"#ff87d7",fg:"#444444"},version:{bg:"#0087af",fg:"#00d7d7"}};var Re={directory:{bg:"#2f334d",fg:"#82aaff"},git:{bg:"#1e2030",fg:"#c3e88d"},model:{bg:"#191b29",fg:"#fca7ea"},session:{bg:"#222436",fg:"#86e1fc"},block:{bg:"#2d3748",fg:"#7aa2f7"},today:{bg:"#1a202c",fg:"#4fd6be"},tmux:{bg:"#191b29",fg:"#4fd6be"},context:{bg:"#414868",fg:"#c0caf5"},metrics:{bg:"#3d59a1",fg:"#c0caf5"},version:{bg:"#292e42",fg:"#bb9af7"}},De={directory:{bg:"#444478",fg:"#87afff"},git:{bg:"#262640",fg:"#afff87"},model:{bg:"#1c1c30",fg:"#ff87ff"},session:{bg:"#3a3a50",fg:"#5fd7ff"},block:{bg:"#4e4e68",fg:"#5f87ff"},today:{bg:"#262640",fg:"#00d7af"},tmux:{bg:"#1c1c30",fg:"#00d7af"},context:{bg:"#5f5f87",fg:"#d7d7ff"},metrics:{bg:"#5f5faf",fg:"#d7d7ff"},version:{bg:"#444460",fg:"#d787ff"}},Be={directory:{bg:"#5f5faf",fg:"#87afff"},git:{bg:"#303050",fg:"#87ff87"},model:{bg:"#262640",fg:"#ff87ff"},session:{bg:"#444470",fg:"#00d7ff"},block:{bg:"#666680",fg:"#5f87ff"},today:{bg:"#303050",fg:"#00d787"},tmux:{bg:"#262640",fg:"#00d787"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#8787d7",fg:"#ffffff"},version:{bg:"#585870",fg:"#d787ff"}};var Ae={directory:{bg:"#26233a",fg:"#c4a7e7"},git:{bg:"#1f1d2e",fg:"#9ccfd8"},model:{bg:"#191724",fg:"#ebbcba"},session:{bg:"#26233a",fg:"#f6c177"},block:{bg:"#2a273f",fg:"#eb6f92"},today:{bg:"#232136",fg:"#9ccfd8"},tmux:{bg:"#26233a",fg:"#908caa"},context:{bg:"#393552",fg:"#e0def4"},metrics:{bg:"#524f67",fg:"#e0def4"},version:{bg:"#2a273f",fg:"#c4a7e7"}},Ue={directory:{bg:"#444444",fg:"#d787d7"},git:{bg:"#262626",fg:"#87d7d7"},model:{bg:"#1c1c1c",fg:"#ffaf87"},session:{bg:"#444444",fg:"#d7af5f"},block:{bg:"#4e4e4e",fg:"#ff5f87"},today:{bg:"#3a3a3a",fg:"#87d7d7"},tmux:{bg:"#444444",fg:"#9e9e9e"},context:{bg:"#585858",fg:"#e4e4e4"},metrics:{bg:"#767676",fg:"#e4e4e4"},version:{bg:"#4e4e4e",fg:"#d787d7"}},Me={directory:{bg:"#585858",fg:"#ff87ff"},git:{bg:"#303030",fg:"#00d7d7"},model:{bg:"#262626",fg:"#ffaf87"},session:{bg:"#585858",fg:"#d7af00"},block:{bg:"#666666",fg:"#ff5f87"},today:{bg:"#444444",fg:"#00d7d7"},tmux:{bg:"#585858",fg:"#bcbcbc"},context:{bg:"#808080",fg:"#ffffff"},metrics:{bg:"#a8a8a8",fg:"#000000"},version:{bg:"#666666",fg:"#ff87ff"}};var ge={dark:_e,"dark-ansi256":ke,"dark-ansi":Se,light:Te,"light-ansi256":xe,"light-ansi":ve,nord:Pe,"nord-ansi256":Ee,"nord-ansi":$e,"tokyo-night":Re,"tokyo-night-ansi256":De,"tokyo-night-ansi":Be,"rose-pine":Ae,"rose-pine-ansi256":Ue,"rose-pine-ansi":Me};function J(r,e){let t=ge[r];if(!t)return null;if(e==="none"||e==="ansi"){let n=ge[`${r}-ansi`];if(n)return n}if(e==="ansi256"){let n=ge[`${r}-ansi256`];if(n)return n}return t}var l=(r,...e)=>{process.env.CLAUDE_POWERLINE_DEBUG&&console.error(`[DEBUG] ${r}`,...e);};var k=promisify(exec),M=class{isGitRepo(e){try{return _.existsSync(w.join(e,".git"))}catch{return false}}async getGitInfo(e,t={},n){let o=n&&this.isGitRepo(n)?n:e;if(!this.isGitRepo(o))return null;try{let s=await this.getStatusWithBranchAsync(o),i=await this.getAheadBehindAsync(o),a={branch:s.branch||"detached",status:s.status,ahead:i.ahead,behind:i.behind};t.showWorkingTree&&s.workingTree&&(a.staged=s.workingTree.staged,a.unstaged=s.workingTree.unstaged,a.untracked=s.workingTree.untracked,a.conflicts=s.workingTree.conflicts);let c={},u={};t.showSha&&(c.sha=this.getShaAsync(o)),t.showTag&&(c.tag=this.getNearestTagAsync(o)),t.showTimeSinceCommit&&(c.timeSinceCommit=this.getTimeSinceLastCommitAsync(o)),t.showStashCount&&(u.stashCount=this.getStashCountAsync(o)),t.showUpstream&&(u.upstream=this.getUpstreamAsync(o)),t.showRepoName&&(u.repoName=this.getRepoNameAsync(o));let g=new Map;for(let[m,f]of Object.entries(c))try{let d=await f;g.set(m,d);}catch{}return Object.keys(u).length>0&&(await Promise.allSettled(Object.entries(u).map(async([f,d])=>({key:f,value:await d})))).forEach(f=>{f.status==="fulfilled"&&g.set(f.value.key,f.value.value);}),t.showSha&&(a.sha=g.get("sha")||void 0),t.showOperation&&(a.operation=this.getOngoingOperation(o)||void 0),t.showTag&&(a.tag=g.get("tag")||void 0),t.showTimeSinceCommit&&(a.timeSinceCommit=g.get("timeSinceCommit")||void 0),t.showStashCount&&(a.stashCount=g.get("stashCount")||0),t.showUpstream&&(a.upstream=g.get("upstream")||void 0),t.showRepoName&&(a.repoName=g.get("repoName")||void 0,a.isWorktree=this.isWorktree(o)),a}catch{return null}}async getShaAsync(e){try{return (await k("git rev-parse --short=7 HEAD",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim()||null}catch{return null}}getOngoingOperation(e){try{let t=w.join(e,".git");return _.existsSync(w.join(t,"MERGE_HEAD"))?"MERGE":_.existsSync(w.join(t,"CHERRY_PICK_HEAD"))?"CHERRY-PICK":_.existsSync(w.join(t,"REVERT_HEAD"))?"REVERT":_.existsSync(w.join(t,"BISECT_LOG"))?"BISECT":_.existsSync(w.join(t,"rebase-merge"))||_.existsSync(w.join(t,"rebase-apply"))?"REBASE":null}catch{return null}}async getNearestTagAsync(e){try{return (await k("git describe --tags --abbrev=0",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim()||null}catch{return null}}async getTimeSinceLastCommitAsync(e){try{let n=(await k("git log -1 --format=%ct",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();if(!n)return null;let o=parseInt(n)*1e3,s=Date.now();return Math.floor((s-o)/1e3)}catch{return null}}async getStashCountAsync(e){try{let n=(await k("git stash list",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();return n?n.split(`
3
+ `).length:0}catch{return 0}}async getUpstreamAsync(e){try{return (await k("git rev-parse --abbrev-ref @{u}",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim()||null}catch{return null}}async getRepoNameAsync(e){try{let n=(await k("git config --get remote.origin.url",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();return n?n.match(/\/([^/]+?)(\.git)?$/)?.[1]||w.basename(e):w.basename(e)}catch{return w.basename(e)}}isWorktree(e){try{let t=w.join(e,".git");return !!(_.existsSync(t)&&_.statSync(t).isFile())}catch{return false}}async getStatusWithBranchAsync(e){try{l(`[GIT-EXEC] Running git status in ${e}`);let o=(await k("git status --porcelain -b",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.split(`
4
+ `),s=null,i="clean",a=0,c=0,u=0,g=0;for(let m of o)if(m){if(m.startsWith("## ")){let d=m.substring(3).split("...")[0];d&&d!=="HEAD (no branch)"&&(s=d);continue}if(m.length>=2){let f=m.charAt(0),d=m.charAt(1);if(f==="?"&&d==="?"){u++,i==="clean"&&(i="dirty");continue}let h=f+d;if(["DD","AU","UD","UA","DU","AA","UU"].includes(h)){g++,i="conflicts";continue}f!==" "&&f!=="?"&&(a++,i==="clean"&&(i="dirty")),d!==" "&&d!=="?"&&(c++,i==="clean"&&(i="dirty"));}}return {branch:s||await this.getFallbackBranch(e),status:i,workingTree:{staged:a,unstaged:c,untracked:u,conflicts:g}}}catch(t){return l(`Git status with branch command failed in ${e}:`,t),{branch:await this.getFallbackBranch(e),status:"clean"}}}async getFallbackBranch(e){try{let n=(await k("git branch --show-current",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();if(n)return n}catch{try{let n=(await k("git symbolic-ref --short HEAD",{cwd:e,encoding:"utf8",timeout:2e3})).stdout.trim();if(n)return n}catch{return null}}return null}async getAheadBehindAsync(e){try{l(`[GIT-EXEC] Running git ahead/behind in ${e}`);let[t,n]=await Promise.all([k("git rev-list --count @{u}..HEAD",{cwd:e,encoding:"utf8",timeout:2e3}),k("git rev-list --count HEAD..@{u}",{cwd:e,encoding:"utf8",timeout:2e3})]);return {ahead:parseInt(t.stdout.trim())||0,behind:parseInt(n.stdout.trim())||0}}catch(t){return l(`Git ahead/behind command failed in ${e}:`,t),{ahead:0,behind:0}}}};var Ke=promisify(exec),F=class{async getSessionId(){try{if(!process.env.TMUX_PANE)return l("TMUX_PANE not set, not in tmux session"),null;l(`Getting tmux session ID, TMUX_PANE: ${process.env.TMUX_PANE}`);let t=(await Ke("tmux display-message -p '#S'",{encoding:"utf8",timeout:1e3})).stdout.trim();return l(`Tmux session ID: ${t||"empty"}`),t||null}catch(e){return l("Error getting tmux session ID:",e),null}}isInTmux(){return !!process.env.TMUX_PANE}};function Y(){let r=[],e=process.env.CLAUDE_CONFIG_DIR;if(e&&e.split(",").forEach(t=>{let n=t.trim();existsSync(n)&&r.push(n);}),r.length===0){let t=homedir(),n=join(t,".config","claude"),o=join(t,".claude");existsSync(n)?r.push(n):existsSync(o)&&r.push(o);}return r}async function q(r){let e=[];for(let t of r){let n=join(t,"projects");if(existsSync(n))try{let o=await readdir(n,{withFileTypes:!0});for(let s of o)if(s.isDirectory()){let i=posix.join(n,s.name);e.push(i);}}catch(o){l(`Failed to read projects directory ${n}:`,o);}}return e}async function z(r){let e=Y(),t=await q(e);for(let n of t){let o=posix.join(n,`${r}.jsonl`);if(existsSync(o))return o}return null}async function de(r){try{return (await stat(r)).mtime}catch{return null}}function nt(r){let e=r.message?.id||(typeof r.raw.message=="object"&&r.raw.message!==null&&"id"in r.raw.message?r.raw.message.id:void 0),t="requestId"in r.raw?r.raw.requestId:void 0;return !e||!t?null:`${e}:${t}`}var ot=1024*1024;async function L(r){try{let t=(await stat(r)).size,n;return t>ot?(l(`Using streaming parser for large file ${r} (${Math.round(t/1024)}KB)`),n=await st(r)):n=await rt(r),l(`Parsed ${n.length} entries from ${r}`),n}catch(e){return l(`Failed to read file ${r}:`,e),[]}}async function rt(r){let t=(await readFile(r,"utf-8")).trim().split(`
5
+ `).filter(o=>o.trim()),n=[];for(let o of t)try{let s=JSON.parse(o);if(!s.timestamp)continue;let i={timestamp:new Date(s.timestamp),message:s.message,costUSD:typeof s.costUSD=="number"?s.costUSD:void 0,isSidechain:s.isSidechain===!0,raw:s};n.push(i);}catch(s){l(`Failed to parse JSONL line: ${s}`);continue}return n}async function st(r){return new Promise((e,t)=>{let n=[],o=createReadStream(r,{encoding:"utf8"}),s=createInterface({input:o,crlfDelay:1/0});s.on("line",i=>{let a=i.trim();if(a)try{let c=JSON.parse(a);if(!c.timestamp)return;let u={timestamp:new Date(c.timestamp),message:c.message,costUSD:typeof c.costUSD=="number"?c.costUSD:void 0,isSidechain:c.isSidechain===!0,raw:c};n.push(u);}catch(c){l(`Failed to parse JSONL line: ${c}`);}}),s.on("close",()=>{e(n);}),s.on("error",i=>{l(`Streaming parser error for ${r}:`,i),t(i);}),o.on("error",i=>{l(`File stream error for ${r}:`,i),t(i);});})}async function X(r,e,t=false){let n=Y(),o=await q(n),s=new Set,i=o.map(async h=>{try{let T=(await readdir(h)).filter(B=>B.endsWith(".jsonl")).map(async B=>{let se=posix.join(h,B);if(existsSync(se)){let Ve=await de(se);return {filePath:se,mtime:Ve}}return null});return (await Promise.all(T)).filter(B=>B?.mtime&&(!e||e(B.filePath,B.mtime)))}catch(b){return l(`Failed to read project directory ${h}:`,b),[]}}),c=(await Promise.all(i)).flat().filter(h=>h!==null);t&&c.sort((h,b)=>b.mtime.getTime()-h.mtime.getTime());let u=c.map(h=>h.filePath),g=[],m=u.map(async h=>(await L(h)).filter(R=>!r||r(R))),f=await Promise.all(m);for(let h of f)g.push(...h);g.sort((h,b)=>h.timestamp.getTime()-b.timestamp.getTime());let d=[];for(let h of g){let b=nt(h);b&&s.has(b)||(b&&s.add(b),d.push(h));}return d}var P=class{static CACHE_DIR=w.join(homedir(),".claude","powerline");static USAGE_CACHE_DIR=w.join(this.CACHE_DIR,"usage");static LOCKS_DIR=w.join(this.CACHE_DIR,"locks");static isLocked(e){let t=w.join(this.LOCKS_DIR,e);if(!_.existsSync(t))return false;try{let n=_.readFileSync(t,"utf-8"),o=parseInt(n.trim(),10);if(isNaN(o))return l(`Invalid PID in lock file ${e}, removing stale lock`),_.unlinkSync(t),!1;try{return process.kill(o,0),!0}catch(s){return s.code==="ESRCH"?(l(`Removing stale lock file ${e} for dead process ${o}`),_.unlinkSync(t),!1):(l(`Error checking process ${o} for lock ${e}:`,s),!0)}}catch(n){return l(`Error reading lock file ${e}:`,n),true}}static async acquireLock(e,t=5e3){await this.ensureCacheDirectories();let s=w.join(this.LOCKS_DIR,e),i=Date.now(),a=String(process.pid);for(;Date.now()-i<t;)try{return await _.promises.writeFile(s,a,{flag:"wx"}),l(`Lock acquired for ${e}`),!0}catch(c){if(c.code==="EEXIST")await setTimeout(50);else throw c}return l(`Failed to acquire lock for ${e} within ${t}ms`),false}static async releaseLock(e){let t=w.join(this.LOCKS_DIR,e);try{await _.promises.unlink(t),l(`Lock released for ${e}`);}catch(n){n.code!=="ENOENT"&&l(`Error releasing lock for ${e}:`,n);}}static async ensureCacheDirectories(){try{await Promise.all([_.promises.mkdir(this.CACHE_DIR,{recursive:!0}),_.promises.mkdir(this.USAGE_CACHE_DIR,{recursive:!0}),_.promises.mkdir(this.LOCKS_DIR,{recursive:!0})]);}catch(e){l("Failed to create cache directories:",e);}}static createProjectHash(e){return createHash("md5").update(e).digest("hex").substring(0,8)}static async getUsageCache(e,t){let s="utf-8";await this.ensureCacheDirectories();let i=w.join(this.USAGE_CACHE_DIR,`${e}.json`),a=`${e}.usage.lock`;for(let c=0;c<3;c++){if(this.isLocked(a)){l(`Cache for ${e} is locked, waiting...`),await setTimeout(75);continue}try{let g=await _.promises.readFile(i,s),m=JSON.parse(g);return !t||m.timestamp>=t?(l(`[CACHE-HIT] ${e} disk cache: found`),this.deserializeDates(m.data)):(l(`${e} cache outdated: cache=${m.timestamp}, latest=${t}`),null)}catch(g){if(g.code==="ENOENT")return l(`No shared ${e} usage cache found`),null;let m=c+1;l(`Attempt ${m} failed to read ${e} cache: ${g.message}. Retrying...`),await setTimeout(75);}}return l(`Failed to read ${e} cache after 3 attempts.`),null}static deserializeDates(e){return Array.isArray(e)?e.map(t=>({...t,timestamp:new Date(t.timestamp)})):e}static async setUsageCache(e,t,n){let o=`${e}.usage.lock`;if(!await this.acquireLock(o)){l(`Could not acquire lock to set usage cache for ${e}`);return}try{await this.ensureCacheDirectories();let i=w.join(this.USAGE_CACHE_DIR,`${e}.json`),a=n||Date.now(),u=JSON.stringify({data:t,timestamp:a});await _.promises.writeFile(i,u,"utf-8"),l(`[CACHE-SET] ${e} disk cache stored`);}catch(i){l(`Failed to save ${e} usage cache:`,i);}finally{await this.releaseLock(o);}}static async getLatestTranscriptMtime(){try{let e=Y(),t=await q(e),n=0;for(let o of t)try{let i=(await _.promises.readdir(o)).filter(a=>a.endsWith(".jsonl"));for(let a of i){let c=w.join(o,a),u=await de(c);u&&u.getTime()>n&&(n=u.getTime());}}catch(s){l(`Failed to read project directory ${o}:`,s);continue}return n}catch(e){return l("Failed to get latest transcript mtime:",e),Date.now()}}};var K={"claude-3-haiku-20240307":{name:"Claude 3 Haiku",input:.25,output:1.25,cache_write_5m:.3,cache_write_1h:.5,cache_read:.03},"claude-3-5-haiku-20241022":{name:"Claude 3.5 Haiku",input:.8,output:4,cache_write_5m:1,cache_write_1h:1.6,cache_read:.08},"claude-3-5-haiku-latest":{name:"Claude 3.5 Haiku Latest",input:1,output:5,cache_write_5m:1.25,cache_write_1h:2,cache_read:.1},"claude-3-opus-latest":{name:"Claude 3 Opus Latest",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-3-opus-20240229":{name:"Claude 3 Opus",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-3-5-sonnet-latest":{name:"Claude 3.5 Sonnet Latest",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-5-sonnet-20240620":{name:"Claude 3.5 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-5-sonnet-20241022":{name:"Claude 3.5 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-opus-4-20250514":{name:"Claude Opus 4",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-opus-4-1":{name:"Claude Opus 4.1",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-opus-4-1-20250805":{name:"Claude Opus 4.1",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-sonnet-4-20250514":{name:"Claude Sonnet 4",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-4-opus-20250514":{name:"Claude 4 Opus",input:15,output:75,cache_write_5m:18.75,cache_write_1h:30,cache_read:1.5},"claude-4-sonnet-20250514":{name:"Claude 4 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-7-sonnet-latest":{name:"Claude 3.7 Sonnet Latest",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3},"claude-3-7-sonnet-20250219":{name:"Claude 3.7 Sonnet",input:3,output:15,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3}},E=class{static executionCache=null;static modelPricingCache=new Map;static GITHUB_PRICING_URL="https://raw.githubusercontent.com/Owloops/claude-powerline/main/pricing.json";static async loadDiskCache(){let t=Date.now()-864e5;return await P.getUsageCache("pricing",t)}static async saveDiskCache(e){await P.setUsageCache("pricing",e);}static async fetchPricingData(){return new Promise(e=>{let t=new URL(this.GITHUB_PRICING_URL),n=get({hostname:t.hostname,path:t.pathname,headers:{"User-Agent":"claude-powerline","Cache-Control":"no-cache"},timeout:5e3},o=>{if(o.statusCode!==200){l(`HTTP ${o.statusCode}: ${o.statusMessage}`),e(null);return}let s="",i=0,a=1024*1024;o.on("data",c=>{if(i+=c.length,i>a){l("Response too large"),n.destroy(),e(null);return}s+=c;}),o.on("end",()=>{try{let u=JSON.parse(s),g=u._meta,m={};for(let[f,d]of Object.entries(u))f!=="_meta"&&(m[f]=d);this.validatePricingData(m)?(l(`Fetched fresh pricing from GitHub for ${Object.keys(m).length} models`),l(`Pricing last updated: ${g?.updated||"unknown"}`),e(m)):(l("Invalid pricing data structure"),e(null));}catch(c){l("Failed to parse JSON:",c),e(null);}}),o.on("error",c=>{l("Response error:",c),e(null);});});n.on("error",o=>{l("Request error:",o),e(null);}),n.on("timeout",()=>{l("Request timeout"),n.destroy(),e(null);}),n.end();})}static async getCurrentPricing(){if(this.executionCache!==null)return l(`[CACHE-HIT] Pricing execution cache: ${Object.keys(this.executionCache).length} models`),this.executionCache;let e=await this.loadDiskCache();if(e)return l(`[CACHE-HIT] Pricing disk cache: ${Object.keys(e).length} models`),this.executionCache=e,l(`[CACHE-SET] Pricing execution cache stored: ${Object.keys(e).length} models`),e;let t=await this.fetchPricingData();return t?(await this.saveDiskCache(t),l(`[CACHE-SET] Pricing disk cache stored: ${Object.keys(t).length} models`),this.executionCache=t,l(`[CACHE-SET] Pricing execution cache stored: ${Object.keys(t).length} models`),t):(l(`[CACHE-FALLBACK] Using offline pricing data: ${Object.keys(K).length} models`),this.executionCache=K,l(`[CACHE-SET] Pricing execution cache stored: ${Object.keys(K).length} models`),K)}static validatePricingData(e){if(!e||typeof e!="object")return false;for(let[,t]of Object.entries(e)){if(!t||typeof t!="object")return false;let n=t;if(typeof n.input!="number"||typeof n.output!="number"||typeof n.cache_read!="number")return false}return true}static async getModelPricing(e){if(this.modelPricingCache.has(e))return l(`[CACHE-HIT] Model pricing cache: ${e}`),this.modelPricingCache.get(e);let t=await this.getCurrentPricing(),n;return t[e]?n=t[e]:n=this.fuzzyMatchModel(e,t),this.modelPricingCache.set(e,n),l(`[CACHE-SET] Model pricing cache: ${e}`),n}static fuzzyMatchModel(e,t){let n=e.toLowerCase();for(let[s,i]of Object.entries(t))if(s.toLowerCase()===n)return i;let o=[{pattern:["opus-4-1","claude-opus-4-1"],fallback:"claude-opus-4-1-20250805"},{pattern:["opus-4","claude-opus-4"],fallback:"claude-opus-4-20250514"},{pattern:["sonnet-4","claude-sonnet-4"],fallback:"claude-sonnet-4-20250514"},{pattern:["sonnet-3.7","3-7-sonnet"],fallback:"claude-3-7-sonnet-20250219"},{pattern:["3-5-sonnet","sonnet-3.5"],fallback:"claude-3-5-sonnet-20241022"},{pattern:["3-5-haiku","haiku-3.5"],fallback:"claude-3-5-haiku-20241022"},{pattern:["haiku","3-haiku"],fallback:"claude-3-haiku-20240307"},{pattern:["opus"],fallback:"claude-opus-4-20250514"},{pattern:["sonnet"],fallback:"claude-3-5-sonnet-20241022"}];for(let{pattern:s,fallback:i}of o)if(s.some(a=>n.includes(a))&&t[i])return t[i];return t["claude-3-5-sonnet-20241022"]||{name:`${e} (Unknown Model)`,input:3,cache_write_5m:3.75,cache_write_1h:6,cache_read:.3,output:15}}static async calculateCostForEntry(e){let n=e.message?.usage;if(!n)return 0;let o=this.extractModelId(e),s=await this.getModelPricing(o),i=n.input_tokens||0,a=n.output_tokens||0,c=n.cache_creation_input_tokens||0,u=n.cache_read_input_tokens||0,g=i/1e6*s.input,m=a/1e6*s.output,f=u/1e6*s.cache_read,d=c/1e6*s.cache_write_5m;return g+m+d+f}static extractModelId(e){if(e.model&&typeof e.model=="string")return e.model;let t=e.message;if(t?.model){let n=t.model;return typeof n=="string"?n:n?.id||"claude-3-5-sonnet-20241022"}return e.model_id&&typeof e.model_id=="string"?e.model_id:"claude-3-5-sonnet-20241022"}};function ut(r){return {timestamp:r.timestamp.toISOString(),message:{usage:{input_tokens:r.message?.usage?.input_tokens||0,output_tokens:r.message?.usage?.output_tokens||0,cache_creation_input_tokens:r.message?.usage?.cache_creation_input_tokens,cache_read_input_tokens:r.message?.usage?.cache_read_input_tokens}},costUSD:r.costUSD}}var Z=class{async getSessionUsage(e){try{let t=await z(e);if(!t)return l(`No transcript found for session: ${e}`),null;l(`Found transcript at: ${t}`);let n=await L(t);if(n.length===0)return {totalCost:0,entries:[]};let o=[],s=0;for(let i of n)if(i.message?.usage){let a=ut(i);if(a.costUSD!==void 0)s+=a.costUSD;else {let c=await E.calculateCostForEntry(i.raw);a.costUSD=c,s+=c;}o.push(a);}return l(`Parsed ${o.length} usage entries, total cost: $${s.toFixed(4)}`),{totalCost:s,entries:o}}catch(t){return l(`Error reading session usage for ${e}:`,t),null}}calculateTokenBreakdown(e){return e.reduce((t,n)=>({input:t.input+(n.message.usage.input_tokens||0),output:t.output+(n.message.usage.output_tokens||0),cacheCreation:t.cacheCreation+(n.message.usage.cache_creation_input_tokens||0),cacheRead:t.cacheRead+(n.message.usage.cache_read_input_tokens||0)}),{input:0,output:0,cacheCreation:0,cacheRead:0})}async getSessionInfo(e,t){let n=await this.getSessionUsage(e);if(!n||n.entries.length===0)return {cost:null,calculatedCost:null,officialCost:null,tokens:null,tokenBreakdown:null};let o=this.calculateTokenBreakdown(n.entries),s=o.input+o.output+o.cacheCreation+o.cacheRead,i=n.totalCost,a=t?.cost?.total_cost_usd??null;return {cost:i??a,calculatedCost:i,officialCost:a,tokens:s,tokenBreakdown:o}}},I=class{sessionProvider=new Z;async getUsageInfo(e,t){try{return l(`Starting usage info retrieval for session: ${e}`),{session:await this.sessionProvider.getSessionInfo(e,t)}}catch(n){return l(`Error getting usage info for session ${e}:`,n),{session:{cost:null,calculatedCost:null,officialCost:null,tokens:null,tokenBreakdown:null}}}}};var O=class{thresholds={LOW:50,MEDIUM:80};config;constructor(e){this.config=e;}getContextUsageThresholds(){return this.thresholds}getContextLimit(e){let t=this.config.modelContextLimits||{default:2e5},n=this.getModelType(e);return t[n]||t.default||2e5}getModelType(e){let t=e.toLowerCase();return t.includes("sonnet")?"sonnet":t.includes("opus")?"opus":"default"}async calculateContextTokens(e,t){try{l(`Calculating context tokens from transcript: ${e}`);try{if(!readFileSync(e,"utf-8"))return l("Transcript file is empty"),null}catch{return l("Could not read transcript file"),null}let n=await L(e);if(n.length===0)return l("No entries in transcript"),null;let o=null;for(let s=n.length-1;s>=0;s--){let i=n[s];if(i&&i.message?.usage?.input_tokens&&i.isSidechain!==!0){o=i,l(`Context segment: Found most recent entry at ${i.timestamp.toISOString()}, stopping search`);break}}if(o?.message?.usage){let s=o.message.usage,i=(s.input_tokens||0)+(s.cache_read_input_tokens||0)+(s.cache_creation_input_tokens||0),a=t?this.getContextLimit(t):2e5;l(`Most recent main chain context: ${i} tokens (limit: ${a})`);let c=Math.min(100,Math.max(0,Math.round(i/a*100))),u=Math.round(a*.75),g=Math.min(100,Math.max(0,Math.round(i/u*100))),m=Math.max(0,100-g);return {inputTokens:i,percentage:c,usablePercentage:g,contextLeftPercentage:m,maxTokens:a,usableTokens:u}}return l("No main chain entries with usage data found"),null}catch(n){return l(`Error reading transcript: ${n instanceof Error?n.message:String(n)}`),null}}};var j=class{async loadTranscriptEntries(e){try{let t=await z(e);if(!t)return l(`No transcript found for session: ${e}`),[];l(`Loading transcript from: ${t}`);let o=(await readFile(t,"utf-8")).trim().split(`
6
+ `).filter(i=>i.trim()),s=[];for(let i of o)try{let a=JSON.parse(i);if(a.isSidechain===!0)continue;s.push(a);}catch(a){l(`Failed to parse JSONL line: ${a}`);continue}return l(`Loaded ${s.length} transcript entries`),s}catch(t){return l(`Error loading transcript for ${e}:`,t),[]}}calculateMessageCount(e){return e.filter(t=>{let n=t.type||t.message?.role||t.message?.type,o=t.type==="user"&&t.message?.content?.[0]?.type==="tool_result";return n==="user"&&!o}).length}calculateLastResponseTime(e){if(e.length===0)return null;let t=e.slice(-20),n=null,o=null;for(let s of t)if(s.timestamp)try{let i=new Date(s.timestamp),a=s.type||s.message?.role||s.message?.type,c=s.type==="user"&&s.message?.content?.[0]?.type==="tool_result";if(a==="user"&&!c)n=i;else if(a==="assistant"&&n){let g=(i.getTime()-n.getTime())/1e3;g>.1&&g<300&&(o=g);}}catch{continue}return o}async getMetricsInfo(e,t){try{if(l(`Getting metrics from hook data for session: ${e}`),!t.cost)return l("No cost data available in hook data"),{responseTime:null,lastResponseTime:null,sessionDuration:null,messageCount:null,linesAdded:null,linesRemoved:null};let n=await this.loadTranscriptEntries(e),o=this.calculateMessageCount(n),s=this.calculateLastResponseTime(n);return {responseTime:t.cost.total_api_duration_ms/1e3,lastResponseTime:s,sessionDuration:t.cost.total_duration_ms/1e3,messageCount:o,linesAdded:t.cost.total_lines_added,linesRemoved:t.cost.total_lines_removed}}catch(n){return l(`Error getting metrics from hook data for session ${e}:`,n),{responseTime:null,lastResponseTime:null,sessionDuration:null,messageCount:null,linesAdded:null,linesRemoved:null}}}};function S(r){return r===null?"$0.00":r<.01?"<$0.01":`$${r.toFixed(2)}`}function C(r){return r===null||r===0?"0 tokens":r>=1e6?`${(r/1e6).toFixed(1)}M tokens`:r>=1e3?`${(r/1e3).toFixed(1)}K tokens`:`${r} tokens`}function pe(r){if(!r)return "0 tokens";let e=[];if(r.input>0&&e.push(`${C(r.input).replace(" tokens","")}in`),r.output>0&&e.push(`${C(r.output).replace(" tokens","")}out`),r.cacheCreation>0||r.cacheRead>0){let t=r.cacheCreation+r.cacheRead;e.push(`${C(t).replace(" tokens","")}cached`);}return e.length>0?e.join(" + "):"0 tokens"}function Ie(r){return r<60?`${r}s`:r<3600?`${Math.floor(r/60)}m`:r<86400?`${Math.floor(r/3600)}h`:r<604800?`${Math.floor(r/86400)}d`:`${Math.floor(r/604800)}w`}function Oe(r){return r<60?`${r.toFixed(0)}s`:r<3600?`${(r/60).toFixed(0)}m`:r<86400?`${(r/3600).toFixed(1)}h`:`${(r/86400).toFixed(1)}d`}function mt(r,e){return !e||e<=0||r<0?null:Math.min(100,r/e*100)}function be(r,e,t=80){let n=mt(r,e);if(n===null)return {percentage:null,isWarning:false,displayText:""};let o=`${n.toFixed(0)}%`,s=n>=t,i="";return s?i=` !${o}`:n>=50?i=` +${o}`:i=` ${o}`,{percentage:n,isWarning:s,displayText:i}}var N=class{constructor(e,t){this.config=e;this.symbols=t;}renderDirectory(e,t,n){let o=e.workspace?.current_dir||e.cwd||"/",s=e.workspace?.project_dir;if(n?.showBasename)return {text:w.basename(o)||"root",bgColor:t.modeBg,fgColor:t.modeFg};let i=process.env.HOME||process.env.USERPROFILE,a=o,c=s;return i&&(o.startsWith(i)&&(a=o.replace(i,"~")),s&&s.startsWith(i)&&(c=s.replace(i,"~"))),{text:this.getDisplayDirectoryName(a,c),bgColor:t.modeBg,fgColor:t.modeFg}}renderGit(e,t,n){if(!e)return null;let o=[];if(n?.showRepoName&&e.repoName&&(o.push(e.repoName),e.isWorktree&&o.push(this.symbols.git_worktree)),n?.showOperation&&e.operation&&o.push(`[${e.operation}]`),o.push(`${this.symbols.branch} ${e.branch}`),n?.showTag&&e.tag&&o.push(`${this.symbols.git_tag} ${e.tag}`),n?.showSha&&e.sha&&o.push(`${this.symbols.git_sha} ${e.sha}`),n?.showAheadBehind!==false&&(e.ahead>0&&e.behind>0?o.push(`${this.symbols.git_ahead}${e.ahead}${this.symbols.git_behind}${e.behind}`):e.ahead>0?o.push(`${this.symbols.git_ahead}${e.ahead}`):e.behind>0&&o.push(`${this.symbols.git_behind}${e.behind}`)),n?.showWorkingTree){let i=[];e.staged&&e.staged>0&&i.push(`+${e.staged}`),e.unstaged&&e.unstaged>0&&i.push(`~${e.unstaged}`),e.untracked&&e.untracked>0&&i.push(`?${e.untracked}`),e.conflicts&&e.conflicts>0&&i.push(`!${e.conflicts}`),i.length>0&&o.push(`(${i.join(" ")})`);}if(n?.showUpstream&&e.upstream&&o.push(`${this.symbols.git_upstream}${e.upstream}`),n?.showStashCount&&e.stashCount&&e.stashCount>0&&o.push(`${this.symbols.git_stash} ${e.stashCount}`),n?.showTimeSinceCommit&&e.timeSinceCommit!==void 0){let i=Ie(e.timeSinceCommit);o.push(`${this.symbols.git_time} ${i}`);}let s=this.symbols.git_clean;return e.status==="conflicts"?s=this.symbols.git_conflicts:e.status==="dirty"&&(s=this.symbols.git_dirty),o.push(s),{text:o.join(" "),bgColor:t.gitBg,fgColor:t.gitFg}}renderModel(e,t){let n=e.model?.display_name||"Claude";return {text:`${this.symbols.model} ${n}`,bgColor:t.modelBg,fgColor:t.modelFg}}renderSession(e,t,n){let o=n?.type||"cost",s=n?.costSource,i=this.config.budget?.session,a=s?this.formatSessionUsageDisplay(e.session,o,s):this.formatUsageWithBudget(e.session.cost,e.session.tokens,e.session.tokenBreakdown,o,i?.amount,i?.warningThreshold||80,i?.type);return {text:`${this.symbols.session_cost} ${a}`,bgColor:t.sessionBg,fgColor:t.sessionFg}}renderTmux(e,t){return e?{text:`tmux:${e}`,bgColor:t.tmuxBg,fgColor:t.tmuxFg}:{text:"tmux:none",bgColor:t.tmuxBg,fgColor:t.tmuxFg}}renderContext(e,t,n){if(!e)return {text:`${this.symbols.context_time} 0 (100%)`,bgColor:t.contextBg,fgColor:t.contextFg};let o=`${e.contextLeftPercentage}%`;return {text:n?.showPercentageOnly?`${this.symbols.context_time} ${o}`:`${this.symbols.context_time} ${e.inputTokens.toLocaleString()} (${o})`,bgColor:t.contextBg,fgColor:t.contextFg}}renderMetrics(e,t,n,o){if(!e)return {text:`${this.symbols.metrics_response} new`,bgColor:t.metricsBg,fgColor:t.metricsFg};let s=[];if(o?.showLastResponseTime&&e.lastResponseTime!==null){let i=e.lastResponseTime<60?`${e.lastResponseTime.toFixed(1)}s`:`${(e.lastResponseTime/60).toFixed(1)}m`;s.push(`${this.symbols.metrics_last_response} ${i}`);}if(o?.showResponseTime!==false&&e.responseTime!==null){let i=e.responseTime<60?`${e.responseTime.toFixed(1)}s`:`${(e.responseTime/60).toFixed(1)}m`;s.push(`${this.symbols.metrics_response} ${i}`);}if(o?.showDuration!==false&&e.sessionDuration!==null){let i=Oe(e.sessionDuration);s.push(`${this.symbols.metrics_duration} ${i}`);}return o?.showMessageCount!==false&&e.messageCount!==null&&s.push(`${this.symbols.metrics_messages} ${e.messageCount}`),o?.showLinesAdded!==false&&e.linesAdded!==null&&e.linesAdded>0&&s.push(`${this.symbols.metrics_lines_added} ${e.linesAdded}`),o?.showLinesRemoved!==false&&e.linesRemoved!==null&&e.linesRemoved>0&&s.push(`${this.symbols.metrics_lines_removed} ${e.linesRemoved}`),s.length===0?{text:`${this.symbols.metrics_response} active`,bgColor:t.metricsBg,fgColor:t.metricsFg}:{text:s.join(" "),bgColor:t.metricsBg,fgColor:t.metricsFg}}renderBlock(e,t,n){let o;if(e.cost===null&&e.tokens===null)o="No active block";else {let s=n?.type||"cost",i=n?.burnType,a=this.config.budget?.block,c=e.timeRemaining!==null?(()=>{let m=Math.floor(e.timeRemaining/60),f=e.timeRemaining%60;return m>0?`${m}h ${f}m`:`${f}m`})():null,u;switch(s){case "cost":a?.amount&&a?.type==="cost"?u=this.formatUsageWithBudget(e.cost,null,null,"cost",a.amount,a.warningThreshold,a.type):u=S(e.cost);break;case "tokens":a?.amount&&a?.type==="tokens"?u=this.formatUsageWithBudget(null,e.tokens,null,"tokens",a.amount,a.warningThreshold,a.type):u=C(e.tokens);break;case "weighted":let m=a?.type==="tokens"?a.amount:void 0,f=C(e.weightedTokens);if(m&&e.weightedTokens!==null){let d=be(e.weightedTokens,m,a?.warningThreshold||80);u=`${f}${d.displayText}`;}else u=`${f} (weighted)`;break;case "both":a?.amount?u=this.formatUsageWithBudget(e.cost,e.tokens,null,"both",a.amount,a.warningThreshold,a.type):u=`${S(e.cost)} / ${C(e.tokens)}`;break;case "time":u=c||"N/A";break;default:a?.amount&&a?.type==="cost"?u=this.formatUsageWithBudget(e.cost,null,null,"cost",a.amount,a.warningThreshold,a.type):u=S(e.cost);}let g="";if(i&&i!=="none")switch(i){case "cost":g=` | ${e.burnRate!==null?e.burnRate<1?`${(e.burnRate*100).toFixed(0)}\xA2/h`:`$${e.burnRate.toFixed(2)}/h`:"N/A"}`;break;case "tokens":g=` | ${e.tokenBurnRate!==null?`${C(Math.round(e.tokenBurnRate))}/h`:"N/A"}`;break;case "both":let d=e.burnRate!==null?e.burnRate<1?`${(e.burnRate*100).toFixed(0)}\xA2/h`:`$${e.burnRate.toFixed(2)}/h`:"N/A",h=e.tokenBurnRate!==null?`${C(Math.round(e.tokenBurnRate))}/h`:"N/A";g=` | ${d} / ${h}`;break}s==="time"?o=u:o=c?`${u}${g} (${c} left)`:`${u}${g}`;}return {text:`${this.symbols.block_cost} ${o}`,bgColor:t.blockBg,fgColor:t.blockFg}}renderToday(e,t,n="cost"){let o=this.config.budget?.today;return {text:`${this.symbols.today_cost} ${this.formatUsageWithBudget(e.cost,e.tokens,e.tokenBreakdown,n,o?.amount,o?.warningThreshold,o?.type)}`,bgColor:t.todayBg,fgColor:t.todayFg}}getDisplayDirectoryName(e,t){return e.startsWith("~")?e:t&&t!==e?e.startsWith(t)?e.slice(t.length+1)||w.basename(t)||"project":w.basename(e)||"root":w.basename(e)||"root"}formatUsageDisplay(e,t,n,o){switch(o){case "cost":return S(e);case "tokens":return C(t);case "both":return `${S(e)} (${C(t)})`;case "breakdown":return pe(n);default:return S(e)}}formatSessionUsageDisplay(e,t,n){let o=()=>n==="calculated"?e.calculatedCost:n==="official"?e.officialCost:e.cost;switch(t){case "cost":return S(o());case "tokens":return C(e.tokens);case "both":return `${S(o())} (${C(e.tokens)})`;case "breakdown":return pe(e.tokenBreakdown);default:return S(o())}}formatUsageWithBudget(e,t,n,o,s,i=80,a){let c=this.formatUsageDisplay(e,t,n,o);if(s&&s>0){let u=null;if(a==="tokens"&&t!==null?u=t:(a==="cost"&&e!==null||!a&&e!==null)&&(u=e),u!==null){let g=be(u,s,i);return c+g.displayText}}return c}renderVersion(e,t,n){return e.version?{text:`${this.symbols.version} v${e.version}`,bgColor:t.versionBg,fgColor:t.versionFg}:null}};function dt(r){return r.includes("opus")?5:(r.includes("sonnet")||r.includes("haiku"),1)}function ht(r){return {timestamp:r.timestamp,usage:{inputTokens:r.message?.usage?.input_tokens||0,outputTokens:r.message?.usage?.output_tokens||0,cacheCreationInputTokens:r.message?.usage?.cache_creation_input_tokens||0,cacheReadInputTokens:r.message?.usage?.cache_read_input_tokens||0},costUSD:r.costUSD||0,model:r.message?.model||"unknown"}}var ee=class{sessionDurationHours=5;floorToHour(e){let t=new Date(e);return t.setUTCMinutes(0,0,0),t}identifySessionBlocks(e){if(e.length===0)return [];let t=this.sessionDurationHours*60*60*1e3,n=[],o=[...e].sort((a,c)=>a.timestamp.getTime()-c.timestamp.getTime()),s=null,i=[];for(let a of o){let c=a.timestamp;if(s==null)s=this.floorToHour(c),i=[a];else {let u=c.getTime()-s.getTime(),g=i[i.length-1];if(g==null)continue;let m=g.timestamp,f=c.getTime()-m.getTime();u>t||f>t?(n.push(i),s=this.floorToHour(c),i=[a]):i.push(a);}}return s!=null&&i.length>0&&n.push(i),n}createBlockInfo(e,t){let n=new Date,o=this.sessionDurationHours*60*60*1e3,s=new Date(e.getTime()+o),i=t[t.length-1],a=i!=null?i.timestamp:e,c=n.getTime()-a.getTime()<o&&n<s;return {block:t,isActive:c}}findActiveBlock(e){for(let t=e.length-1;t>=0;t--){let n=e[t];if(!n||n.length===0)continue;let o=n[0];if(!o)continue;let s=this.floorToHour(o.timestamp),i=this.createBlockInfo(s,n);if(i.isActive)return i.block}return null}async loadUsageEntries(){try{l("Block segment: Loading entries for dynamic session blocks");let e=new Date;e.setDate(e.getDate()-1);let n=await X(void 0,(c,u)=>u>=e,!0),o=[];for(let c of n)if(c.message?.usage){let u=ht(c);!u.costUSD&&c.raw&&(u.costUSD=await E.calculateCostForEntry(c.raw)),o.push(u);}let s=this.identifySessionBlocks(o);l(`Block segment: Found ${s.length} session blocks`);let i=this.findActiveBlock(s),a=[];if(i&&i.length>0){l(`Block segment: Found active block with ${i.length} entries`);let c=i[0],u=i[i.length-1];c&&u&&l(`Block segment: Active block from ${c.timestamp.toISOString()} to ${u.timestamp.toISOString()}`),a=i;}else l("Block segment: No active block found"),a=[];return a}catch(e){return l("Error loading block entries:",e),[]}}async getActiveBlockInfo(){try{let e=await this.loadUsageEntries();if(e.length===0)return l("Block segment: No entries in current block"),{cost:null,tokens:null,weightedTokens:null,timeRemaining:null,burnRate:null,tokenBurnRate:null};let t=e.reduce((u,g)=>u+g.costUSD,0),n=e.reduce((u,g)=>u+g.usage.inputTokens+g.usage.outputTokens+g.usage.cacheCreationInputTokens+g.usage.cacheReadInputTokens,0),o=e.reduce((u,g)=>{let m=g.usage.inputTokens+g.usage.outputTokens+g.usage.cacheCreationInputTokens+g.usage.cacheReadInputTokens,f=dt(g.model);return u+m*f},0),s=new Date,i=null;if(e.length>0){let u=e[0];if(u){let g=this.sessionDurationHours*60*60*1e3,m=this.floorToHour(u.timestamp),f=new Date(m.getTime()+g);i=Math.max(0,Math.round((f.getTime()-s.getTime())/(1e3*60)));}}let a=null,c=null;if(e.length>=1&&(t>0||n>0)){let u=e.map(f=>f.timestamp).sort((f,d)=>f.getTime()-d.getTime()),g=u[0],m=u[u.length-1];if(g&&m){let f=(m.getTime()-g.getTime())/6e4;f>0&&(t>0&&(a=t/f*60),n>0&&(c=n/f*60));}}return l(`Block segment: $${t.toFixed(2)}, ${n} tokens, ${i}m remaining, burn rate: ${a?"$"+a.toFixed(2)+"/hr":"N/A"}`),{cost:t,tokens:n,weightedTokens:o,timeRemaining:i,burnRate:a,tokenBurnRate:c}}catch(e){return l("Error getting active block info:",e),{cost:null,tokens:null,weightedTokens:null,timeRemaining:null,burnRate:null,tokenBurnRate:null}}}};function H(r){let e=r.getFullYear(),t=String(r.getMonth()+1).padStart(2,"0"),n=String(r.getDate()).padStart(2,"0");return `${e}-${t}-${n}`}function pt(r){return r.inputTokens+r.outputTokens+r.cacheCreationInputTokens+r.cacheReadInputTokens}function bt(r){return {timestamp:r.timestamp,usage:{inputTokens:r.message?.usage?.input_tokens||0,outputTokens:r.message?.usage?.output_tokens||0,cacheCreationInputTokens:r.message?.usage?.cache_creation_input_tokens||0,cacheReadInputTokens:r.message?.usage?.cache_read_input_tokens||0},costUSD:r.costUSD||0,model:r.message?.model||"unknown"}}var te=class{async loadTodayEntries(){let t=H(new Date);l(`Today segment: Loading entries for date ${t}`);let n=await P.getLatestTranscriptMtime(),o=await P.getUsageCache("today",n);if(o)return l("Using shared today usage cache"),o;let s=new Date;s.setDate(s.getDate()-1),s.setHours(0,0,0,0);let i=(f,d)=>d>=s,a=new Date;a.setHours(0,0,0,0);let u=await X(f=>f.timestamp>=a,i,true),g=[],m=0;for(let f of u)if(H(f.timestamp)===t&&f.message?.usage){let h=bt(f);!h.costUSD&&f.raw&&(h.costUSD=await E.calculateCostForEntry(f.raw)),g.push(h),m++;}return l(`Today segment: Found ${m} entries for today (${t})`),await P.setUsageCache("today",g,n),g}async getTodayEntries(){try{return await this.loadTodayEntries()}catch(e){return l("Error loading today's entries:",e),[]}}async getTodayInfo(){try{let e=await this.getTodayEntries();if(e.length===0)return {cost:null,tokens:null,tokenBreakdown:null,date:H(new Date)};let t=e.reduce((s,i)=>s+i.costUSD,0),n=e.reduce((s,i)=>s+pt(i.usage),0),o=e.reduce((s,i)=>({input:s.input+i.usage.inputTokens,output:s.output+i.usage.outputTokens,cacheCreation:s.cacheCreation+i.usage.cacheCreationInputTokens,cacheRead:s.cacheRead+i.usage.cacheReadInputTokens}),{input:0,output:0,cacheCreation:0,cacheRead:0});return l(`Today segment: $${t.toFixed(2)}, ${n} tokens total`),{cost:t,tokens:n,tokenBreakdown:o,date:H(new Date)}}catch(e){return l("Error getting today's info:",e),{cost:null,tokens:null,tokenBreakdown:null,date:H(new Date)}}}};var G="\x1B[0m",p={right:"\uE0B0",branch:"\u2387",model:"\u26A1",git_clean:"\u2713",git_dirty:"\u25CF",git_conflicts:"\u26A0",git_ahead:"\u2191",git_behind:"\u2193",git_worktree:"\u29C9",git_tag:"\u2302",git_sha:"\u266F",git_upstream:"\u2192",git_stash:"\u29C7",git_time:"\u25F7",session_cost:"\xA7",block_cost:"\u25F1",today_cost:"\u2609",context_time:"\u25D4",metrics_response:"\u29D6",metrics_last_response:"\u0394",metrics_duration:"\u29D7",metrics_messages:"\u27D0",metrics_lines_added:"+",metrics_lines_removed:"-",metrics_burn:"\u27E2",version:"\u25C8"};var ne=class{constructor(e){this.config=e;this.symbols=this.initializeSymbols();}symbols;_usageProvider;_blockProvider;_todayProvider;_contextProvider;_gitService;_tmuxService;_metricsProvider;_segmentRenderer;get usageProvider(){return this._usageProvider||(this._usageProvider=new I),this._usageProvider}get blockProvider(){return this._blockProvider||(this._blockProvider=new ee),this._blockProvider}get todayProvider(){return this._todayProvider||(this._todayProvider=new te),this._todayProvider}get contextProvider(){return this._contextProvider||(this._contextProvider=new O(this.config)),this._contextProvider}get gitService(){return this._gitService||(this._gitService=new M),this._gitService}get tmuxService(){return this._tmuxService||(this._tmuxService=new F),this._tmuxService}get metricsProvider(){return this._metricsProvider||(this._metricsProvider=new j),this._metricsProvider}get segmentRenderer(){return this._segmentRenderer||(this._segmentRenderer=new N(this.config,this.symbols)),this._segmentRenderer}needsSegmentInfo(e){return this.config.display.lines.some(t=>t.segments[e]?.enabled)}async generateStatusline(e){let t=this.needsSegmentInfo("session")?await this.usageProvider.getUsageInfo(e.session_id,e):null,n=this.needsSegmentInfo("block")?await this.blockProvider.getActiveBlockInfo():null,o=this.needsSegmentInfo("today")?await this.todayProvider.getTodayInfo():null,s=this.needsSegmentInfo("context")?await this.contextProvider.calculateContextTokens(e.transcript_path,e.model?.id):null,i=this.needsSegmentInfo("metrics")?await this.metricsProvider.getMetricsInfo(e.session_id,e):null;return (await Promise.all(this.config.display.lines.map(c=>this.renderLine(c,e,t,n,o,s,i)))).filter(c=>c.length>0).join(`
7
+ `)}async renderLine(e,t,n,o,s,i,a){let c=this.getThemeColors(),u=t.workspace?.current_dir||t.cwd||"/",g=Object.entries(e.segments).filter(([f,d])=>d?.enabled).map(([f,d])=>({type:f,config:d})),m=c.reset;for(let f=0;f<g.length;f++){let d=g[f];if(!d)continue;let h=f===g.length-1,b=h?null:g[f+1],R=b?this.getSegmentBgColor(b.type,c):"",T=await this.renderSegment(d,t,n,o,s,i,a,c,u);T&&(m+=this.formatSegment(T.bgColor,T.fgColor,T.text,h?void 0:R));}return m}async renderSegment(e,t,n,o,s,i,a,c,u){return e.type==="directory"?this.segmentRenderer.renderDirectory(t,c,e.config):e.type==="model"?this.segmentRenderer.renderModel(t,c):e.type==="git"?await this.renderGitSegment(e.config,t,c,u):e.type==="session"?this.renderSessionSegment(e.config,n,c):e.type==="tmux"?await this.renderTmuxSegment(c):e.type==="context"?this.renderContextSegment(e.config,i,c):e.type==="metrics"?this.renderMetricsSegment(e.config,a,o,c):e.type==="block"?this.renderBlockSegment(e.config,o,c):e.type==="today"?this.renderTodaySegment(e.config,s,c):e.type==="version"?this.renderVersionSegment(e.config,t,c):null}async renderGitSegment(e,t,n,o){if(!this.needsSegmentInfo("git"))return null;let s=await this.gitService.getGitInfo(o,{showSha:e?.showSha,showWorkingTree:e?.showWorkingTree,showOperation:e?.showOperation,showTag:e?.showTag,showTimeSinceCommit:e?.showTimeSinceCommit,showStashCount:e?.showStashCount,showUpstream:e?.showUpstream,showRepoName:e?.showRepoName},t.workspace?.project_dir);return s?this.segmentRenderer.renderGit(s,n,e):null}renderSessionSegment(e,t,n){return t?this.segmentRenderer.renderSession(t,n,e):null}async renderTmuxSegment(e){if(!this.needsSegmentInfo("tmux"))return null;let t=await this.tmuxService.getSessionId();return this.segmentRenderer.renderTmux(t,e)}renderContextSegment(e,t,n){return this.needsSegmentInfo("context")?this.segmentRenderer.renderContext(t,n,e):null}renderMetricsSegment(e,t,n,o){return this.segmentRenderer.renderMetrics(t,o,n,e)}renderBlockSegment(e,t,n){return t?this.segmentRenderer.renderBlock(t,n,e):null}renderTodaySegment(e,t,n){if(!t)return null;let o=e?.type||"cost";return this.segmentRenderer.renderToday(t,n,o)}renderVersionSegment(e,t,n){return this.segmentRenderer.renderVersion(t,n,e)}initializeSymbols(){return {right:this.config.display.style==="minimal"?"":p.right,branch:p.branch,model:p.model,git_clean:p.git_clean,git_dirty:p.git_dirty,git_conflicts:p.git_conflicts,git_ahead:p.git_ahead,git_behind:p.git_behind,git_worktree:p.git_worktree,git_tag:p.git_tag,git_sha:p.git_sha,git_upstream:p.git_upstream,git_stash:p.git_stash,git_time:p.git_time,session_cost:p.session_cost,block_cost:p.block_cost,today_cost:p.today_cost,context_time:p.context_time,metrics_response:p.metrics_response,metrics_last_response:p.metrics_last_response,metrics_duration:p.metrics_duration,metrics_messages:p.metrics_messages,metrics_lines_added:p.metrics_lines_added,metrics_lines_removed:p.metrics_lines_removed,metrics_burn:p.metrics_burn,version:p.version}}getThemeColors(){let e=this.config.theme,t,n=this.config.display.colorCompatibility||"auto",o=n==="auto"?ce():n;if(e==="custom"){if(t=this.config.colors?.custom,!t)throw new Error("Custom theme selected but no colors provided in configuration")}else t=J(e,o),t||(console.warn(`Built-in theme '${e}' not found, falling back to 'dark' theme`),t=J("dark",o));let s=J("dark",o),i=T=>{let D=t[T]||s[T];return o==="ansi"?{bg:ue(D.bg,true),fg:ue(D.fg,false)}:o==="ansi256"?{bg:le(D.bg,true),fg:le(D.fg,false)}:{bg:ie(D.bg,true),fg:ie(D.fg,false)}},a=i("directory"),c=i("git"),u=i("model"),g=i("session"),m=i("block"),f=i("today"),d=i("tmux"),h=i("context"),b=i("metrics"),R=i("version");return {reset:G,modeBg:a.bg,modeFg:a.fg,gitBg:c.bg,gitFg:c.fg,modelBg:u.bg,modelFg:u.fg,sessionBg:g.bg,sessionFg:g.fg,blockBg:m.bg,blockFg:m.fg,todayBg:f.bg,todayFg:f.fg,tmuxBg:d.bg,tmuxFg:d.fg,contextBg:h.bg,contextFg:h.fg,metricsBg:b.bg,metricsFg:b.fg,versionBg:R.bg,versionFg:R.fg}}getSegmentBgColor(e,t){switch(e){case "directory":return t.modeBg;case "git":return t.gitBg;case "model":return t.modelBg;case "session":return t.sessionBg;case "block":return t.blockBg;case "today":return t.todayBg;case "tmux":return t.tmuxBg;case "context":return t.contextBg;case "metrics":return t.metricsBg;case "version":return t.versionBg;default:return t.modeBg}}formatSegment(e,t,n,o){let s=`${e}${t} ${n} `,i=this.config.display.colorCompatibility||"auto",c=(i==="auto"?ce():i)==="ansi";if(o){let u=ae(e,c);s+=`${G}${o}${u}${this.symbols.right}`;}else s+=`${G}${ae(e,c)}${this.symbols.right}${G}`;return s}};var je={theme:"dark",display:{style:"minimal",colorCompatibility:"auto",lines:[{segments:{directory:{enabled:true,showBasename:true},git:{enabled:true,showSha:false,showWorkingTree:false,showOperation:false,showTag:false,showTimeSinceCommit:false,showStashCount:false,showUpstream:false,showRepoName:false},model:{enabled:true},session:{enabled:true,type:"tokens",costSource:"calculated"},today:{enabled:true,type:"cost"},block:{enabled:false,type:"cost",burnType:"cost"},version:{enabled:false},tmux:{enabled:false},context:{enabled:true,showPercentageOnly:false},metrics:{enabled:false,showResponseTime:true,showLastResponseTime:true,showDuration:true,showMessageCount:true,showLinesAdded:true,showLinesRemoved:true}}}]},budget:{session:{warningThreshold:80},today:{warningThreshold:80,amount:50},block:{warningThreshold:80,amount:15}},modelContextLimits:{default:2e5,sonnet:2e5,opus:2e5}};function Ce(r){return ["light","dark","nord","tokyo-night","rose-pine","custom"].includes(r)}function we(r){return r==="minimal"||r==="powerline"}function re(r,e){let t={...r};for(let n in e){let o=e[n];if(o!==void 0)if(typeof o=="object"&&o!==null&&!Array.isArray(o)){let s=t[n]||{};t[n]=re(s,o);}else t[n]=o;}return t}function yt(r,e){return r?_.existsSync(r)?r:null:[...e?[w.join(e,".claude-powerline.json")]:[],w.join(process.cwd(),".claude-powerline.json"),w.join(U.homedir(),".claude","claude-powerline.json"),w.join(U.homedir(),".config","claude-powerline","config.json")].find(_.existsSync)||null}function Ct(r){try{let e=_.readFileSync(r,"utf-8");return JSON.parse(e)}catch(e){throw new Error(`Failed to load config file ${r}: ${e instanceof Error?e.message:String(e)}`)}}function wt(){let r={},e={},t=process.env.CLAUDE_POWERLINE_THEME;t&&Ce(t)&&(r.theme=t);let n=process.env.CLAUDE_POWERLINE_STYLE;return n&&(we(n)?e.style=n:(console.warn(`Invalid display style '${n}' from environment variable, falling back to 'minimal'`),e.style="minimal")),Object.keys(e).length>0&&(r.display=e),r}function _t(){return process.env.CLAUDE_POWERLINE_CONFIG}function kt(r){let e={},t={},n=r.find(s=>s.startsWith("--theme="))?.split("=")[1];n&&Ce(n)&&(e.theme=n);let o=r.find(s=>s.startsWith("--style="))?.split("=")[1];return o&&(we(o)?t.style=o:(console.warn(`Invalid display style '${o}' from CLI argument, falling back to 'minimal'`),t.style="minimal")),Object.keys(t).length>0&&(e.display=t),e}function St(r=process.argv,e){let t=JSON.parse(JSON.stringify(je)),n=r.find(a=>a.startsWith("--config="))?.split("=")[1]||_t(),o=yt(n,e);if(o)try{let a=Ct(o);t=re(t,a);}catch(a){console.warn(`Warning: ${a instanceof Error?a.message:String(a)}`);}t.display?.style&&!we(t.display.style)&&(console.warn(`Invalid display style '${t.display.style}' in config file, falling back to 'minimal'`),t.display.style="minimal"),t.theme&&!Ce(t.theme)&&(console.warn(`Invalid theme '${t.theme}' in config file, falling back to 'dark'`),t.theme="dark");let s=wt();t=re(t,s);let i=kt(r);return t=re(t,i),t}var He=St;async function xt(){try{let r=U.platform(),e;if(r==="darwin")e=w.join(U.homedir(),"Library","Fonts");else if(r==="linux")e=w.join(U.homedir(),".local","share","fonts");else if(r==="win32")e=w.join(U.homedir(),"AppData","Local","Microsoft","Windows","Fonts");else {console.log("Unsupported platform for font installation");return}_.existsSync(e)||_.mkdirSync(e,{recursive:!0}),console.log("Installing Powerline Fonts..."),console.log("Downloading from https://github.com/powerline/fonts");let t=w.join(U.tmpdir(),"powerline-fonts"),n=()=>{_.existsSync(t)&&_.rmSync(t,{recursive:!0,force:!0});};y.on("SIGINT",n),y.on("SIGTERM",n);try{_.existsSync(t)&&_.rmSync(t,{recursive:!0,force:!0}),console.log("Cloning powerline fonts repository..."),execSync("git clone --depth=1 https://github.com/powerline/fonts.git powerline-fonts",{stdio:"inherit",cwd:U.tmpdir()}),console.log("Installing fonts...");let o=w.join(t,"install.sh");if(_.existsSync(o))_.chmodSync(o,493),execSync("./install.sh",{stdio:"inherit",cwd:t});else throw new Error("Install script not found in powerline fonts repository");console.log("Powerline fonts installation complete!"),console.log("Please restart your terminal and set your terminal font to a powerline font."),console.log("Popular choices: Source Code Pro Powerline, DejaVu Sans Mono Powerline, Ubuntu Mono Powerline");}finally{n(),y.removeListener("SIGINT",n),y.removeListener("SIGTERM",n);}}catch(r){console.error("Error installing fonts:",r instanceof Error?r.message:String(r)),console.log("You can manually install fonts from: https://github.com/powerline/fonts");}}function We(){console.log(`
8
8
  claude-powerline - Beautiful powerline statusline for Claude Code
9
9
 
10
10
  Usage: claude-powerline [options]
@@ -23,7 +23,7 @@ Claude Code Options (for settings.json):
23
23
 
24
24
  See example config at: https://github.com/Owloops/claude-powerline/blob/main/.claude-powerline.json
25
25
 
26
- `);}async function vt(){try{let o=y.argv.includes("--help")||y.argv.includes("-h");y.argv.includes("--install-fonts")&&(await xt(),y.exit(0)),o&&(We(),y.exit(0)),y.stdin.isTTY===!0&&(console.error(`Error: This tool requires input from Claude Code
26
+ `);}async function vt(){try{let r=y.argv.includes("--help")||y.argv.includes("-h");y.argv.includes("--install-fonts")&&(await xt(),y.exit(0)),r&&(We(),y.exit(0)),y.stdin.isTTY===!0&&(console.error(`Error: This tool requires input from Claude Code
27
27
 
28
28
  claude-powerline is designed to be used as a Claude Code statusLine command.
29
29
  It reads hook data from stdin and outputs formatted statusline.
@@ -39,4 +39,4 @@ Add to ~/.claude/settings.json:
39
39
  Run with --help for more options.
40
40
 
41
41
  To test output manually:
42
- echo '{"session_id":"test-session","workspace":{"project_dir":"/path/to/project"},"model":{"id":"claude-3-5-sonnet","display_name":"Claude"}}' | claude-powerline --style=powerline`),y.exit(1)),l(`Working directory: ${y.cwd()}`),l("Process args:",y.argv);let t=await json(y.stdin);l("Received hook data:",JSON.stringify(t,null,2)),t||(console.error("Error: No input data received from stdin"),We(),y.exit(1));let n=t.workspace?.project_dir,r=He(y.argv,n),i=await new ne(r).generateStatusline(t);console.log(i);}catch(o){let e=o instanceof Error?o.message:String(o);console.error("Error generating statusline:",e),y.exit(1);}}vt();
42
+ echo '{"session_id":"test-session","workspace":{"project_dir":"/path/to/project"},"model":{"id":"claude-3-5-sonnet","display_name":"Claude"}}' | claude-powerline --style=powerline`),y.exit(1)),l(`Working directory: ${y.cwd()}`),l("Process args:",y.argv);let t=await json(y.stdin);l("Received hook data:",JSON.stringify(t,null,2)),t||(console.error("Error: No input data received from stdin"),We(),y.exit(1));let n=t.workspace?.project_dir,o=He(y.argv,n),i=await new ne(o).generateStatusline(t);console.log(i);}catch(r){let e=r instanceof Error?r.message:String(r);console.error("Error generating statusline:",e),y.exit(1);}}vt();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owloops/claude-powerline",
3
- "version": "1.9.5",
3
+ "version": "1.9.7",
4
4
  "description": "Beautiful vim-style powerline statusline for Claude Code with real-time usage tracking, git integration, and custom themes",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",