@felan-ai/ext-codex 0.3.5 → 0.4.0

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/NOTICE +2 -2
  2. package/README.md +3 -5
  3. package/package.json +4 -4
package/NOTICE CHANGED
@@ -23,10 +23,10 @@ Adapted portions include structured tool schemas and output conventions,
23
23
  patch parsing and matching, model activation policy, structured skill-prompt
24
24
  preservation, OpenAI request options, cached WebSocket transport selection,
25
25
  and local TUI tool labels. Felan implements process and file operations against
26
- AgentRuntime and uses Pi 0.85.0's native OpenAI Codex transport for connection
26
+ AgentRuntime and uses Pi 0.85.1's native OpenAI Codex transport for connection
27
27
  reuse and cached continuation.
28
28
 
29
- This package uses @earendil-works/pi-tui 0.85.0 from
29
+ This package uses @earendil-works/pi-tui 0.85.1 from
30
30
  https://github.com/earendil-works/pi, licensed under the MIT License.
31
31
  Copyright (c) 2025 Mario Zechner.
32
32
 
package/README.md CHANGED
@@ -77,11 +77,9 @@ function-tool `strict` value to `false` so optional arguments remain optional.
77
77
  Explicit `true` or `false` values, absent values, and non-function tools are
78
78
  left unchanged.
79
79
 
80
- Pi 0.85.0 does not include GPT-6 Astra in its built-in catalog. Add an
81
- `openai-codex` Astra model through Pi's `models.json`; the existing GPT policy
82
- then enables this extension's structured tools and native Responses controls.
83
- See the [configuration guide](../../docs/user-guide/configuration.md#codex-tools)
84
- for the model metadata example and its provider-dependent limitations.
80
+ Pi 0.85.1 includes GPT-6 Astra in its built-in OpenAI and OpenAI Codex catalogs.
81
+ The existing GPT policy enables this extension's structured tools and native
82
+ Responses controls without a custom `models.json` entry.
85
83
 
86
84
  The extension excludes restart-durable jobs, web access, image generation,
87
85
  Code Mode/Responses Lite, prompt replacement, native Responses compaction,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@felan-ai/ext-codex",
3
- "version": "0.3.5",
3
+ "version": "0.4.0",
4
4
  "description": "Codex-compatible structured tools and OpenAI request controls for Felan",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -25,14 +25,14 @@
25
25
  }
26
26
  },
27
27
  "dependencies": {
28
- "@earendil-works/pi-tui": "0.85.0",
28
+ "@earendil-works/pi-tui": "0.85.1",
29
29
  "typebox": "1.1.38"
30
30
  },
31
31
  "peerDependencies": {
32
- "@felan-ai/agent-core": "^0.5.0"
32
+ "@felan-ai/agent-core": "^0.6.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@felan-ai/agent-core": "0.5.8"
35
+ "@felan-ai/agent-core": "0.6.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public",