@rynfar/meridian 1.56.0 → 1.56.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9892,7 +9892,9 @@ var landingHtml = `<!DOCTYPE html>
9892
9892
  .usage-row .w-bar { flex: 1; height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden; }
9893
9893
  .usage-row .w-fill { height: 100%; border-radius: 3px; }
9894
9894
  .pace-row { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 8px; }
9895
- .pace-row .pace-text { flex: 1; font-weight: 600; font-size: 11px; }
9895
+ .pace-row .w-bar { overflow: visible; position: relative; }
9896
+ .pace-marker { position: absolute; top: -3px; bottom: -3px; width: 2px; background: var(--text); opacity: 0.55; border-radius: 1px; }
9897
+ .pace-row .w-pct { font-weight: 600; }
9896
9898
  .pool-chip { font-size: 10px; padding: 2px 8px; border-radius: 10px; background: var(--surface2); color: var(--muted); margin-left: 6px; vertical-align: middle; }
9897
9899
  .pool-chip.exhausted { color: var(--red); background: rgba(248,81,73,0.12); }
9898
9900
  .usage-row .w-pct { width: 38px; text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
@@ -10006,9 +10008,17 @@ function profileSection(q,s,pl,h){
10006
10008
  var weekly=null;
10007
10009
  for(var j=0;j<wins.length;j++){if(wins[j].type==='seven_day')weekly=wins[j]}
10008
10010
  var pc=weekly?weeklyPace(weekly.utilization,weekly.resetsAt):null;
10009
- if(pc)rows+='<div class="usage-row pace-row"><span class="w-label">pace</span>'
10010
- +'<span class="pace-text" style="color:'+paceColor(pc)+'">'+paceText(pc)+'</span>'
10011
- +'<span class="w-reset">'+(pc.proj!=null?'~'+pc.proj+'% by reset':'')+'</span></div>';
10011
+ if(pc){
10012
+ // Visual actual-vs-expected: fill = actual usage (status-colored),
10013
+ // tick marker = where even pace would be. The gap IS the pace.
10014
+ var paceTip=paceText(pc)+' · '+pc.actual+'% used vs '+pc.expected+'% expected'+(pc.proj!=null?' · ~'+pc.proj+'% by reset':'');
10015
+ var deltaLabel=pc.status==='over'?(pc.proj!=null?pc.proj+'%':'100%'):(pc.delta>=0?'+':'−')+Math.abs(pc.delta)+'%';
10016
+ rows+='<div class="usage-row pace-row" title="'+paceTip+'"><span class="w-label">pace</span>'
10017
+ +'<div class="w-bar"><div class="w-fill" style="width:'+Math.min(pc.actual,100)+'%;background:'+paceColor(pc)+'"></div>'
10018
+ +'<div class="pace-marker" style="left:'+Math.min(pc.expected,100)+'%" title="expected at even pace ('+pc.expected+'%)"></div></div>'
10019
+ +'<span class="w-pct" style="color:'+paceColor(pc)+'">'+deltaLabel+'</span>'
10020
+ +'<span class="w-reset">'+(pc.status==='over'?'runs out before reset':pc.proj!=null?'~'+pc.proj+'% by reset':'')+'</span></div>';
10021
+ }
10012
10022
  if(!rows)rows='<div class="no-usage">no usage data yet</div>';
10013
10023
  var isPriority=pl&&pl.routing==='priority';
10014
10024
  var switchable=multi&&p.configured&&!p.isActive&&!isPriority;
package/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  startProxyServer
4
- } from "./cli-aefk7t3r.js";
4
+ } from "./cli-h3c4qrv6.js";
5
5
  import"./cli-ngtexmne.js";
6
6
  import"./cli-sry5aqdj.js";
7
7
  import"./cli-xmweegb1.js";
package/dist/server.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  runObserveHook,
12
12
  runTransformHook,
13
13
  startProxyServer
14
- } from "./cli-aefk7t3r.js";
14
+ } from "./cli-h3c4qrv6.js";
15
15
  import"./cli-ngtexmne.js";
16
16
  import"./cli-sry5aqdj.js";
17
17
  import"./cli-xmweegb1.js";
@@ -1 +1 @@
1
- {"version":3,"file":"landing.d.ts","sourceRoot":"","sources":["../../src/telemetry/landing.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,eAAO,MAAM,WAAW,QA6PhB,CAAA"}
1
+ {"version":3,"file":"landing.d.ts","sourceRoot":"","sources":["../../src/telemetry/landing.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,eAAO,MAAM,WAAW,QAuQhB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rynfar/meridian",
3
- "version": "1.56.0",
3
+ "version": "1.56.1",
4
4
  "description": "Local Anthropic API powered by your Claude Max subscription. One subscription, every agent.",
5
5
  "type": "module",
6
6
  "main": "./dist/server.js",