claude-pace 0.8.2 → 0.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -137,4 +137,4 @@ The entire tool is [one Bash file](claude-pace.sh). Read it before you install i
137
137
 
138
138
  MIT
139
139
 
140
- *Last updated: 2026-04-13 · v0.8.0*
140
+ *Last updated: 2026-04-20 · v0.8.3*
package/claude-pace.sh CHANGED
@@ -135,14 +135,14 @@ IFS=$'\t' read -r MODEL DIR PCT CTX COST EFF HAS_RL U5 U7 R5 R7 < <(
135
135
  '[(.model.display_name//"?"),(.workspace.project_dir//"."),
136
136
  (.context_window.used_percentage//0|floor),(.context_window.context_window_size//0),
137
137
  (.cost.total_cost_usd//0),
138
- ($cfg[0].effortLevel//"default"),
138
+ (.effort.level//$cfg[0].effortLevel//"default"),
139
139
  (if .rate_limits then 1 else 0 end),
140
140
  (.rate_limits.five_hour.used_percentage//null|if type=="number" then floor else "--" end),
141
141
  (.rate_limits.seven_day.used_percentage//null|if type=="number" then floor else "--" end),
142
142
  (.rate_limits.five_hour.resets_at//0),
143
143
  (.rate_limits.seven_day.resets_at//0)]|@tsv' <<<"$input"
144
144
  )
145
- case "${EFF:-default}" in high) EF='' ;; low) EF='' ;; *) EF='' ;; esac
145
+ case "${EFF:-default}" in low) EF='◌' ;; high) EF='' ;; xhigh) EF='' ;; max) EF='●' ;; *) EF='' ;; esac
146
146
 
147
147
  # ── Context label (needed by MODEL_SHORT and line 2) ──
148
148
  if ((CTX >= 1000000)); then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-pace",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
4
4
  "description": "Claude Code statusline and rate limit tracker. Pure Bash + jq, single file.",
5
5
  "bin": {
6
6
  "claude-pace": "cli.js"