pi-oracle 0.7.2 → 0.7.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +1 -1
  3. package/package.json +13 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.7.4 - 2026-05-28
6
+
7
+ ### Changed
8
+ - updated the local pi development baseline to `@earendil-works/pi-coding-agent` / `@earendil-works/pi-ai` `0.77.0` and regenerated the npm lockfile
9
+ - kept pi runtime packages as optional wildcard peers and removed the Node.js engine upper bound so future pi releases are not blocked at install time
10
+
11
+ ### Compatibility
12
+ - reviewed the pi `0.77.0` changelog and package guidance; the oracle extension remains compatible with current extension lifecycle and package install/update behavior
13
+
14
+ ## 0.7.3 - 2026-05-27
15
+
16
+ ### Changed
17
+ - updated the local pi development baseline to `@earendil-works/pi-coding-agent` / `@earendil-works/pi-ai` `0.76.0` and regenerated the npm lockfile
18
+ - aligned `engines.node` to `>=22.19.0 <25` with the pi `0.76.0` Node.js floor and the supported Node 22–24 range
19
+
20
+ ### Compatibility
21
+ - reviewed the pi `0.76.0` changelog and package guidance; the oracle extension remains compatible with current extension lifecycle and package install/update behavior
22
+
5
23
  ## 0.7.2 - 2026-05-23
6
24
 
7
25
  ### Changed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  `pi-oracle` lets a `pi` agent send hard, long-running work to ChatGPT.com or Grok through the web app, with repo archives, background execution, saved results, and a best-effort wake-up back into `pi` when the answer is ready.
4
4
 
5
- > Status: experimental public beta. Validated primarily on macOS with Google Chrome/Chromium and `pi` 0.65.0+. Normal oracle jobs run in an isolated browser profile, not your active browser window.
5
+ > Status: experimental public beta. Validated primarily on macOS with Google Chrome/Chromium and the current pi package baseline. Pi-bundled runtime packages are optional wildcard peers so npm peer ranges do not block users from trying newer pi releases, though runtime behavior is only verified against the tested baseline until a follow-up package release confirms it. Normal oracle jobs run in an isolated browser profile, not your active browser window.
6
6
 
7
7
  ## What a successful run looks like
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-oracle",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "ChatGPT and Grok web-oracle extension for pi with isolated browser auth, async jobs, and project-context archives.",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -64,12 +64,12 @@
64
64
  "protobufjs": "7.6.1"
65
65
  },
66
66
  "devDependencies": {
67
- "@earendil-works/pi-ai": "^0.75.5",
68
- "@earendil-works/pi-coding-agent": "^0.75.5",
67
+ "@earendil-works/pi-ai": "^0.77.0",
68
+ "@earendil-works/pi-coding-agent": "^0.77.0",
69
69
  "@types/node": "^25.9.1",
70
70
  "esbuild": "^0.28.0",
71
71
  "tsx": "^4.22.3",
72
- "typebox": "^1.1.38",
72
+ "typebox": "^1.1.39",
73
73
  "typescript": "^6.0.3"
74
74
  },
75
75
  "engines": {
@@ -78,5 +78,13 @@
78
78
  "os": [
79
79
  "darwin"
80
80
  ],
81
- "packageManager": "npm@11.15.0"
81
+ "packageManager": "npm@11.16.0",
82
+ "peerDependenciesMeta": {
83
+ "@earendil-works/pi-coding-agent": {
84
+ "optional": true
85
+ },
86
+ "typebox": {
87
+ "optional": true
88
+ }
89
+ }
82
90
  }