@caupulican/pi-adaptative 0.91.3 → 0.92.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 (87) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/bundled-resources/skills/worker-profile-writer/SKILL.md +19 -9
  3. package/dist/cli.js +6 -1
  4. package/dist/cli.js.map +1 -1
  5. package/dist/core/agent-session.d.ts +1 -0
  6. package/dist/core/agent-session.d.ts.map +1 -1
  7. package/dist/core/agent-session.js +20 -33
  8. package/dist/core/agent-session.js.map +1 -1
  9. package/dist/core/autonomy/lane-tool-surface.d.ts.map +1 -1
  10. package/dist/core/autonomy/lane-tool-surface.js +7 -1
  11. package/dist/core/autonomy/lane-tool-surface.js.map +1 -1
  12. package/dist/core/bash-execution-controller.d.ts.map +1 -1
  13. package/dist/core/bash-execution-controller.js +1 -0
  14. package/dist/core/bash-execution-controller.js.map +1 -1
  15. package/dist/core/bash-executor.d.ts +2 -0
  16. package/dist/core/bash-executor.d.ts.map +1 -1
  17. package/dist/core/bash-executor.js +13 -4
  18. package/dist/core/bash-executor.js.map +1 -1
  19. package/dist/core/goals/goal-session-controller.d.ts +18 -1
  20. package/dist/core/goals/goal-session-controller.d.ts.map +1 -1
  21. package/dist/core/goals/goal-session-controller.js +46 -5
  22. package/dist/core/goals/goal-session-controller.js.map +1 -1
  23. package/dist/core/goals/natural-language-goal.d.ts +6 -5
  24. package/dist/core/goals/natural-language-goal.d.ts.map +1 -1
  25. package/dist/core/goals/natural-language-goal.js +109 -2
  26. package/dist/core/goals/natural-language-goal.js.map +1 -1
  27. package/dist/core/tools/bash.d.ts +2 -0
  28. package/dist/core/tools/bash.d.ts.map +1 -1
  29. package/dist/core/tools/bash.js +115 -13
  30. package/dist/core/tools/bash.js.map +1 -1
  31. package/dist/core/tools/delegate.d.ts.map +1 -1
  32. package/dist/core/tools/delegate.js +12 -2
  33. package/dist/core/tools/delegate.js.map +1 -1
  34. package/dist/core/tools/early-powershell-session.d.ts +21 -0
  35. package/dist/core/tools/early-powershell-session.d.ts.map +1 -0
  36. package/dist/core/tools/early-powershell-session.js +137 -0
  37. package/dist/core/tools/early-powershell-session.js.map +1 -0
  38. package/dist/core/tools/output-accumulator.d.ts +2 -0
  39. package/dist/core/tools/output-accumulator.d.ts.map +1 -1
  40. package/dist/core/tools/output-accumulator.js +2 -1
  41. package/dist/core/tools/output-accumulator.js.map +1 -1
  42. package/dist/core/tools/persistent-process-coordinator.d.ts.map +1 -1
  43. package/dist/core/tools/persistent-process-coordinator.js +2 -11
  44. package/dist/core/tools/persistent-process-coordinator.js.map +1 -1
  45. package/dist/core/tools/profile-writer.d.ts +1 -0
  46. package/dist/core/tools/profile-writer.d.ts.map +1 -1
  47. package/dist/core/tools/profile-writer.js +5 -1
  48. package/dist/core/tools/profile-writer.js.map +1 -1
  49. package/dist/core/tools/read.d.ts.map +1 -1
  50. package/dist/core/tools/read.js +13 -1
  51. package/dist/core/tools/read.js.map +1 -1
  52. package/dist/core/tools/session-transcript-read.d.ts +4 -0
  53. package/dist/core/tools/session-transcript-read.d.ts.map +1 -0
  54. package/dist/core/tools/session-transcript-read.js +98 -0
  55. package/dist/core/tools/session-transcript-read.js.map +1 -0
  56. package/dist/core/tools/shell-output-decoder.d.ts +7 -0
  57. package/dist/core/tools/shell-output-decoder.d.ts.map +1 -0
  58. package/dist/core/tools/shell-output-decoder.js +135 -0
  59. package/dist/core/tools/shell-output-decoder.js.map +1 -0
  60. package/dist/core/tools/shell-session.d.ts +23 -6
  61. package/dist/core/tools/shell-session.d.ts.map +1 -1
  62. package/dist/core/tools/shell-session.js +275 -88
  63. package/dist/core/tools/shell-session.js.map +1 -1
  64. package/dist/utils/child-process-ref.d.ts +4 -0
  65. package/dist/utils/child-process-ref.d.ts.map +1 -0
  66. package/dist/utils/child-process-ref.js +15 -0
  67. package/dist/utils/child-process-ref.js.map +1 -0
  68. package/dist/utils/powershell-session-protocol.d.ts +16 -0
  69. package/dist/utils/powershell-session-protocol.d.ts.map +1 -0
  70. package/dist/utils/powershell-session-protocol.js +63 -0
  71. package/dist/utils/powershell-session-protocol.js.map +1 -0
  72. package/dist/utils/shell.d.ts +7 -4
  73. package/dist/utils/shell.d.ts.map +1 -1
  74. package/dist/utils/shell.js +38 -23
  75. package/dist/utils/shell.js.map +1 -1
  76. package/docs/sessions.md +12 -4
  77. package/docs/settings.md +2 -2
  78. package/docs/windows.md +9 -8
  79. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  80. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  81. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  82. package/examples/extensions/sandbox/package-lock.json +2 -2
  83. package/examples/extensions/sandbox/package.json +1 -1
  84. package/examples/extensions/with-deps/package-lock.json +2 -2
  85. package/examples/extensions/with-deps/package.json +1 -1
  86. package/npm-shrinkwrap.json +12 -12
  87. package/package.json +4 -4
package/docs/windows.md CHANGED
@@ -6,7 +6,7 @@ Pi supports native Windows on x64 and ARM64. The Node.js package runs under Wind
6
6
 
7
7
  - Windows 10 or newer
8
8
  - Node.js 24.18 or newer for the npm package
9
- - Windows PowerShell 5.1 or PowerShell 7
9
+ - PowerShell 7 (`pwsh.exe`)
10
10
  - Git for Windows for native Git commands
11
11
  - Windows Terminal, WezTerm, or the VS Code terminal for the best keyboard support
12
12
 
@@ -20,13 +20,12 @@ External programs are not reimplemented. A simple `rg` call runs the installed n
20
20
 
21
21
  Shell persistence preserves process state; it does not require every raw command byte to remain in model context. Recognized single test-runner commands use a bounded command-aware projection after execution: passing/progress chatter is counted, failure blocks and summaries remain visible, exit status is unchanged, and exact raw bytes are saved to the reported managed path. Mixed commands and unknown nonzero formats stay raw, and Pi also falls back to raw output if it cannot create the exact-output handoff.
22
22
 
23
- The agent never selects a shell or emits native PowerShell or Python. Pi resolves the PowerShell executable in this order:
23
+ The agent never selects a shell or emits native PowerShell or Python. Pi accepts only PowerShell 7 and resolves its executable in this order:
24
24
 
25
- 1. `shellPath` in `%USERPROFILE%\.pi\agent\settings.json`
25
+ 1. A `shellPath` ending in `pwsh.exe` in `%USERPROFILE%\.pi\agent\settings.json`
26
26
  2. PowerShell 7 (`pwsh.exe`) on `PATH` or under `Program Files`
27
- 3. Windows PowerShell (`powershell.exe`) under `System32` or on `PATH`
28
27
 
29
- The PowerShell tier runs with `-NoLogo -NoProfile -NonInteractive -Command` and a best-effort UTF-8 console-output prefix. Every agent, interactive, and RPC shell call has a 120-second wall-clock default, even while output continues.
28
+ The PowerShell tier runs with `-NoLogo -NoProfile -NonInteractive -Command`. Pi applies process-only headless settings before startup: PowerShell telemetry, update notifications, diagnostic IPC, ANSI color, and progress rendering are disabled. It warms the long-lived command path once, then reuses that process. Pi gives managed PowerShell output a UTF-8 writer without overwriting `[Console]::InputEncoding`, `[Console]::OutputEncoding`, or `$OutputEncoding`, so native programs retain their code-page choice. The Windows output decoder preserves valid Unicode UTF-8 and recovers Windows-1252 bytes, including mixed streams and UTF-8 sequences split across chunks. Pi's private command framing remains line-safe Base64 with ASCII control markers. Every agent, interactive, and RPC shell call has a 120-second wall-clock default, even while output continues.
30
29
 
31
30
  ### Supported forms
32
31
 
@@ -106,6 +105,8 @@ The Windows release archive includes `collect-pi-incident.ps1` beside `pi.exe`.
106
105
  powershell.exe -NoLogo -NoProfile -ExecutionPolicy Bypass -File .\collect-pi-incident.ps1
107
106
  ```
108
107
 
108
+ This explicit `powershell.exe` invocation is an isolated Windows incident-collection integration, not the agent shell. The agent shell itself requires `pwsh.exe`.
109
+
109
110
  From a source checkout, use `-File .\scripts\collect-pi-incident.ps1`. The collector selects the latest human session by default and creates `pi-incident-<timestamp>.zip` beside the collector script. To select exact evidence or another destination:
110
111
 
111
112
  ```powershell
@@ -169,12 +170,12 @@ See [Terminal setup](terminal-setup.md) for VS Code, WezTerm, and other terminal
169
170
 
170
171
  ## Troubleshooting
171
172
 
172
- ### No PowerShell executable found
173
+ ### PowerShell 7 (`pwsh`) not found
173
174
 
174
- Restore Windows PowerShell, install PowerShell 7, or set `shellPath` to an existing `pwsh.exe`/`powershell.exe`. Confirm discovery from a terminal:
175
+ Install PowerShell 7 or set `shellPath` to an existing `pwsh.exe`. Confirm discovery from a terminal:
175
176
 
176
177
  ```powershell
177
- Get-Command pwsh, powershell -ErrorAction SilentlyContinue
178
+ Get-Command pwsh -ErrorAction Stop
178
179
  ```
179
180
 
180
181
  ### Modified Enter does not reach Pi
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider",
3
- "version": "0.91.3",
3
+ "version": "0.92.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-custom-provider",
9
- "version": "0.91.3",
9
+ "version": "0.92.0",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sdk": "^0.52.0"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.91.3",
4
+ "version": "0.92.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.91.3",
4
+ "version": "0.92.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-sandbox",
3
- "version": "0.91.3",
3
+ "version": "0.92.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-sandbox",
9
- "version": "0.91.3",
9
+ "version": "0.92.0",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sandbox-runtime": "^0.0.26"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-sandbox",
3
3
  "private": true,
4
- "version": "0.91.3",
4
+ "version": "0.92.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-with-deps",
3
- "version": "0.91.3",
3
+ "version": "0.92.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-with-deps",
9
- "version": "0.91.3",
9
+ "version": "0.92.0",
10
10
  "dependencies": {
11
11
  "ms": "^2.1.3"
12
12
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.91.3",
4
+ "version": "0.92.0",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@caupulican/pi-adaptative",
3
- "version": "0.91.3",
3
+ "version": "0.92.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@caupulican/pi-adaptative",
9
- "version": "0.91.3",
9
+ "version": "0.92.0",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "@caupulican/pi-agent-core": "^0.91.3",
13
- "@caupulican/pi-ai": "^0.91.3",
14
- "@caupulican/pi-tui": "^0.91.3",
12
+ "@caupulican/pi-agent-core": "^0.92.0",
13
+ "@caupulican/pi-ai": "^0.92.0",
14
+ "@caupulican/pi-tui": "^0.92.0",
15
15
  "@silvia-odwyer/photon-node": "0.3.4",
16
16
  "chalk": "5.6.2",
17
17
  "cross-spawn": "7.0.6",
@@ -547,11 +547,11 @@
547
547
  }
548
548
  },
549
549
  "node_modules/@caupulican/pi-agent-core": {
550
- "version": "0.91.3",
551
- "resolved": "https://registry.npmjs.org/@caupulican/pi-agent-core/-/pi-agent-core-0.91.3.tgz",
550
+ "version": "0.92.0",
551
+ "resolved": "https://registry.npmjs.org/@caupulican/pi-agent-core/-/pi-agent-core-0.92.0.tgz",
552
552
  "license": "MIT",
553
553
  "dependencies": {
554
- "@caupulican/pi-ai": "^0.91.3",
554
+ "@caupulican/pi-ai": "^0.92.0",
555
555
  "ignore": "7.0.5",
556
556
  "typebox": "1.1.38",
557
557
  "yaml": "2.9.0"
@@ -561,8 +561,8 @@
561
561
  }
562
562
  },
563
563
  "node_modules/@caupulican/pi-ai": {
564
- "version": "0.91.3",
565
- "resolved": "https://registry.npmjs.org/@caupulican/pi-ai/-/pi-ai-0.91.3.tgz",
564
+ "version": "0.92.0",
565
+ "resolved": "https://registry.npmjs.org/@caupulican/pi-ai/-/pi-ai-0.92.0.tgz",
566
566
  "license": "MIT",
567
567
  "dependencies": {
568
568
  "@anthropic-ai/sdk": "0.91.1",
@@ -616,8 +616,8 @@
616
616
  }
617
617
  },
618
618
  "node_modules/@caupulican/pi-tui": {
619
- "version": "0.91.3",
620
- "resolved": "https://registry.npmjs.org/@caupulican/pi-tui/-/pi-tui-0.91.3.tgz",
619
+ "version": "0.92.0",
620
+ "resolved": "https://registry.npmjs.org/@caupulican/pi-tui/-/pi-tui-0.92.0.tgz",
621
621
  "license": "MIT",
622
622
  "dependencies": {
623
623
  "get-east-asian-width": "1.6.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caupulican/pi-adaptative",
3
- "version": "0.91.3",
3
+ "version": "0.92.0",
4
4
  "description": "Adaptive fork of Pi coding agent for self-evolving agent harness experiments",
5
5
  "type": "module",
6
6
  "piConfig": {
@@ -89,9 +89,9 @@
89
89
  "postinstall": "node scripts/postinstall-python-runtime.mjs"
90
90
  },
91
91
  "dependencies": {
92
- "@caupulican/pi-agent-core": "^0.91.3",
93
- "@caupulican/pi-ai": "^0.91.3",
94
- "@caupulican/pi-tui": "^0.91.3",
92
+ "@caupulican/pi-agent-core": "^0.92.0",
93
+ "@caupulican/pi-ai": "^0.92.0",
94
+ "@caupulican/pi-tui": "^0.92.0",
95
95
  "@silvia-odwyer/photon-node": "0.3.4",
96
96
  "chalk": "5.6.2",
97
97
  "cross-spawn": "7.0.6",