chore(deps): update dependency can1357/oh-my-pi to v15.11.1 #57

Merged
renovate-bot merged 2 commits from renovate/can1357-oh-my-pi-15.x into main 2026-06-11 16:02:49 +00:00
Collaborator

This PR contains the following updates:

Package Update Change
can1357/oh-my-pi patch 15.11.015.11.1

⚠️ Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

can1357/oh-my-pi (can1357/oh-my-pi)

v15.11.1

Compare Source

@​oh-my-pi/pi-ai

Changed
  • Exported resolveAnthropicMetadataUserId so non-streaming Anthropic Messages consumers (e.g. the coding-agent web search provider) can produce the same Claude-Code-shaped metadata.user_id as the main streaming path.
Fixed
  • Preserved Anthropic stop_details on assistant messages so refusal and sensitive classifier stops remain structurally visible to callers. (#​2290)
  • Fixed OpenAI Responses, Azure OpenAI Responses, and OpenAI Completions streams hanging until the 120s idle watchdog errored the turn when a provider delivers the terminal frame but never sends [DONE] nor closes the connection. processResponsesStream now breaks out of the event loop on response.completed/response.incomplete (mirroring the Codex websocket/SSE terminal break), and the completions consumer breaks once finish_reason plus a usage payload arrived — or, for hosts that never send usage, ends the stream cleanly via a short post-finish grace window (iterateWithTerminalGrace) that aborts the transport to release the socket.

@​oh-my-pi/pi-catalog

Fixed
  • Fixed NVIDIA NIM Qwen turns failing with 400 Validation: Unsupported parameter(s): enable_thinking. NIM's chat-completions schema is additionalProperties: false and exposes thinking via the vLLM convention chat_template_kwargs.enable_thinking; buildOpenAICompat was sending top-level enable_thinking for every qwen/* id regardless of host. Registered nvidia as a known host (integrate.api.nvidia.com) and routed NVIDIA-hosted Qwen models to thinkingFormat: "qwen-chat-template" (#​2299).
  • Fixed Moonshot/Kimi native OpenAI-compatible request metadata so Kimi K2 uses max_tokens and omits OpenAI-only store, restoring first-turn output with MOONSHOT_API_KEY (#​2289).

@​oh-my-pi/pi-coding-agent

Added
  • Added the statusLine.transparent appearance setting (default off): when enabled, the status line skips the theme's statusLineBg fill and powerline end caps so the bar inherits the terminal's default background — useful in Ghostty and other terminals whose theme background does not match the theme's hardcoded status-line color (#​2306)
Changed
  • Changed display.smoothStreaming to animate streamed tool-call arguments (including write/edit/bash previews) at the smooth streaming cadence so partial tool input now appears progressively instead of in large jumps
  • Changed streamed updates for custom wire tools to render incremental raw input as { input } prefixes for preview
  • async.enabled now defaults to true, keeping background task execution and async bash available out of the box; disable it to force blocking subtasks (#​2301).
  • Shortened the status line's background-job indicator to a dedicated gear icon plus count (e.g. ⚙ 1 instead of 👥 1 job running) and moved it left of the session name in the right segment group
Fixed
  • Fixed the task tool's streaming call preview rendering the per-agent list above the shared context/assignment briefs: agent rows now render below them, matching the result layout, so the list no longer pushes the brief down as items stream in and then jumps below it once the first progress snapshot arrives
  • Fixed interrupted or ending tool calls to flush streamed argument previews to the full received payload instead of freezing on a partial reveal chunk
  • Fixed tool-argument reveal to avoid splitting UTF-16 surrogate pairs at frame boundaries
  • Fixed input lag in long sessions whenever a spinner was visible: loader ticks forced a full TUI re-compose (re-walking every transcript block) 12.5 times per second. Animations that only change their own rows (status loaders, welcome intro, voice mic glyph, /btw streaming panel) now use the new component-scoped render path (TUI.requestComponentRender), which reuses every other root subtree's rows; resize, overlays, inline images, forced repaints, root-list changes, or any concurrent full request still compose the full frame
  • Fixed transcript rendering so blocks with rows committed to scrollback while still streaming rerender on the first finalized frame, so the final committed output is visible instead of stale in-flight lines
  • Fixed committed transcript bypass logic to re-render finalized blocks when their version changes, so post-finalization updates like restored inline errors and late tool-result content now appear in scrollback
  • Cached stable edit/write preview highlighting inside each tool component so steady-state frame renders do not re-enter the native syntax highlighter.
  • Skipped rendering finalized transcript blocks whose rows are already committed to native scrollback, keeping long restored sessions from re-rendering historical tool blocks every frame.
  • Fixed MCP OAuth authorization and token requests to include the required resource indicator for the target MCP server.
  • Restored async.enabled=false as the task tool's blocking mode, so subagents no longer become background jobs when async execution is disabled (#​2301).
  • Fixed the /tree selector and HTML session export dropping the inherited gutter for chain rows under a last-sibling branch, so the conversation flow under a └─ branch stays visually anchored to its parent message (#​2298).
  • Fixed Anthropic web search requests to include metadata.user_id, matching the main Messages path: API-key requests forward the active session id verbatim, OAuth requests build the Claude-Code-shaped {session_id, account_uuid?, device_id} JSON envelope so gateways see consistent attribution (#​2295).
  • Fixed Anthropic classifier refusals to switch through configured retry fallback chains without same-model retries, and to keep the fallback pinned for the conversation. (#​2290)
  • Fixed the edit-tool hashline prompt to stop steering agents toward insert after block N: on closing delimiter lines; opener-only block anchors now point visible closing-line insertions to plain insert after M:. (#​2292)

@​oh-my-pi/hashline

Fixed
  • Fixed the insert after block N: prompt guidance so it explicitly says N must be the block opener, not the closing delimiter or last visible line, and points visible closing-line edits to plain insert after M:. (#​2292)

@​oh-my-pi/pi-tui

Added
  • Added TUI.requestComponentRender(component) to schedule component-scoped renders for self-contained updates
Changed
  • Changed the render pipeline to reuse only affected root subtrees for component-scoped updates, avoiding full-tree compose when animations or other isolated component changes occur
Fixed
  • Fixed component-scoped renders to preserve prior live scrollback seam data for skipped root children, preventing duplicate or missing rows during spinner-only updates
  • Reported committed native scrollback row counts to interested child components so immutable history can be skipped without breaking live-region commit bookkeeping.
  • Fixed ProcessTerminal treating asynchronous stdout EIO errors as uncaught exceptions: stdout error events now mark the terminal dead, disable future renders, and keep the active session process alive (#​2284).

@​oh-my-pi/pi-utils

Fixed
  • Fixed cleanup reentry noise during fatal shutdown: recursive cleanup requests now no-op idempotently instead of logging repeated Cleanup invoked recursively errors (#​2284).

What's Changed

New Contributors

Full Changelog: https://github.com/can1357/oh-my-pi/compare/v15.11.0...v15.11.1


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [can1357/oh-my-pi](https://github.com/can1357/oh-my-pi) | patch | `15.11.0` → `15.11.1` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the warning logs for more information. --- ### Release Notes <details> <summary>can1357/oh-my-pi (can1357/oh-my-pi)</summary> ### [`v15.11.1`](https://github.com/can1357/oh-my-pi/releases/tag/v15.11.1) [Compare Source](https://github.com/can1357/oh-my-pi/compare/v15.11.0...v15.11.1) #### [@&#8203;oh-my-pi/pi-ai](https://github.com/oh-my-pi/pi-ai) ##### Changed - Exported `resolveAnthropicMetadataUserId` so non-streaming Anthropic Messages consumers (e.g. the coding-agent web search provider) can produce the same Claude-Code-shaped `metadata.user_id` as the main streaming path. ##### Fixed - Preserved Anthropic `stop_details` on assistant messages so refusal and sensitive classifier stops remain structurally visible to callers. ([#&#8203;2290](https://github.com/can1357/oh-my-pi/issues/2290)) - Fixed OpenAI Responses, Azure OpenAI Responses, and OpenAI Completions streams hanging until the 120s idle watchdog errored the turn when a provider delivers the terminal frame but never sends `[DONE]` nor closes the connection. `processResponsesStream` now breaks out of the event loop on `response.completed`/`response.incomplete` (mirroring the Codex websocket/SSE terminal break), and the completions consumer breaks once `finish_reason` plus a usage payload arrived — or, for hosts that never send usage, ends the stream cleanly via a short post-finish grace window (`iterateWithTerminalGrace`) that aborts the transport to release the socket. #### [@&#8203;oh-my-pi/pi-catalog](https://github.com/oh-my-pi/pi-catalog) ##### Fixed - Fixed NVIDIA NIM Qwen turns failing with `400 Validation: Unsupported parameter(s): enable_thinking`. NIM's chat-completions schema is `additionalProperties: false` and exposes thinking via the vLLM convention `chat_template_kwargs.enable_thinking`; `buildOpenAICompat` was sending top-level `enable_thinking` for every `qwen/*` id regardless of host. Registered `nvidia` as a known host (`integrate.api.nvidia.com`) and routed NVIDIA-hosted Qwen models to `thinkingFormat: "qwen-chat-template"` ([#&#8203;2299](https://github.com/can1357/oh-my-pi/issues/2299)). - Fixed Moonshot/Kimi native OpenAI-compatible request metadata so Kimi K2 uses `max_tokens` and omits OpenAI-only `store`, restoring first-turn output with `MOONSHOT_API_KEY` ([#&#8203;2289](https://github.com/can1357/oh-my-pi/issues/2289)). #### [@&#8203;oh-my-pi/pi-coding-agent](https://github.com/oh-my-pi/pi-coding-agent) ##### Added - Added the `statusLine.transparent` appearance setting (default off): when enabled, the status line skips the theme's `statusLineBg` fill and powerline end caps so the bar inherits the terminal's default background — useful in Ghostty and other terminals whose theme background does not match the theme's hardcoded status-line color ([#&#8203;2306](https://github.com/can1357/oh-my-pi/issues/2306)) ##### Changed - Changed `display.smoothStreaming` to animate streamed tool-call arguments (including write/edit/bash previews) at the smooth streaming cadence so partial tool input now appears progressively instead of in large jumps - Changed streamed updates for custom wire tools to render incremental raw input as `{ input }` prefixes for preview - `async.enabled` now defaults to `true`, keeping background task execution and async bash available out of the box; disable it to force blocking subtasks ([#&#8203;2301](https://github.com/can1357/oh-my-pi/issues/2301)). - Shortened the status line's background-job indicator to a dedicated gear icon plus count (e.g. `⚙ 1` instead of `👥 1 job running`) and moved it left of the session name in the right segment group ##### Fixed - Fixed the task tool's streaming call preview rendering the per-agent list above the shared context/assignment briefs: agent rows now render below them, matching the result layout, so the list no longer pushes the brief down as items stream in and then jumps below it once the first progress snapshot arrives - Fixed interrupted or ending tool calls to flush streamed argument previews to the full received payload instead of freezing on a partial reveal chunk - Fixed tool-argument reveal to avoid splitting UTF-16 surrogate pairs at frame boundaries - Fixed input lag in long sessions whenever a spinner was visible: loader ticks forced a full TUI re-compose (re-walking every transcript block) 12.5 times per second. Animations that only change their own rows (status loaders, welcome intro, voice mic glyph, `/btw` streaming panel) now use the new component-scoped render path (`TUI.requestComponentRender`), which reuses every other root subtree's rows; resize, overlays, inline images, forced repaints, root-list changes, or any concurrent full request still compose the full frame - Fixed transcript rendering so blocks with rows committed to scrollback while still streaming rerender on the first finalized frame, so the final committed output is visible instead of stale in-flight lines - Fixed committed transcript bypass logic to re-render finalized blocks when their version changes, so post-finalization updates like restored inline errors and late tool-result content now appear in scrollback - Cached stable edit/write preview highlighting inside each tool component so steady-state frame renders do not re-enter the native syntax highlighter. - Skipped rendering finalized transcript blocks whose rows are already committed to native scrollback, keeping long restored sessions from re-rendering historical tool blocks every frame. - Fixed MCP OAuth authorization and token requests to include the required `resource` indicator for the target MCP server. - Restored `async.enabled=false` as the task tool's blocking mode, so subagents no longer become background jobs when async execution is disabled ([#&#8203;2301](https://github.com/can1357/oh-my-pi/issues/2301)). - Fixed the `/tree` selector and HTML session export dropping the inherited `│` gutter for chain rows under a last-sibling branch, so the conversation flow under a `└─` branch stays visually anchored to its parent message ([#&#8203;2298](https://github.com/can1357/oh-my-pi/issues/2298)). - Fixed Anthropic web search requests to include `metadata.user_id`, matching the main Messages path: API-key requests forward the active session id verbatim, OAuth requests build the Claude-Code-shaped `{session_id, account_uuid?, device_id}` JSON envelope so gateways see consistent attribution ([#&#8203;2295](https://github.com/can1357/oh-my-pi/issues/2295)). - Fixed Anthropic classifier refusals to switch through configured retry fallback chains without same-model retries, and to keep the fallback pinned for the conversation. ([#&#8203;2290](https://github.com/can1357/oh-my-pi/issues/2290)) - Fixed the edit-tool hashline prompt to stop steering agents toward `insert after block N:` on closing delimiter lines; opener-only block anchors now point visible closing-line insertions to plain `insert after M:`. ([#&#8203;2292](https://github.com/can1357/oh-my-pi/issues/2292)) #### [@&#8203;oh-my-pi/hashline](https://github.com/oh-my-pi/hashline) ##### Fixed - Fixed the `insert after block N:` prompt guidance so it explicitly says N must be the block opener, not the closing delimiter or last visible line, and points visible closing-line edits to plain `insert after M:`. ([#&#8203;2292](https://github.com/can1357/oh-my-pi/issues/2292)) #### [@&#8203;oh-my-pi/pi-tui](https://github.com/oh-my-pi/pi-tui) ##### Added - Added `TUI.requestComponentRender(component)` to schedule component-scoped renders for self-contained updates ##### Changed - Changed the render pipeline to reuse only affected root subtrees for component-scoped updates, avoiding full-tree compose when animations or other isolated component changes occur ##### Fixed - Fixed component-scoped renders to preserve prior live scrollback seam data for skipped root children, preventing duplicate or missing rows during spinner-only updates - Reported committed native scrollback row counts to interested child components so immutable history can be skipped without breaking live-region commit bookkeeping. - Fixed `ProcessTerminal` treating asynchronous stdout `EIO` errors as uncaught exceptions: stdout `error` events now mark the terminal dead, disable future renders, and keep the active session process alive ([#&#8203;2284](https://github.com/can1357/oh-my-pi/issues/2284)). #### [@&#8203;oh-my-pi/pi-utils](https://github.com/oh-my-pi/pi-utils) ##### Fixed - Fixed cleanup reentry noise during fatal shutdown: recursive cleanup requests now no-op idempotently instead of logging repeated `Cleanup invoked recursively` errors ([#&#8203;2284](https://github.com/can1357/oh-my-pi/issues/2284)). #### What's Changed - fix(tui): handle stdout EIO renderer failures by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2285](https://github.com/can1357/oh-my-pi/pull/2285) - fix(mcp): hide Windows cmd stdio shims by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2288](https://github.com/can1357/oh-my-pi/pull/2288) - fix(catalog): correct Moonshot Kimi request shaping by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2291](https://github.com/can1357/oh-my-pi/pull/2291) - fix(hashline): clarify insert-after-block anchors by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2293](https://github.com/can1357/oh-my-pi/pull/2293) - fix(retry): fall back on Anthropic refusals by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2294](https://github.com/can1357/oh-my-pi/pull/2294) - fix(providers): send Anthropic search metadata.user\_id by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2296](https://github.com/can1357/oh-my-pi/pull/2296) - fix(catalog): route NVIDIA-hosted qwen to chat\_template\_kwargs.enable\_thinking by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2300](https://github.com/can1357/oh-my-pi/pull/2300) - fix(tui): extend chain gutter past last-sibling branches in tree view by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2303](https://github.com/can1357/oh-my-pi/pull/2303) - feat(tui): add `statusLine.transparent` setting for terminal-native status bar background by [@&#8203;roboomp](https://github.com/roboomp) in [#&#8203;2307](https://github.com/can1357/oh-my-pi/pull/2307) - Fix MCP OAuth resource indicator by [@&#8203;th3fallen](https://github.com/th3fallen) in [#&#8203;2269](https://github.com/can1357/oh-my-pi/pull/2269) - Fix render CPU thrash in long transcripts by [@&#8203;cexll](https://github.com/cexll) in [#&#8203;2309](https://github.com/can1357/oh-my-pi/pull/2309) #### New Contributors - [@&#8203;th3fallen](https://github.com/th3fallen) made their first contribution in [#&#8203;2269](https://github.com/can1357/oh-my-pi/pull/2269) **Full Changelog**: <https://github.com/can1357/oh-my-pi/compare/v15.11.0...v15.11.1> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMTkuMCIsInVwZGF0ZWRJblZlciI6IjQzLjIxOS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
chore(deps): update dependency can1357/oh-my-pi to v15.11.1
All checks were successful
Update hashes / update-hashes (pull_request) Successful in 1m27s
9a3b193cb5
renovate-bot scheduled this pull request to auto merge when all checks succeed 2026-06-11 16:01:25 +00:00
renovate-bot deleted branch renovate/can1357-oh-my-pi-15.x 2026-06-11 16:02:49 +00:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
mandlm/omp-nix!57
No description provided.