@howaboua/pi-codex-conversion 1.0.18 → 1.0.19

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/README.md CHANGED
@@ -140,7 +140,6 @@ That keeps the prompt much closer to `pi-mono` while still steering the model to
140
140
  - `web_search` is exposed only for the `openai-codex` provider and is forwarded as the native OpenAI Codex Responses web search tool.
141
141
  - `apply_patch` paths stay restricted to the current working directory.
142
142
  - partial `apply_patch` failures stay in the original patch block and highlight the failed entry instead of adding a second warning row.
143
- - `apply_patch` uses Pi's self-rendered tool shell mode for more stable large patch previews on current Pi versions.
144
143
  - `exec_command` / `write_stdin` use a custom PTY-backed session manager via `node-pty` for interactive sessions.
145
144
  - tiny `exec_command` waits are clamped for non-interactive commands so short runs do not burn an avoidable follow-up tool call.
146
145
  - empty `write_stdin` polls are clamped to a meaningful minimum wait so long-running processes are not repolled too aggressively.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@howaboua/pi-codex-conversion",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Codex-oriented tool and prompt adapter for pi coding agent",
5
5
  "type": "module",
6
6
  "repository": {
@@ -287,7 +287,6 @@ export function registerApplyPatchTool(pi: ExtensionAPI): void {
287
287
  "When one task needs coordinated edits across multiple files, send them in a single apply_patch call when one coherent patch will do.",
288
288
  ],
289
289
  parameters: APPLY_PATCH_PARAMETERS,
290
- renderShell: "self",
291
290
  prepareArguments: prepareApplyPatchArguments,
292
291
  async execute(toolCallId, params, signal, _onUpdate, ctx) {
293
292
  if (signal?.aborted) {