@jameslovespancakes/pi-plus 1.0.1 → 1.0.3
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 +90 -0
- package/README.md +3 -0
- package/images/usage_demo.png +0 -0
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project are documented here.
|
|
4
|
+
|
|
5
|
+
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and versions follow an odometer scheme: patch rolls into minor at 100, minor
|
|
7
|
+
rolls into major at 10.
|
|
8
|
+
|
|
9
|
+
## [Unreleased]
|
|
10
|
+
|
|
11
|
+
## [1.0.3] - 2026-09-19
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- A `CHANGELOG.md`, and GitHub releases whose notes are generated from it.
|
|
16
|
+
`scripts/changelog.mjs --promote` retitles `## [Unreleased]` as the new
|
|
17
|
+
version at release time, so entries are written without needing to know the
|
|
18
|
+
next version number.
|
|
19
|
+
|
|
20
|
+
## [1.0.2] - 2026-09-19
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Release tags now reach the remote. `git tag` creates a lightweight tag and
|
|
25
|
+
`git push --follow-tags` pushes only annotated ones, so every tag was
|
|
26
|
+
silently dropped while the job still reported success.
|
|
27
|
+
- The release job name no longer renders twice. GitHub prefixes a reusable
|
|
28
|
+
workflow's job name with the caller's, so naming both produced
|
|
29
|
+
`Lint / Typecheck / Tests / Lint / Typecheck / Tests`.
|
|
30
|
+
|
|
31
|
+
## [1.0.1] - 2026-09-19
|
|
32
|
+
|
|
33
|
+
### Added
|
|
34
|
+
|
|
35
|
+
- Releases are gated on lint, typecheck and tests as a separate job.
|
|
36
|
+
Publishing cannot begin unless every check passes, rather than relying on
|
|
37
|
+
step ordering inside one job.
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- CI and release run on Node 24, which ships the npm 11.5.1+ required for
|
|
42
|
+
trusted publishing.
|
|
43
|
+
- `actions/checkout` and `actions/setup-node` upgraded to v5; v4 targets the
|
|
44
|
+
deprecated Node 20 runtime.
|
|
45
|
+
|
|
46
|
+
## [1.0.0] - 2026-09-19
|
|
47
|
+
|
|
48
|
+
First published release.
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
|
|
52
|
+
- **Subscription accounts.** Multiple Anthropic and Codex subscriptions in one
|
|
53
|
+
pool, with quota-aware routing. `/accounts` lists every provider's accounts
|
|
54
|
+
and toggles them in place; `/accounts add` and `/accounts rename` run as
|
|
55
|
+
wizards.
|
|
56
|
+
- **Codex multi-account.** PKCE OAuth, per-account quota from `x-codex-*`
|
|
57
|
+
response headers, and duplicate detection by ChatGPT account id so two
|
|
58
|
+
entries cannot share one quota pool.
|
|
59
|
+
- **Quota from response headers.** Anthropic reports utilisation on every
|
|
60
|
+
reply, so the account serving traffic refreshes at no request cost. Idle
|
|
61
|
+
accounts are polled at most once per 10 minutes, triggered by sending a
|
|
62
|
+
message rather than a timer.
|
|
63
|
+
- **Usage HUD.** Pooled 5h, weekly and per-model tiers for Claude, and 5h and
|
|
64
|
+
weekly for Codex, served from cached snapshots.
|
|
65
|
+
- **Model catalogue and billing policy.** `/models`, `/model-info` and
|
|
66
|
+
`/provider` with benchmark-driven selection and an approval gate.
|
|
67
|
+
- **Agent board.** `/board` for live cross-agent messaging.
|
|
68
|
+
- **Remote workers.** `/remote` for capacity-gated test and build workers.
|
|
69
|
+
- **Own the Anthropic provider.** OAuth, routing, quota and client identity
|
|
70
|
+
are implemented in this repository rather than pulled from a dependency.
|
|
71
|
+
|
|
72
|
+
### Fixed
|
|
73
|
+
|
|
74
|
+
- The account list and `/usage` both returned empty because they still
|
|
75
|
+
imported a package that had been removed during the provider extraction.
|
|
76
|
+
The failure was swallowed, so it looked like "no accounts" rather than an
|
|
77
|
+
error.
|
|
78
|
+
- Cached usage rows omitted `checkedAt`, so freshness checks discarded every
|
|
79
|
+
one and the HUD read `unknown/stale` with no bars.
|
|
80
|
+
- The provider picker redrew the whole screen on each toggle. It now updates
|
|
81
|
+
in place inside pi's own inline chrome.
|
|
82
|
+
- Scoped per-model limits were labelled from Anthropic's internal id, which
|
|
83
|
+
truncated to `claude` and named neither the window nor the model. They now
|
|
84
|
+
show the model family, for example `Fable`.
|
|
85
|
+
|
|
86
|
+
[Unreleased]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.3...HEAD
|
|
87
|
+
[1.0.3]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.2...v1.0.3
|
|
88
|
+
[1.0.2]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.1...v1.0.2
|
|
89
|
+
[1.0.1]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.0...v1.0.1
|
|
90
|
+
[1.0.0]: https://github.com/jameslovespancakes/pi-plus/releases/tag/v1.0.0
|
package/README.md
CHANGED
|
@@ -7,9 +7,12 @@
|
|
|
7
7
|
**Everything [pi](https://pi.dev/) is missing, in one install.**
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@jameslovespancakes/pi-plus)
|
|
10
|
+
[](https://github.com/jameslovespancakes/pi-plus/actions/workflows/ci.yml)
|
|
10
11
|
[](LICENSE)
|
|
11
12
|
[](https://pi.dev/packages)
|
|
12
13
|
|
|
14
|
+
[Changelog](CHANGELOG.md) · [Releases](https://github.com/jameslovespancakes/pi-plus/releases)
|
|
15
|
+
|
|
13
16
|
</div>
|
|
14
17
|
|
|
15
18
|
---
|
package/images/usage_demo.png
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jameslovespancakes/pi-plus",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Consolidated pi extensions: Claude subscription accounts and quota HUD, benchmark-driven model catalog and billing policy, live agent board, and capacity-gated remote test workers.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"config/skills",
|
|
29
29
|
"config/pi-plus.example.json",
|
|
30
30
|
"images",
|
|
31
|
+
"CHANGELOG.md",
|
|
31
32
|
"README.md",
|
|
32
33
|
"LICENSE"
|
|
33
34
|
],
|