@oh-my-pi/pi-coding-agent 16.3.8 → 16.3.10

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 (40) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/cli.js +3050 -3048
  3. package/dist/types/commands/say.d.ts +6 -1
  4. package/dist/types/commit/agentic/lock-files.d.ts +36 -0
  5. package/dist/types/config/model-discovery.d.ts +3 -2
  6. package/dist/types/modes/interactive-mode.d.ts +5 -3
  7. package/dist/types/modes/session-observer-registry.d.ts +3 -1
  8. package/dist/types/session/agent-session.d.ts +11 -7
  9. package/dist/types/task/renderer.d.ts +0 -1
  10. package/dist/types/tools/browser/run-cancellation.d.ts +11 -0
  11. package/dist/types/tools/browser/tab-protocol.d.ts +1 -0
  12. package/dist/types/tools/tool-errors.d.ts +1 -1
  13. package/package.json +12 -12
  14. package/src/commands/say.ts +73 -30
  15. package/src/commit/agentic/index.ts +3 -1
  16. package/src/commit/agentic/lock-files.ts +107 -0
  17. package/src/commit/agentic/tools/git-overview.ts +1 -20
  18. package/src/config/model-discovery.ts +6 -3
  19. package/src/config/model-registry.ts +18 -7
  20. package/src/discovery/claude.ts +12 -8
  21. package/src/extensibility/skills.ts +8 -5
  22. package/src/modes/components/__tests__/skill-message.test.ts +2 -0
  23. package/src/modes/components/agent-hub.ts +17 -2
  24. package/src/modes/components/skill-message.ts +1 -1
  25. package/src/modes/index.ts +0 -7
  26. package/src/modes/interactive-mode.ts +54 -18
  27. package/src/modes/session-observer-registry.ts +11 -8
  28. package/src/sdk.ts +18 -0
  29. package/src/session/agent-session.ts +25 -13
  30. package/src/task/render.test.ts +134 -1
  31. package/src/task/render.ts +24 -6
  32. package/src/task/renderer.ts +0 -1
  33. package/src/tools/browser/cmux/cmux-tab.ts +7 -3
  34. package/src/tools/browser/run-cancellation.ts +28 -8
  35. package/src/tools/browser/tab-protocol.ts +1 -1
  36. package/src/tools/browser/tab-supervisor.ts +4 -4
  37. package/src/tools/browser/tab-worker.ts +19 -7
  38. package/src/tools/irc.ts +18 -2
  39. package/src/tools/tool-errors.ts +3 -3
  40. package/src/tts/speakable.ts +19 -9
package/CHANGELOG.md CHANGED
@@ -2,6 +2,43 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [16.3.10] - 2026-07-06
6
+
7
+ ### Changed
8
+
9
+ - Limited subagent HUD display to 8 items with a summary for additional running subagents
10
+ - Improved TUI performance by coalescing agent registry and observer UI updates
11
+
12
+ ### Fixed
13
+
14
+ - Fixed high-subagent sessions overwhelming the TUI by bounding the running-subagent HUD and coalescing subagent progress repaint bursts.
15
+ - Fixed browser run cleanup crashing or wedging the whole omp session: run-end and tab-close aborts could reject fire-and-forget `wait()`/facade/tab promises with no consumer, and the global unhandled-rejection handler then exited the process, killing every subagent sharing it. Run-scoped promises are now observed at creation and routine browser teardown aborts are downgraded to log lines ([#4499](https://github.com/can1357/oh-my-pi/issues/4499), [#4672](https://github.com/can1357/oh-my-pi/issues/4672)).
16
+ - Reduced CPU use while many task subagents stream progress by disabling the obsolete task partial-result spinner repaint loop ([#4424](https://github.com/can1357/oh-my-pi/issues/4424)).
17
+ - Capped collapsed nested subagent trees at the same per-level agent limit as top-level task rendering (failures prioritized, elided rows summarized), so deep many-subagent sessions no longer render unbounded progress trees on every repaint.
18
+ - Fixed skill card headers to render a single space between the `skill` tag and skill name ([#4662](https://github.com/can1357/oh-my-pi/issues/4662)).
19
+ - Fixed `get_session_stats` RPC responses to include context-window usage so RPC clients can render context meters.
20
+ - Fixed startup of cached llama.cpp vision models so the initial default/restored model refreshes `/props` metadata before the session exposes it as text-only.
21
+ - Fixed IRC-woken yielded subagents skipping empty-stop retry because stale yield-termination state carried into the wake turn ([#4658](https://github.com/can1357/oh-my-pi/issues/4658)).
22
+ - Fixed `irc wait` skipping replies that arrived between wait calls by draining pending IRC asides before honoring queued-interrupt aborts ([#4657](https://github.com/can1357/oh-my-pi/issues/4657)).
23
+
24
+ ## [16.3.9] - 2026-07-06
25
+
26
+ ### Added
27
+
28
+ - Added a `--file` flag to the `say` command to read input text directly from files.
29
+ - Enabled streaming text synthesis in the `say` command for gapless, long-form audio generation.
30
+ - Added voice selection validation to the `say` command.
31
+
32
+ ### Changed
33
+
34
+ - Improved the `say` command to display the segment count and total duration upon completion.
35
+
36
+ ### Fixed
37
+
38
+ - Fixed an issue where local llama.cpp vision models remained text-only after a model refresh, ensuring they are correctly recognized as image-capable when configured as the default or vision role.
39
+ - Fixed `omp commit` split plans aborting when lock files (such as `bun.lockb`) were staged alongside their manifests by correctly pairing lock files with their corresponding commit groups and properly handling binary files during split execution.
40
+ - Fixed skill loading to ensure that disabling a higher-priority provider does not drop same-named skills from enabled lower-priority providers.
41
+
5
42
  ## [16.3.8] - 2026-07-05
6
43
 
7
44
  ### Fixed