whetstone-cli 3.1.3

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

use crate::ui;

const HEADROOM_STATS_URL: &str = "http://127.0.0.1:8787/stats";
const HEADROOM_HEALTH_URL: &str = "http://127.0.0.1:8787/health";
const PROXY_STARTUP_TIMEOUT: Duration = Duration::from_secs(15);
const PROXY_POLL_INTERVAL: Duration = Duration::from_millis(300);

#[derive(Debug, Deserialize)]
struct HeadroomStats {
    #[serde(default)]
    persistent_savings: PersistentSavings,
    #[serde(default)]
    savings: Savings,
    #[serde(default)]
    tokens: Tokens,
    #[serde(default)]
    cost: Cost,
    #[serde(default)]
    requests: Requests,
}

#[derive(Debug, Default, Deserialize)]
struct PersistentSavings {
    #[serde(default)]
    lifetime: LifetimeSavings,
}

#[derive(Debug, Default, Deserialize)]
struct LifetimeSavings {
    #[serde(default)]
    tokens_saved: u64,
    #[serde(default)]
    compression_savings_usd: f64,
}

#[derive(Debug, Default, Deserialize)]
struct Savings {
    #[serde(default)]
    by_layer: ByLayer,
}

#[derive(Debug, Default, Deserialize)]
struct ByLayer {
    #[serde(default)]
    cli_filtering: Option<CliFiltering>,
    #[serde(default)]
    prefix_cache: Option<PrefixCache>,
}

#[derive(Debug, Deserialize)]
struct CliFiltering {
    #[serde(default)]
    lifetime: Option<RtkLifetime>,
}

#[derive(Debug, Default, Deserialize)]
struct RtkLifetime {
    #[serde(default)]
    commands: u64,
    #[serde(default)]
    tokens_saved: u64,
    #[serde(default)]
    savings_pct: f64,
}

#[derive(Debug, Deserialize)]
struct PrefixCache {
    #[serde(default)]
    discount_usd: f64,
}

#[derive(Debug, Default, Deserialize)]
struct Tokens {
    #[serde(default)]
    saved: u64,
    #[serde(default)]
    savings_percent: f64,
}

#[derive(Debug, Default, Deserialize)]
struct Cost {
    #[serde(default)]
    total_saved_usd: f64,
}

#[derive(Debug, Default, Deserialize)]
struct Requests {
    #[serde(default)]
    total: u64,
    #[serde(default)]
    cached: u64,
}

fn fetch_stats() -> Result<HeadroomStats> {
    let body = ureq::get(HEADROOM_STATS_URL)
        .timeout(std::time::Duration::from_secs(3))
        .call()
        .context("headroom proxy not reachable at localhost:8787")?
        .into_string()
        .context("failed to read headroom stats")?;

    serde_json::from_str(&body).context("failed to parse headroom stats JSON")
}

fn format_tokens(n: u64) -> String {
    if n >= 1_000_000_000 {
        format!("{:.1}B", n as f64 / 1_000_000_000.0)
    } else if n >= 1_000_000 {
        format!("{:.1}M", n as f64 / 1_000_000.0)
    } else if n >= 1_000 {
        format!("{:.1}K", n as f64 / 1_000.0)
    } else {
        n.to_string()
    }
}

fn format_usd(n: f64) -> String {
    if n >= 1000.0 {
        format!("${:.0}", n)
    } else if n >= 100.0 {
        format!("${:.1}", n)
    } else {
        format!("${:.2}", n)
    }
}

fn stat_line<'a>(label: &'a str, value: String, color: Color) -> Line<'a> {
    Line::from(vec![
        Span::raw("  "),
        Span::styled(
            format!("{label:<24}"),
            Style::default().add_modifier(Modifier::DIM),
        ),
        Span::styled(
            value,
            Style::default().fg(color).add_modifier(Modifier::BOLD),
        ),
    ])
}

fn section_header(title: &str) -> Line<'_> {
    Line::from(vec![
        Span::raw("  "),
        Span::styled(
            title,
            Style::default()
                .fg(Color::Cyan)
                .add_modifier(Modifier::BOLD),
        ),
    ])
}

fn proxy_is_running() -> bool {
    ureq::get(HEADROOM_HEALTH_URL)
        .timeout(Duration::from_secs(2))
        .call()
        .is_ok()
}

fn start_temporary_proxy() -> Option<Child> {
    Command::new("headroom")
        .args(["proxy", "--port", "8787"])
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()
        .ok()
}

fn wait_for_proxy_healthy() -> bool {
    let start = Instant::now();
    while start.elapsed() < PROXY_STARTUP_TIMEOUT {
        if proxy_is_running() {
            return true;
        }
        thread::sleep(PROXY_POLL_INTERVAL);
    }
    false
}

struct TempProxy {
    child: Child,
}

impl TempProxy {
    fn start() -> Option<Self> {
        ui::info("starting headroom proxy temporarily for stats…");
        let child = start_temporary_proxy()?;
        if wait_for_proxy_healthy() {
            Some(Self { child })
        } else {
            let mut child = child;
            let _ = child.kill();
            let _ = child.wait();
            None
        }
    }
}

impl Drop for TempProxy {
    fn drop(&mut self) {
        let _ = self.child.kill();
        let _ = self.child.wait();
    }
}

pub fn run() -> Result<()> {
    let _temp_proxy = if proxy_is_running() {
        None
    } else {
        match TempProxy::start() {
            Some(tp) => Some(tp),
            None => {
                ui::warn("headroom proxy not running and failed to start temporarily");
                eprintln!("  start it with: whetstone proxy");
                return Ok(());
            }
        }
    };

    let stats = match fetch_stats() {
        Ok(s) => s,
        Err(e) => {
            ui::warn(&format!("failed to fetch stats: {e:#}"));
            return Ok(());
        }
    };

    let rtk_lifetime = stats
        .savings
        .by_layer
        .cli_filtering
        .as_ref()
        .and_then(|c| c.lifetime.as_ref());

    let cache_usd = stats
        .savings
        .by_layer
        .prefix_cache
        .as_ref()
        .map(|c| c.discount_usd)
        .unwrap_or(0.0);

    let lt = &stats.persistent_savings.lifetime;
    let compression_tokens = lt.tokens_saved;
    let compression_usd = lt.compression_savings_usd;

    let rtk_tokens = rtk_lifetime.map(|r| r.tokens_saved).unwrap_or(0);
    let rtk_commands = rtk_lifetime.map(|r| r.commands).unwrap_or(0);
    let rtk_pct = rtk_lifetime.map(|r| r.savings_pct).unwrap_or(0.0);

    let total_tokens = compression_tokens + rtk_tokens;
    let total_usd = compression_usd + cache_usd;

    let session_tokens = stats.tokens.saved;
    let session_pct = stats.tokens.savings_percent;
    let session_compression_usd = stats.cost.total_saved_usd;

    let cache_hits = stats.requests.cached;
    let cache_rate = if stats.requests.total > 0 {
        (cache_hits as f64 / stats.requests.total as f64) * 100.0
    } else {
        0.0
    };

    if ui::is_interactive() {
        let mut lines: Vec<Line<'_>> = Vec::new();
        lines.push(Line::from(""));

        lines.push(section_header("LIFETIME"));
        lines.push(Line::from(""));
        lines.push(stat_line(
            "Compression",
            format!("{} tokens", format_tokens(compression_tokens)),
            Color::Green,
        ));
        lines.push(stat_line(
            "RTK filtering",
            format!(
                "{} tokens ({:.0}% avg, {} cmds)",
                format_tokens(rtk_tokens),
                rtk_pct,
                rtk_commands
            ),
            Color::Green,
        ));
        lines.push(stat_line(
            "Prefix cache",
            format!("{} saved", format_usd(cache_usd)),
            Color::Green,
        ));
        lines.push(Line::from(""));
        lines.push(stat_line(
            "Total tokens saved",
            format_tokens(total_tokens),
            Color::Yellow,
        ));
        lines.push(stat_line(
            "Total USD saved",
            format_usd(total_usd),
            Color::Yellow,
        ));
        lines.push(Line::from(""));

        lines.push(section_header("THIS SESSION"));
        lines.push(Line::from(""));
        lines.push(stat_line(
            "Tokens saved",
            format!("{} ({:.1}%)", format_tokens(session_tokens), session_pct),
            Color::Blue,
        ));
        lines.push(stat_line(
            "Compression savings",
            format_usd(session_compression_usd),
            Color::Blue,
        ));
        lines.push(stat_line(
            "Cache hit rate",
            format!("{:.0}% ({} hits)", cache_rate, cache_hits),
            Color::Blue,
        ));
        lines.push(stat_line(
            "API requests",
            stats.requests.total.to_string(),
            Color::Blue,
        ));
        lines.push(Line::from(""));

        let block = Block::default()
            .borders(Borders::ALL)
            .title(Span::styled(
                " whetstone stats ",
                Style::default()
                    .fg(Color::Cyan)
                    .add_modifier(Modifier::BOLD),
            ))
            .border_style(Style::default().fg(Color::DarkGray));

        let paragraph = Paragraph::new(lines.clone()).block(block);
        let height = (lines.len() + 2) as u16;

        let backend = ratatui::backend::CrosstermBackend::new(io::stderr());
        if let Ok(mut terminal) = Terminal::with_options(
            backend,
            TerminalOptions {
                viewport: Viewport::Inline(height),
            },
        ) {
            let _ = terminal.draw(|frame| {
                frame.render_widget(paragraph, frame.area());
            });
        }
        eprintln!();
    } else {
        eprintln!("whetstone stats");
        eprintln!("{}", "".repeat(50));
        eprintln!();
        eprintln!("LIFETIME");
        eprintln!(
            "  Compression            {} tokens",
            format_tokens(compression_tokens)
        );
        eprintln!(
            "  RTK filtering          {} tokens ({:.0}% avg, {} cmds)",
            format_tokens(rtk_tokens),
            rtk_pct,
            rtk_commands
        );
        eprintln!("  Prefix cache           {} saved", format_usd(cache_usd));
        eprintln!();
        eprintln!("  Total tokens saved     {}", format_tokens(total_tokens));
        eprintln!("  Total USD saved        {}", format_usd(total_usd));
        eprintln!();
        eprintln!("THIS SESSION");
        eprintln!(
            "  Tokens saved           {} ({:.1}%)",
            format_tokens(session_tokens),
            session_pct
        );
        eprintln!(
            "  Compression savings    {}",
            format_usd(session_compression_usd)
        );
        eprintln!(
            "  Cache hit rate         {:.0}% ({} hits)",
            cache_rate, cache_hits
        );
        eprintln!("  API requests           {}", stats.requests.total);
    }

    Ok(())
}