pi-openai-codex-compat 0.0.4 → 0.0.5

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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.0.5 - 2026-08-07
6
+
7
+ ### Fixed
8
+
9
+ - Avoid repeating the extension name in Pi's startup display.
10
+
5
11
  ## 0.0.4 - 2026-08-07
6
12
 
7
13
  ### Added
package/README.md CHANGED
@@ -393,7 +393,13 @@ mise run test:live:codex
393
393
  The task obtains the local Codex bearer token and runs the tests with
394
394
  `gpt-5.6-luna` at medium reasoning effort.
395
395
 
396
- The focused Pi AI serializer copy lives under `extensions/openai-codex-compat/vendor/pi-ai/`. The custom Codex provider transport and stream parser are focused adaptations of Pi AI's corresponding implementation. Equivalence and protocol tests cover canonical serialization, native namespace round-trips, raw native replay, sibling Codex JSON endpoints, SSE request behavior, WebSocket reuse, grammar tools, image results, standalone search, and compaction continuation.
396
+ The public package entrypoint is `extensions/index.ts`; implementation modules remain under
397
+ `extensions/openai-codex-compat/`. The focused Pi AI serializer copy lives under
398
+ `extensions/openai-codex-compat/vendor/pi-ai/`. The custom Codex provider transport and stream
399
+ parser are focused adaptations of Pi AI's corresponding implementation. Equivalence and protocol
400
+ tests cover canonical serialization, native namespace round-trips, raw native replay, sibling Codex
401
+ JSON endpoints, SSE request behavior, WebSocket reuse, grammar tools, image results, standalone
402
+ search, and compaction continuation.
397
403
 
398
404
  ## Release staging
399
405
 
@@ -0,0 +1,2 @@
1
+ export { default } from "./openai-codex-compat/index.ts";
2
+ export * from "./openai-codex-compat/index.ts";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-openai-codex-compat",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "OpenAI Codex compatibility for Pi with native compaction, fast mode, and Codex-optimized capabilities",
5
5
  "keywords": [
6
6
  "pi-package"
@@ -20,7 +20,7 @@
20
20
  "url": "git+https://github.com/2h2d-co/pi-openai-codex-compat.git"
21
21
  },
22
22
  "files": [
23
- "extensions/openai-codex-compat",
23
+ "extensions",
24
24
  "README.md",
25
25
  "CHANGELOG.md",
26
26
  "LICENSE",
@@ -58,7 +58,7 @@
58
58
  },
59
59
  "pi": {
60
60
  "extensions": [
61
- "./extensions/openai-codex-compat/index.ts"
61
+ "./extensions/index.ts"
62
62
  ]
63
63
  }
64
64
  }