@llblab/pi-kit 0.1.2 → 0.1.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 +4 -0
- package/README.md +2 -2
- package/node_modules/@llblab/pi-codex-usage/CHANGELOG.md +4 -1
- package/node_modules/@llblab/pi-codex-usage/index.ts +4 -1
- package/node_modules/@llblab/pi-codex-usage/package.json +3 -2
- package/node_modules/@llblab/pi-grow-loop/CHANGELOG.md +4 -0
- package/node_modules/@llblab/pi-grow-loop/package.json +3 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@llblab/pi-kit` are documented here.
|
|
4
4
|
|
|
5
|
+
## 0.1.3 - 2026-08-20
|
|
6
|
+
|
|
7
|
+
- `Extension Releases`: Advances `@llblab/pi-codex-usage` to `0.9.3` for current Pi header-type compatibility and Trusted Publisher releases, and `@llblab/pi-grow-loop` to `0.7.2` for audited Trusted Publisher releases.
|
|
8
|
+
|
|
5
9
|
## 0.1.2 - 2026-08-20
|
|
6
10
|
|
|
7
11
|
- `Trusted Release Automation`: Adds tag-gated validation, npm Trusted Publisher provenance, immutable package/tag identity checks, public package verification, and workflow-owned GitHub Release creation through `.github/workflows/release.yml`.
|
package/README.md
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
| Package | Version | Resources |
|
|
8
8
|
| --- | ---: | --- |
|
|
9
9
|
| `@llblab/pi-actors` | `0.49.1` | Extension and Skills |
|
|
10
|
-
| `@llblab/pi-codex-usage` | `0.9.
|
|
11
|
-
| `@llblab/pi-grow-loop` | `0.7.
|
|
10
|
+
| `@llblab/pi-codex-usage` | `0.9.3` | Extension |
|
|
11
|
+
| `@llblab/pi-grow-loop` | `0.7.2` | Extension and Skills |
|
|
12
12
|
| `@llblab/pi-telegram` | `0.36.7` | Extension and Skills |
|
|
13
13
|
|
|
14
14
|
Versions are exact by design. Updating an extension does not change an installed kit until this repository explicitly advances that dependency and publishes a new kit version.
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 0.9.3: Trusted Release Automation
|
|
4
|
+
|
|
5
|
+
- Added tag-gated release automation with exact package/lock/tag identity checks, full package validation, npm Trusted Publisher provenance, public registry verification, and workflow-owned GitHub Release creation through `.github/workflows/release.yml`.
|
|
6
|
+
- Normalized nullable provider headers into the string-only request header contract, preserving compatibility with current Pi model-registry types while omitting intentionally removed headers.
|
|
4
7
|
|
|
5
8
|
## 0.9.1: Clear Weekly Quota Status
|
|
6
9
|
|
|
@@ -652,7 +652,10 @@ async function resolvePiCodexAuth(
|
|
|
652
652
|
continue;
|
|
653
653
|
}
|
|
654
654
|
|
|
655
|
-
const headers
|
|
655
|
+
const headers: Record<string, string> = {};
|
|
656
|
+
for (const [name, value] of Object.entries(auth.headers ?? {})) {
|
|
657
|
+
if (value !== null) headers[name] = value;
|
|
658
|
+
}
|
|
656
659
|
if (!hasHeader(headers, "Authorization") && auth.apiKey) {
|
|
657
660
|
headers.Authorization = `Bearer ${auth.apiKey}`;
|
|
658
661
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@llblab/pi-codex-usage",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Minimal Pi extension that shows primary Codex ChatGPT subscription usage limits",
|
|
6
6
|
"keywords": [
|
|
@@ -28,8 +28,9 @@
|
|
|
28
28
|
"check": "node --experimental-strip-types -e \"await import('./index.ts'); console.log('pi-codex-usage: extension import ok')\"",
|
|
29
29
|
"test": "node --experimental-strip-types --test test/*.test.ts",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
|
+
"audit": "npm audit --omit=peer",
|
|
31
32
|
"pack:dry": "npm pack --dry-run",
|
|
32
|
-
"validate": "npm run typecheck && npm run test && npm run check && npm run pack:dry"
|
|
33
|
+
"validate": "npm run typecheck && npm run test && npm run check && npm run audit && npm run pack:dry"
|
|
33
34
|
},
|
|
34
35
|
"files": [
|
|
35
36
|
"index.ts",
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.7.2: Trusted Release Automation
|
|
4
|
+
|
|
5
|
+
- [Release] Add tag-gated package validation, npm Trusted Publisher provenance, immutable package/tag identity checks, public registry verification, and workflow-owned GitHub Release creation through `.github/workflows/release.yml`.
|
|
6
|
+
|
|
3
7
|
## 0.7.1: Banner Presentation Hotfix
|
|
4
8
|
|
|
5
9
|
- [Docs] Display the packaged project banner at the top of the README through its stable repository URL so GitHub and npm readers see the release identity immediately.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@llblab/pi-grow-loop",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Semantic loop-engineering for agent-owned, visible, interruptible continuation in Pi",
|
|
6
6
|
"keywords": [
|
|
@@ -29,8 +29,9 @@
|
|
|
29
29
|
"check": "node --experimental-strip-types -e \"await import('./index.ts'); console.log('pi-grow-loop: extension import ok')\"",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
31
31
|
"test": "node --experimental-strip-types --test test/*.test.ts",
|
|
32
|
+
"audit": "npm audit --omit=peer",
|
|
32
33
|
"pack:dry": "npm pack --dry-run",
|
|
33
|
-
"validate": "npm run test && npm run typecheck && npm run check && npm run pack:dry"
|
|
34
|
+
"validate": "npm run test && npm run typecheck && npm run check && npm run audit && npm run pack:dry"
|
|
34
35
|
},
|
|
35
36
|
"files": [
|
|
36
37
|
"banner.jpg",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@llblab/pi-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@llblab/pi-actors": "0.49.1",
|
|
44
|
-
"@llblab/pi-codex-usage": "0.9.
|
|
45
|
-
"@llblab/pi-grow-loop": "0.7.
|
|
44
|
+
"@llblab/pi-codex-usage": "0.9.3",
|
|
45
|
+
"@llblab/pi-grow-loop": "0.7.2",
|
|
46
46
|
"@llblab/pi-telegram": "0.36.7"
|
|
47
47
|
},
|
|
48
48
|
"bundledDependencies": [
|