claude-code - 💡(How to fix) Fix [FEATURE] Expose daily usage quota in CLI / status line data [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#46938Fetched 2026-04-12 13:29:12
View on GitHub
Comments
1
Participants
2
Timeline
6
Reactions
0
Timeline (top)
labeled ×5commented ×1
RAW_BUFFERClick to expand / collapse

Preflight Checklist

  • I have searched existing requests and this feature hasn't been requested yet
  • This is a single feature request (not multiple features)

Problem Statement

There's no way to know how close you are to your daily usage limit. You only find out when you hit it and get throttled — no warning, no dashboard, no API.

Proposed Solution

Include quota/rate-limit information in the JSON data passed to the status line (and ideally as a CLI command too, e.g. claude usage). Something like:

{ "quota": { "used_percentage": 72, "resets_at": "2026-04-13T00:00:00Z" } }

This would let users monitor their remaining allowance throughout the day and pace their work accordingly.

Alternative Solutions

No response

Priority

High - Significant impact on productivity

Feature Category

Configuration and settings

Use Case Example

would use this everyday on my cli status bar

Additional Context

No response

extent analysis

TL;DR

Implementing a quota information feature in the status line and CLI command would provide users with their daily usage limit and remaining allowance.

Guidance

  • Consider adding a quota object to the JSON data passed to the status line, including used_percentage and resets_at properties.
  • Develop a CLI command, such as claude usage, to display the quota information.
  • Integrate this feature into the existing dashboard to provide a centralized location for users to monitor their usage.
  • Ensure the resets_at timestamp is in a standardized format, such as ISO 8601, for easy parsing and display.

Example

{
  "quota": {
    "used_percentage": 72,
    "resets_at": "2026-04-13T00:00:00Z"
  }
}

Notes

The proposed solution assumes that the necessary infrastructure and data are available to track and report quota usage. Additional development may be required to integrate this feature with existing systems.

Recommendation

Apply workaround: Implement the proposed quota feature in the status line and CLI command to provide users with their daily usage limit and remaining allowance, as this would significantly improve productivity.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING