Review of "Claude Quota" version 0.1.0 (1)

Details Page Preview

Track Claude Pro usage from the GNOME top bar: current session percentage in the panel, plus a menu with every active limit (session, weekly, per-model) and reset times.

Extension Homepage
https://github.com/andrearicchi/gnome-shell-extension-claude-quota

No comments.

FAQ

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

Shexli (experimental) warning 2

Shexli found 2 issues that may need reviewer attention.

EGO-X-004 warning

extensions should avoid synchronous file IO in shell code

Shell code should avoid synchronous file IO APIs like `GLib.file_get_contents()` and `Gio.File.load_contents()`.

File Operations

  • usageClient.js:30
    file.load_contents(null)

EGO-L-003 warning

signals connected by extension should be disconnected in disable()

Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.

Disconnect all signals

  • extension.js:114
            this._settings.connect('changed::refresh-interval', () => {
                this._backoffLevel = 0;
                this._scheduleNext(this._baseInterval());
            })
  • extension.js:103
            this.menu.connect('open-state-changed', (_m, open) => {
                if (!open)
                    return;
                const nowMs = GLib.get_monotonic_time() / 1000;
                if (this._lastFetchMs === 0 ||
                    nowMs - this._lastFetchMs > MENU_REFRESH_DEBOUNCE_MS)
                    

All Versions

Version Status
0.1.1 (2) Active
0.1.0 (1) Rejected

Previous Reviews on this Version

Rcc21 auto- rejected
Auto-rejected because of new version 0.1.1 (2) was uploaded