@jameslovespancakes/pi-plus 1.0.3 → 1.0.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/CHANGELOG.md +14 -1
- package/README.md +23 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,18 @@ rolls into major at 10.
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
## [1.0.4] - 2026-09-19
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- The README leads with the mark alone instead of repeating the name beneath
|
|
16
|
+
it, and credits the Anthropic provider correctly: it was adopted from
|
|
17
|
+
`@cortexkit/pi-anthropic-auth` and has since been reimplemented here.
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- A disclaimer covering provider terms of service.
|
|
22
|
+
|
|
11
23
|
## [1.0.3] - 2026-09-19
|
|
12
24
|
|
|
13
25
|
### Added
|
|
@@ -83,7 +95,8 @@ First published release.
|
|
|
83
95
|
truncated to `claude` and named neither the window nor the model. They now
|
|
84
96
|
show the model family, for example `Fable`.
|
|
85
97
|
|
|
86
|
-
[Unreleased]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.
|
|
98
|
+
[Unreleased]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.4...HEAD
|
|
99
|
+
[1.0.4]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.3...v1.0.4
|
|
87
100
|
[1.0.3]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.2...v1.0.3
|
|
88
101
|
[1.0.2]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.1...v1.0.2
|
|
89
102
|
[1.0.1]: https://github.com/jameslovespancakes/pi-plus/compare/v1.0.0...v1.0.1
|
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<img src="images/pi-plus.svg" alt="pi-plus" width="
|
|
4
|
-
|
|
5
|
-
# pi-plus
|
|
3
|
+
<img src="images/pi-plus.svg" alt="pi-plus" width="160">
|
|
6
4
|
|
|
7
5
|
**Everything [pi](https://pi.dev/) is missing, in one install.**
|
|
8
6
|
|
|
@@ -184,10 +182,30 @@ pi-plus is a thin layer over other people's work.
|
|
|
184
182
|
|
|
185
183
|
| project | what it does here | license |
|
|
186
184
|
| --- | --- | --- |
|
|
187
|
-
| [`pi`](https://pi.dev/)| the host agent and the entire extension API | MIT |
|
|
188
|
-
| [
|
|
185
|
+
| [`pi`](https://pi.dev/) | the host agent and the entire extension API | MIT |
|
|
186
|
+
| [`xxhash-wasm`](https://github.com/jungomi/xxhash-wasm) | vendored into `src/core/anthropic/vendor/` for the billing checksum | MIT |
|
|
187
|
+
|
|
188
|
+
The Anthropic provider, OAuth, quota and routing were originally adopted from
|
|
189
|
+
[`@cortexkit/pi-anthropic-auth`](https://github.com/cortexkit/anthropic-auth)
|
|
190
|
+
(MIT) and have since been reimplemented in this repository.
|
|
189
191
|
|
|
190
192
|
|
|
191
193
|
## License
|
|
192
194
|
|
|
193
195
|
MIT
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
## Disclaimer
|
|
199
|
+
|
|
200
|
+
pi-plus is an unofficial, independent project. It is not affiliated with,
|
|
201
|
+
endorsed by, or supported by Anthropic, OpenAI, pi, or any other provider
|
|
202
|
+
named here.
|
|
203
|
+
|
|
204
|
+
**You are responsible for using it within the terms of service of every
|
|
205
|
+
provider you connect it to.** This tool manages credentials for accounts you
|
|
206
|
+
already own and pools requests across them. Whether that is permitted, and
|
|
207
|
+
whether a given account may be used for a given purpose, is governed by your
|
|
208
|
+
agreement with that provider and not by this software. Review those terms
|
|
209
|
+
before connecting an account, and keep in mind that they change.
|
|
210
|
+
|
|
211
|
+
Provided as is, without warranty of any kind. See [LICENSE](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jameslovespancakes/pi-plus",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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",
|