@mariozechner/pi-coding-agent 0.51.5 → 0.52.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 (86) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/dist/core/agent-session.d.ts +4 -2
  3. package/dist/core/agent-session.d.ts.map +1 -1
  4. package/dist/core/agent-session.js +22 -11
  5. package/dist/core/agent-session.js.map +1 -1
  6. package/dist/core/auth-storage.d.ts.map +1 -1
  7. package/dist/core/auth-storage.js +2 -1
  8. package/dist/core/auth-storage.js.map +1 -1
  9. package/dist/core/export-html/template.css +7 -0
  10. package/dist/core/export-html/template.js +32 -15
  11. package/dist/core/keybindings.d.ts +1 -1
  12. package/dist/core/keybindings.d.ts.map +1 -1
  13. package/dist/core/keybindings.js +2 -0
  14. package/dist/core/keybindings.js.map +1 -1
  15. package/dist/core/model-registry.d.ts +2 -1
  16. package/dist/core/model-registry.d.ts.map +1 -1
  17. package/dist/core/model-registry.js +2 -53
  18. package/dist/core/model-registry.js.map +1 -1
  19. package/dist/core/package-manager.d.ts +2 -0
  20. package/dist/core/package-manager.d.ts.map +1 -1
  21. package/dist/core/package-manager.js +10 -19
  22. package/dist/core/package-manager.js.map +1 -1
  23. package/dist/core/resolve-config-value.d.ts +17 -0
  24. package/dist/core/resolve-config-value.d.ts.map +1 -0
  25. package/dist/core/resolve-config-value.js +59 -0
  26. package/dist/core/resolve-config-value.js.map +1 -0
  27. package/dist/core/session-manager.d.ts.map +1 -1
  28. package/dist/core/session-manager.js +8 -2
  29. package/dist/core/session-manager.js.map +1 -1
  30. package/dist/core/settings-manager.d.ts +1 -0
  31. package/dist/core/settings-manager.d.ts.map +1 -1
  32. package/dist/core/settings-manager.js +19 -0
  33. package/dist/core/settings-manager.js.map +1 -1
  34. package/dist/core/skills.d.ts.map +1 -1
  35. package/dist/core/skills.js +57 -34
  36. package/dist/core/skills.js.map +1 -1
  37. package/dist/main.d.ts.map +1 -1
  38. package/dist/main.js +22 -16
  39. package/dist/main.js.map +1 -1
  40. package/dist/modes/interactive/components/footer.d.ts.map +1 -1
  41. package/dist/modes/interactive/components/footer.js +1 -1
  42. package/dist/modes/interactive/components/footer.js.map +1 -1
  43. package/dist/modes/interactive/components/model-selector.d.ts.map +1 -1
  44. package/dist/modes/interactive/components/model-selector.js +5 -0
  45. package/dist/modes/interactive/components/model-selector.js.map +1 -1
  46. package/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -1
  47. package/dist/modes/interactive/components/scoped-models-selector.js +5 -0
  48. package/dist/modes/interactive/components/scoped-models-selector.js.map +1 -1
  49. package/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
  50. package/dist/modes/interactive/components/tool-execution.js +49 -34
  51. package/dist/modes/interactive/components/tool-execution.js.map +1 -1
  52. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  53. package/dist/modes/interactive/interactive-mode.js +20 -1
  54. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  55. package/dist/modes/rpc/rpc-client.d.ts +2 -2
  56. package/dist/modes/rpc/rpc-client.d.ts.map +1 -1
  57. package/dist/modes/rpc/rpc-client.js +4 -4
  58. package/dist/modes/rpc/rpc-client.js.map +1 -1
  59. package/dist/modes/rpc/rpc-mode.d.ts.map +1 -1
  60. package/dist/modes/rpc/rpc-mode.js +2 -2
  61. package/dist/modes/rpc/rpc-mode.js.map +1 -1
  62. package/dist/modes/rpc/rpc-types.d.ts +2 -0
  63. package/dist/modes/rpc/rpc-types.d.ts.map +1 -1
  64. package/dist/modes/rpc/rpc-types.js.map +1 -1
  65. package/dist/utils/git.d.ts +21 -1
  66. package/dist/utils/git.d.ts.map +1 -1
  67. package/dist/utils/git.js +47 -4
  68. package/dist/utils/git.js.map +1 -1
  69. package/dist/utils/shell.d.ts +1 -2
  70. package/dist/utils/shell.d.ts.map +1 -1
  71. package/dist/utils/shell.js +27 -6
  72. package/dist/utils/shell.js.map +1 -1
  73. package/docs/keybindings.md +1 -0
  74. package/docs/packages.md +19 -0
  75. package/docs/providers.md +18 -0
  76. package/docs/rpc.md +16 -2
  77. package/docs/skills.md +2 -1
  78. package/examples/extensions/README.md +1 -0
  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/custom-provider-qwen-cli/package.json +1 -1
  83. package/examples/extensions/minimal-mode.ts +426 -0
  84. package/examples/extensions/with-deps/package-lock.json +2 -2
  85. package/examples/extensions/with-deps/package.json +1 -1
  86. package/package.json +6 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.52.0] - 2026-02-05
4
+
5
+ ### New Features
6
+
7
+ - Claude Opus 4.6 model support.
8
+ - GPT-5.3 Codex model support (OpenAI Codex provider only).
9
+ - SSH URL support for git packages. See [docs/packages.md](docs/packages.md).
10
+ - `auth.json` API keys now support shell command resolution (`!command`) and environment variable lookup. See [docs/providers.md](docs/providers.md).
11
+ - Model selectors now display the selected model name.
12
+
13
+ ### Added
14
+
15
+ - API keys in `auth.json` now support shell command resolution (`!command`) and environment variable lookup, matching the behavior in `models.json`
16
+ - Added `minimal-mode.ts` example extension demonstrating how to override built-in tool rendering for a minimal display mode
17
+ - Added Claude Opus 4.6 model to the model catalog
18
+ - Added GPT-5.3 Codex model to the model catalog (OpenAI Codex provider only)
19
+ - Added SSH URL support for git packages ([#1287](https://github.com/badlogic/pi-mono/pull/1287) by [@markusn](https://github.com/markusn))
20
+ - Model selectors now display the selected model name ([#1275](https://github.com/badlogic/pi-mono/pull/1275) by [@haoqixu](https://github.com/haoqixu))
21
+
22
+ ### Fixed
23
+
24
+ - Fixed HTML export losing indentation in ANSI-rendered tool output (e.g. JSON code blocks in custom tool results) ([#1269](https://github.com/badlogic/pi-mono/pull/1269) by [@aliou](https://github.com/aliou))
25
+ - Fixed images being silently dropped when `prompt()` is called with both `images` and `streamingBehavior` during streaming. `steer()`, `followUp()`, and the corresponding RPC commands now accept optional images. ([#1271](https://github.com/badlogic/pi-mono/pull/1271) by [@aliou](https://github.com/aliou))
26
+ - CLI `--help`, `--version`, `--list-models`, and `--export` now exit even if extensions keep the event loop alive ([#1285](https://github.com/badlogic/pi-mono/pull/1285) by [@ferologics](https://github.com/ferologics))
27
+ - Fixed crash when models send malformed tool arguments (objects instead of strings) ([#1259](https://github.com/badlogic/pi-mono/issues/1259))
28
+ - Fixed custom message expand state not being respected ([#1258](https://github.com/badlogic/pi-mono/pull/1258) by [@Gurpartap](https://github.com/Gurpartap))
29
+ - Fixed skill loader to respect .gitignore, .ignore, and .fdignore when scanning directories
30
+
31
+ ## [0.51.6] - 2026-02-04
32
+
33
+ ### New Features
34
+
35
+ - Configurable resume keybinding action for opening the session resume selector. See [docs/keybindings.md](docs/keybindings.md). ([#1249](https://github.com/badlogic/pi-mono/pull/1249) by [@juanibiapina](https://github.com/juanibiapina))
36
+
37
+ ### Added
38
+
39
+ - Added `resume` as a configurable keybinding action, allowing users to bind a key to open the session resume selector (like `newSession`, `tree`, and `fork`) ([#1249](https://github.com/badlogic/pi-mono/pull/1249) by [@juanibiapina](https://github.com/juanibiapina))
40
+
41
+ ### Changed
42
+
43
+ - Slash command menu now triggers on the first line even when other lines have content, allowing commands to be prepended to existing text ([#1227](https://github.com/badlogic/pi-mono/pull/1227) by [@aliou](https://github.com/aliou))
44
+
45
+ ### Fixed
46
+
47
+ - Ignored unknown skill frontmatter fields when loading skills
48
+ - Fixed `/reload` not picking up changes in global settings.json ([#1241](https://github.com/badlogic/pi-mono/issues/1241))
49
+ - Fixed forked sessions to persist the user message after forking
50
+ - Fixed forked sessions to write to new session files instead of the parent ([#1242](https://github.com/badlogic/pi-mono/issues/1242))
51
+ - Fixed local package removal to normalize paths before comparison ([#1243](https://github.com/badlogic/pi-mono/issues/1243))
52
+ - Fixed OpenAI Codex Responses provider to respect configured baseUrl ([#1244](https://github.com/badlogic/pi-mono/issues/1244))
53
+ - Fixed `/settings` crashing in narrow terminals by handling small widths in the settings list ([#1246](https://github.com/badlogic/pi-mono/pull/1246) by [@haoqixu](https://github.com/haoqixu))
54
+ - Fixed Unix bash detection to fall back to PATH lookup when `/bin/bash` is unavailable, including Termux setups ([#1230](https://github.com/badlogic/pi-mono/pull/1230) by [@VaclavSynacek](https://github.com/VaclavSynacek))
55
+
3
56
  ## [0.51.5] - 2026-02-04
4
57
 
5
58
  ### Changed
@@ -282,16 +282,18 @@ export declare class AgentSession {
282
282
  * Queue a steering message to interrupt the agent mid-run.
283
283
  * Delivered after current tool execution, skips remaining tools.
284
284
  * Expands skill commands and prompt templates. Errors on extension commands.
285
+ * @param images Optional image attachments to include with the message
285
286
  * @throws Error if text is an extension command
286
287
  */
287
- steer(text: string): Promise<void>;
288
+ steer(text: string, images?: ImageContent[]): Promise<void>;
288
289
  /**
289
290
  * Queue a follow-up message to be processed after the agent finishes.
290
291
  * Delivered only when agent has no more tool calls or steering messages.
291
292
  * Expands skill commands and prompt templates. Errors on extension commands.
293
+ * @param images Optional image attachments to include with the message
292
294
  * @throws Error if text is an extension command
293
295
  */
294
- followUp(text: string): Promise<void>;
296
+ followUp(text: string, images?: ImageContent[]): Promise<void>;
295
297
  private _queueSteer;
296
298
  private _queueFollowUp;
297
299
  /**