@howaboua/pi-codex-conversion 1.0.7 → 1.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@howaboua/pi-codex-conversion",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Codex-oriented tool and prompt adapter for pi coding agent",
5
5
  "type": "module",
6
6
  "repository": {
@@ -5,6 +5,8 @@ export interface PromptSkill {
5
5
  }
6
6
 
7
7
  const CODEX_GUIDELINES = [
8
+ "Prefer a single `apply_patch` call that updates all related files together when one coherent patch will do.",
9
+ "When multiple tool calls are independent, emit them together so they can execute in parallel instead of serializing them.",
8
10
  "Use `parallel` only when tool calls are independent and can safely run at the same time.",
9
11
  "Use `write_stdin` when an exec session returns `session_id`, and continue until `exit_code` is present.",
10
12
  "Do not request `tty` unless interactive terminal behavior is required.",