just-usage 0.0.4 → 0.0.6
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/CHANGELOG.md +19 -9
- package/README.md +5 -1
- package/dist/cli.js +1571 -139
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## v0.0.
|
|
3
|
+
## v0.0.6
|
|
4
|
+
|
|
5
|
+
## What's Changed
|
|
6
|
+
Detect newly installed CLIs on refresh, keep provider tabs out of the URL, and write action logs. in [#3b3f92c](https://github.com/spheceo/just-usage/commit/3b3f92c086e55533da48ebac2023b41ce32d21a3)
|
|
7
|
+
Remove obsolete architecture plan in [#23d08e9](https://github.com/spheceo/just-usage/commit/23d08e96a8a485692062802d3e01886857573af9)
|
|
4
8
|
|
|
5
|
-
|
|
9
|
+
## v0.0.5
|
|
6
10
|
|
|
7
|
-
What's Changed
|
|
11
|
+
## What's Changed
|
|
12
|
+
Add just-usage stop so a leftover server can be shut down from another terminal. in [#2f8bd3b](https://github.com/spheceo/just-usage/commit/2f8bd3bd5e6125567980508fa244903092256237)
|
|
13
|
+
Show Antigravity plan names and auto-enable new signed-in CLIs. in [#274220c](https://github.com/spheceo/just-usage/commit/274220c08d2a89231bcc74e30349edadeeffc29d)
|
|
14
|
+
Treat Antigravity 403 as no subscription and tidy the Options form. in [#6861089](https://github.com/spheceo/just-usage/commit/68610893dc545232f89a80bbdb8062f4b710a167)
|
|
15
|
+
Add Grok quotas and keep tabs off until a provider has live allowance. in [#4949eee](https://github.com/spheceo/just-usage/commit/4949eee41e2180694740245bf929d1c981477807)
|
|
16
|
+
Add Antigravity quotas from the agy CLI and extra Google logins. in [#9f4b748](https://github.com/spheceo/just-usage/commit/9f4b7484bc9a2247b65d9293f16b6c02dd1289ef)
|
|
17
|
+
Drop the version line from release notes and heading What's Changed in [#3bdc014](https://github.com/spheceo/just-usage/commit/3bdc014f6ad9e961a67f869bf3cb50d63fa8eaf7)
|
|
18
|
+
|
|
19
|
+
## v0.0.4
|
|
20
|
+
|
|
21
|
+
## What's Changed
|
|
8
22
|
Publish to npm with provenance now that the repo is public in [#0c9b9bb](https://github.com/spheceo/just-usage/commit/0c9b9bbdfb5727789774d4563ecafdf756f9b644)
|
|
9
23
|
|
|
10
24
|
## v0.0.3
|
|
11
25
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
What's Changed
|
|
26
|
+
## What's Changed
|
|
15
27
|
Publish to npm without provenance so a private repo can release in [#0286994](https://github.com/spheceo/just-usage/commit/0286994337d3a07ecc3e6ee017f474543264086f)
|
|
16
28
|
|
|
17
29
|
## v0.0.2
|
|
18
30
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
What's Changed
|
|
31
|
+
## What's Changed
|
|
22
32
|
Add settings, extra accounts, Tailscale URLs, and changelog-backed releases in [#37fce01](https://github.com/spheceo/just-usage/commit/37fce016b2866e0300e38fe184f7169ca4a2f9b0)
|
|
23
33
|
Publish to npm with Trusted Publishing instead of a stored token. in [#e033571](https://github.com/spheceo/just-usage/commit/e0335716befd1b9f7adc5d17813c754b8636db25)
|
|
24
34
|
Add favicon in [#b7282ea](https://github.com/spheceo/just-usage/commit/b7282ea454488e37208ae83dff6acca021e499da)
|
package/README.md
CHANGED
|
@@ -4,7 +4,9 @@ One local page for your coding-CLI subscription quotas. Detects the CLIs install
|
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
6
|
npm i -g just-usage
|
|
7
|
-
just-usage # http://<your-host>:5757
|
|
7
|
+
just-usage # start and open http://<your-host>:5757
|
|
8
|
+
just-usage stop # stop that server (same as Ctrl+C)
|
|
9
|
+
just-usage stop --help
|
|
8
10
|
```
|
|
9
11
|
|
|
10
12
|
## Providers
|
|
@@ -12,6 +14,8 @@ just-usage # http://<your-host>:5757
|
|
|
12
14
|
- Claude (Claude Code)
|
|
13
15
|
- Codex
|
|
14
16
|
- Cursor
|
|
17
|
+
- Antigravity (`agy`)
|
|
18
|
+
- Grok (`grok`)
|
|
15
19
|
- OpenCode Go
|
|
16
20
|
|
|
17
21
|
> Read-only. Credentials stay with the CLIs that own them and never reach the browser. Run `just-usage upgrade` to update.
|