can1357--oh-my-pi
68 KiB
68 KiB
Changelog
[Unreleased]
Added
- Added automated image-dropping rescue tier to compaction dead-end recovery
- Added visual warnings to the session timeline when compaction fails to free sufficient space
Changed
- Improved compaction dead-end notifications with specific recovery instructions
[16.4.5] - 2026-07-11
Added
- Added a process-global pause gate (
agentPauseGate) to safely pause agent loops before model calls or tool executions, allowing them to be resumed later or aborted cleanly.
[16.4.3] - 2026-07-11
Fixed
- Fixed an issue where skipped sibling tool results incorrectly reported that a queued user message caused the skip.
[16.4.2] - 2026-07-10
Fixed
- Fixed serialization of BigInt tool arguments to prevent data loss during remote compaction.
[16.4.1] - 2026-07-10
Fixed
- Enabled reasoning encryption content for all Responses Lite compaction requests
[16.4.0] - 2026-07-10
Added
- Added the
ThinkingLevel.Max("max") configuration option, mapping to theEffort.Maxtier for supported models.
Fixed
- Fixed remote compaction behavior for Codex Responses Lite (GPT-5.6 family) models across both V1 and V2 endpoints to ensure correct formatting and routing.
- Fixed an issue where aborted tool-result hooks could trigger subsequent provider calls before the abort signal fully settled.
[16.3.12] - 2026-07-08
Added
- Added per-tool abort metadata so stream-wide aborts can label matching tool-call placeholders separately from unaffected sibling calls (#2783).
Fixed
- Fixed handoff generation retrying with
toolChoice: "auto"when custom OpenAI-compatible providers rejecttoolChoice: "none"with an auto-only 400. (#4715) - Fixed generic remote compaction against OpenAI-compatible
/chat/completionsendpoints (for example llama.cppopenai-completions) by sending chat messages instead of the custom{ systemPrompt, prompt }summarizer payload. (#4630)
[16.3.7] - 2026-07-05
Fixed
- Fixed an issue where provider orchestration tokens were incorrectly included in context token calculations, which could trigger premature context auto-compaction and promotion.
[16.3.3] - 2026-07-02
Changed
- Enabled dynamic model resolution to support seamless mid-run model switching.
Fixed
- Fixed an issue in the Cursor agent where assistant messages containing native tool calls could duplicate text blocks on replay.
- Fixed a bug where Cursor agent exec-channel tools (such as bash, write, and delete) were executed a second time after server-side execution.
- Improved error handling for tool calls interrupted by upstream provider stream errors, distinguishing transport/provider failures from local tool execution failures in the CLI, events, and messages.
[16.3.0] - 2026-07-02
Added
- Added support for Anthropic fallback content blocks in agent-loop assistant messages, ensuring they are preserved across session persistence and event fanout.
Fixed
- Fixed an issue where legacy steering messages were prematurely consumed and dropped during in-flight tool execution polls.
- Fixed an issue where skipped tool results in queued messages were incorrectly treated as completed, preventing necessary retries.
- Improved branch summaries to preserve informative tool results from abandoned branches while filtering out redundant output.
- Fixed interruptible tool waits to properly abort on host-provided IRC interrupts in addition to user steering.
- Fixed schema validation errors for closed union tools by correctly injecting intent tracing into each variant.
- Fixed token compaction reserve-budget logic to honor explicit reserveTokens values equal to the built-in default, and clamped the fallback reserve to at least one token for very small context windows.
[16.2.4] - 2026-06-28
Changed
- Improved the reliability of remote compaction by introducing transient error retries, configurable timeouts, and immediate termination upon user-initiated aborts.
Fixed
- Fixed an issue where assistant responses and encrypted reasoning could be lost during local history trimming prior to remote compaction.
- Fixed type compatibility for hosts with title audit entries by adding support for
title_changesession metadata. - Fixed an issue where transient stream read failures after a completed tool call were treated as terminal errors, allowing the agent to successfully execute the tool and continue the turn.
[16.2.3] - 2026-06-28
Changed
- Enabled V2 streaming remote compaction by default for compatible AI and OpenAI-compatible models, which forwards full conversation history to the provider and supports session routing, prompt caching, provider-native tool history replay, transient error retries, and configurable timeouts.
Fixed
- Fixed an issue where assistant responses and encrypted reasoning could be lost during local history trimming.
- Added
title_changesession metadata to the compaction entry type union to maintain type compatibility for hosts with title audit entries.
[16.2.2] - 2026-06-27
Added
- Added optional AgentTool.matcherPaths(args) and AgentTool.matcherEntries(args) hooks to allow tools to surface target file paths and isolate file evaluations for path-scoped stream matchers (e.g., when handling multi-file payloads or embedded paths in streamed arguments).
Removed
- Removed support for Pi dialect integration.
[16.2.0] - 2026-06-27
Added
- Added an optional
cwdResolvertoAgentandgetCwdtoAgentLoopConfigto dynamically resolve the working directory per LLM call, allowing workspace-scoped provider discovery (such as GitLab Duo Agent) to follow live directory changes without reconstructing the agent.
Fixed
- Fixed an issue where API-level provider refusals were replayed as assistant dialogue on subsequent requests, preventing repeated refusals after a single blocked turn.
- Fixed a bug where internal streaming state (
partialJson) could leak onto the finalAssistantMessageif a stream ended without atoolcall_endevent. - Fixed
Agentto correctly forward the working directory (cwd) into provider stream options, enabling providers like GitLab Duo Agent to scope local tool execution to the workspace. - Enabled custom OpenAI-compatible providers to use native remote compaction instead of falling back to local summarization.
[16.1.23] - 2026-06-26
Changed
- Changed
AgentLoopConfig.onTurnEndandAgent.setOnTurnEndcallbacks to receive whether the loop will continue with another provider request.
Fixed
- Fixed stale snapcompact archive frames leaking into context-full compaction after
compaction.strategywas switched fromsnapcompacttocontext-full. Switching strategy left the latest compaction entry'spreserveData.snapcompactin place, so context-full kept rebuilding context with old image frames attached — inflating context/token usage and making sessions appear to compact early (around ~60% apparent window use). The first context-full compaction after the switch now folds the prior archive's plaintext into the LLM summary input and stripspreserveData.snapcompactfrom the new entry; legacy frame-only archives (no plaintext to migrate) are stripped outright. (#3561 by @serverinspector)
[16.1.18] - 2026-06-25
Fixed
- Fixed
AppendOnlyContextManager.syncMessagesclearing the entire log on any in-place rewrite of an already-synced message. Per-turn tool-output pruning, image stripping, or anytransformContextre-render that touched a single message used to drop every prior turn out of the append-only log and re-send the conversation from scratch, forcing local backends (llama.cpp / Ollama / LM Studio) to re-prefill tens of thousands of tokens every few turns.syncMessagesnow finds the longest byte-stable prefix between the previously-synced messages and the new ones, truncates the log to that prefix, and only re-appends the diverged tail — so the provider's KV cache stays warm up to the divergence point. (#3406)
[16.1.17] - 2026-06-24
Fixed
- Hardened the agent-loop cooperative yield against backward wall-clock jumps. A stale future timestamp left in the shared yield gate (NTP step, or a fake-timer test mocking
Date.now) could makeyieldIfDue()gate forever and stop yielding to the event loop; the gate now treats a backward clock delta as due and re-anchors. The gate is exposed as an injectableYieldGate(withyieldIfDue()retained as the shared singleton) so it can be exercised without mocking process-global timers.
[16.1.16] - 2026-06-23
Added
- Added
generateHandoffFromContext(context, model, options)to@oh-my-pi/pi-agent-core/compaction: runs the handoff oneshot against a fully-built providerContext(system prompt, normalized tools, transformed history, trailing handoff prompt) withstreamOptionsmirroring the live turn's cache routing, so a host that owns the transform pipeline can make the handoff request share the prompt cache the main turn populated.generateHandoff(messages, …)is unchanged and now delegates to it. - Added an optional
systemPromptargument toAgent.buildSideRequestContext(llmMessages, systemPrompt?), defaulting to the live agent prompt; callers can pin a different prompt (e.g. handoff generation, which uses the base prompt rather than a per-turnbefore_agent_starthook override).
Changed
- Updated
buildSideRequestContextto allow pinning custom system prompts
[16.1.10] - 2026-06-21
Fixed
- Fixed labeled user interrupts retaining incomplete streamed tool calls before
toolcall_end, which could persist malformed tool-call IDs into replay.
[16.1.8] - 2026-06-20
Breaking Changes
- Changed
transformProviderContextandbuildSideRequestContextto return a Promise
Added
- Added
buildSideRequestContextto theAgentclass to build prompt-cache-friendly provider Contexts for side-channels or ephemeral requests. - Added
compactionContextTokens(providerContextTokens, storedConversationEstimate): floors the provider-reported context tokens by a local estimate of the stored conversation for the compaction decision, so abefore_provider_requestpayload transform (a compression extension, obfuscator, or inline snapcompact) that shrinks the request can no longer deflate provider usage below the true history size and suppress auto-compaction.
Changed
- Exported helper functions
normalizeMessagesForProviderandresolveOwnedDialectFromEnvfrompackages/agent/src/agent-loop.ts.
[16.1.5] - 2026-06-19
Fixed
- Wire-encoded
normalizeToolsparameters unconditionally so tools whoseintentresolves to"omit"(function intent orintent: "omit", e.g. builtineval/resolve) no longer leak raw arktype/zod schema objects inparameters(#3074)
[16.1.2] - 2026-06-19
Fixed
- Prevented sensitive raw JSON payloads from leaking into agent events during tool validation
- Ensured tool validation errors are handled correctly for malformed JSON parse inputs
- Ensure deep-cloning of tool-call arguments respects own enumerable properties
- Prevent direct object references between agent message snapshots and streaming events
[16.1.0] - 2026-06-19
Added
- Added
SoftToolRequirementsupport togetToolChoice: a host can require a tool by returning a soft requirement instead of a hardToolChoice. The loop injects the supplied reminder once (leavingtool_choiceon auto), and escalates to a one-turn forced choice — skipping any detour tool batch — only if the model fails to call the required tool, avoiding the provider message-cache invalidation of forcing every turn. - Added
pruneToolDescriptionsoption to reduce token usage by stripping tool descriptions from provider-bound specs
Fixed
- Improved token estimation accuracy for compaction summaries containing multi-block content
[16.0.11] - 2026-06-19
Changed
- Updated the display format for truncated file operation summaries
[16.0.8] - 2026-06-18
Fixed
- Stopped the compaction
<files>summary from trackingscheme://URLs — internal URIs (conflict://,artifact://,local://,history://, …) and web URLs are no longer recorded as files, and legacy entries rehydrated from older compaction summaries are dropped.
[16.0.6] - 2026-06-18
Added
- Added
transformAssistantMessagehook toAgentOptionsandAgentto allow mutating the finalized assistant message before UI emission, context appending, or tool dispatch
[16.0.5] - 2026-06-17
Breaking Changes
- Changed
AgentOptions.getApiKeyandAgentLoopConfig.getApiKeyto receive the activeModeland return an API key orApiKeyResolver, so credential routing stays model-scoped and retry context is no longer exposed through the agent-core API
Added
- Added agent-loop deadline support for graceful wall-clock session stops.
Changed
- Changed Gemini repetition-loop detection to live in the pi-ai stream layer instead of the agent loop. The agent no longer runs its own Gemini-gated verbatim repetition check (
detectRepetition/truncateRepetition); loops now surface as a retryable transient stream error that the standard auto-retry path discards and re-samples, rather than a committed contentful error message.
Fixed
- Fixed
PI_DIALECT=minimaxbeing ignored by the owned tool-calling env selector. (#2759)
[16.0.1] - 2026-06-15
Fixed
- Fixed transient provider errors after streamed tool-call arguments so incomplete tool calls are marked as interrupted output instead of eligible for automatic retry (#2683).
- Fixed
@oh-my-pi/pi-agent-coretelemetry content capture crashing every chat turn withTypeError: systemPrompt.map is not a functionwhencaptureMessageContentis enabled (OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT=true).ChatRequestSnapshot.systemPromptnow acceptsstring | readonly string[]and the telemetry serializers normalize a bare string to a single-element array — previously the full-system serializer called.mapon a string (the.lengthguard passed, so it threw) and the request-message serializer iterated the string into onesystemmessage per character.
[16.0.0] - 2026-06-15
Breaking Changes
- Renamed owned tool-calling options from
toolCallSyntax/exampleSyntaxtodialect/exampleDialect. - Changed compaction conversation serialization to use the target model's native dialect turn, thinking, tool-call, and tool-result envelopes when a dialect is selected.
- Renamed the owned dialect environment variable from
PI_OWNED_TOOLStoPI_DIALECT.
Added
- Added
onTurnEndhook support (setOnTurnEnd/onTurnEnd) to run awaited per-turn bookkeeping with current messages before the next model request and skip callback execution for aborted or error turns
Changed
- Renamed
toolCallSyntaxoption todialectin AgentOptions and AgentLoopConfig - Updated conversation serialization to use dialect's native transcript rendering when a dialect is selected
- Changed internal references from
ToolCallSyntaxtype toDialecttype across agent loop and compaction modules
[15.13.3] - 2026-06-15
Added
- Added the
interruptibletool field: when set, the agent loop may abort the tool mid-execution to deliver a queued steering message (honored only inimmediateinterrupt mode). - Added support for
geminiandgemmaas valid owned tool syntax values in environment configuration
Fixed
- Fixed
pruneToolOutputsblanking tiny tool results during overflow pruning: results below50tokens (MIN_PRUNE_TOKENS) are no longer replaced with the[Output truncated - N tokens]placeholder, which cost more tokens than the result itself and churned the prompt cache for zero savings.
[15.13.2] - 2026-06-15
Breaking Changes
- Removed
harmony-leakexports from the@oh-my-pi/pi-agent-corepackage entrypoint - Replaced the experimental
promptToolCallsagent/loop option withtoolCallSyntax, selecting an explicit in-band tool-call grammar instead of a boolean GLM-only mode.
Added
- Added support for selecting owned in-band tool-call syntax via
PI_OWNED_TOOLS=<syntax>(for examplehermesorqwen3) while preserving legacyPI_OWNED_TOOLS=1/trueas GLM mode - Added owned in-band tool calling for multiple syntaxes (
glm,hermes,kimi,xml,anthropic,deepseek,harmony,pi-native,qwen3). Owned mode sends no native provider tools, appends a syntax-specific prompt/catalog, re-encodes prior tool calls/results as grammar-owned text, and parses streamed model output back into canonical tool calls. - Added tool-example folding to
normalizeTools: when given a model's affinity syntax (resolved viapreferredToolSyntax), it renders each tool'sexamplesinto an<examples>block in that native syntax and appends it to the wire description. Wired through both context paths (fresh build and append-onlytakeSnapshot/buildvia a newexampleSyntaxbuild option), with the_iintent-field placeholder added to examples when intent tracing injects it. - Added the
abortOnFabricatedToolResultoption toAgentOptions/AgentLoopConfig(defaulttrue): when owned tool calling is active and the model fabricates a tool result mid-turn,trueaborts the provider request immediately whilefalselets it finish and discards the fabricated continuation.
Changed
- Added owned in-band syntax support to
Agentloop configuration resolution by selecting syntax fromtoolCallSyntaxorPI_OWNED_TOOLSwhen present
Fixed
- Fixed append-only context cache fingerprinting to account for
exampleSyntax, so switching tool-call syntax rebuilds cached prompts with the correct injected tool examples - Fixed owned in-band tool-calling requests to omit
toolChoiceafter stripping native tools, preventing invalid tool-choice requests - Fixed owned tool calling letting the model fabricate tool results by treating grammar-owned tool-result markers in assistant text as a hard turn boundary: calls before the fabrication are kept, fabricated results and dependent calls are dropped, and the real result is fed back on the next turn.
[15.13.1] - 2026-06-15
Added
- Added repetition-loop detection to the streaming agent loop for Gemini-family providers. A runaway run of a repeated text or thinking unit is detected mid-stream from a bounded rolling tail (O(1) per delta), the provider request is aborted, the repeated tail is collapsed to a single representative copy, and the turn ends gracefully with an
errorstop reason. Legitimate all-numeric/whitespace/punctuation runs (hexdumps, zero-fills, numeric tables) are not misclassified as loops (#2549 by @usr-bin-roygbiv).
Fixed
- Fixed repetition loop handling to collapse repeated
thinkingblocks to a single representative copy when a loop is detected - Fixed repetition-loop detection to ignore repeats that contain only digits, whitespace, or punctuation so legitimate numeric outputs no longer stop with a repetition-loop error
- Fixed false-positive repetition-loop checks across
textandthinkingstream boundaries by tracking loop detection per block type
[15.12.6] - 2026-06-14
Fixed
- Fixed dynamic forced tool choices from queue hooks being filtered against the active per-turn tool set before provider dispatch. (#1701)
[15.12.4] - 2026-06-13
Fixed
- Fixed remote compaction input trimming to use unlimited context when
model.contextWindowis unset
[15.12.1] - 2026-06-12
Breaking Changes
- Changed
pruneSupersededToolResultsto allowsupersedeKeyto be omitted so useless-result pruning can run without read-style supersede grouping
Added
- Added
pruneUselesscontrols toPruneConfigandSupersedePruneConfigso callers can toggle compaction oftoolResultentries markeduseless - Added the ability to disable useless-result pruning by setting
pruneUselessto false - Tools can flag a result contextually useless (
AgentToolResult.useless; overridable viaAfterToolCallResult.useless): the agent loop copies the flag onto the persistedToolResultMessage(errors always win), and compaction consumes it — the cache-aware supersede pass and the threshold prune blank flagged results to the exactUSELESS_NOTICEplaceholder (bypassing the protect window, skipping results smaller than the notice), shake collects them inside the protect-recent window, andserializeConversationdrops the whole tool call/result pair from summarizer input
Changed
- Changed
pruneSupersededToolResultsto allow omittedsupersedeKeywhenpruneUselessis enabled, so useless-result pruning can run without read-style supersede grouping
[15.11.4] - 2026-06-12
Added
- Added
hasSteeringMessagestoAgentLoopConfig(wired byAgentto its steering queue): a peek used by the immediate-interrupt poll during tool execution, so the loop can detect queued steering without dequeuing and the queue keeps owning its messages until the injection boundary - The agent loop now re-samples after a non-terminal stop (
stopReason: "stop"withstopDetails: { type: "pause_turn" }, emitted by the Codex providers forend_turn: falsecommentary-only responses): the assistant message is committed to history and the model is called again without ending the turn. Consecutive pause continuations without an intervening tool call are capped at 8 to bound a backend that never stops pausing.
Changed
- Changed steering handling so queued steering messages are now dequeued only at injection boundaries, with immediate mid-batch interrupt polling using
hasSteeringMessages. Consumers constructingAgentLoopConfigdirectly with onlygetSteeringMessagesno longer get mid-batch interrupts — steering degrades to boundary-only delivery until they also supplyhasSteeringMessages - Compaction, handoff, short-summary, and branch-summarization helpers now accept an
ApiKey(static string or resolver) instead of a pre-resolved string, so a 401 mid-compaction force-refreshes and rotates the credential through the central auth-retry policy before any model-level fallback. The remote OpenAI compaction request is wrapped inwithAuthand its HTTP failures now carry.status, so the retry classifier actually fires on remote-compaction 401s. transformProviderContextnow receives the dispatch model as a second argument ((context, model) => Context), so per-request transforms can gate on model capabilities (vision input, provider, API family). Existing single-argument implementations keep working unchanged.- Remote-compaction and summarization failures now throw pi-ai's typed
ProviderHttpErrorinstead of mutating plainErrors with a.statusproperty; the genericrequestRemoteCompactionerror now carries.status(and response headers) too.
Fixed
- Fixed a regression where steering messages could be injected into history during an aborted in-flight tool batch, leaving them hidden from queue consumers for post-abort continue
[15.11.2] - 2026-06-11
Added
AgentTool.concurrencynow also accepts a per-call resolver function(args) => "shared" | "exclusive", letting tools pick the scheduling mode from the call's arguments (a throwing resolver falls back to"exclusive")
Fixed
- Fixed whitespace-only error tool results so Anthropic requests no longer 400 with
tool_result: content cannot be empty if is_error is trueand wedge the session on every subsequent turn
[15.11.0] - 2026-06-10
Breaking Changes
- Removed
compaction/index.tsre-export of snapcompact helpers, so snapcompact utilities are no longer available from the agent compaction barrel and should be imported from@oh-my-pi/snapcompact - Removed the
convertToLlmalias export fromcompaction/messages— it duplicateddefaultConvertToLlmunder a second name. ImportdefaultConvertToLlm(array form) or the newconvertMessageToLlm(single-message form) instead
Added
- Added
convertMessageToLlm(): the single-message core transformer behinddefaultConvertToLlm(). Embedders with app-specific message roles should handle their own roles and delegate every core role (user/developer/assistant/toolResult/custom/hookMessage/branchSummary/compactionSummary) to it instead of duplicating the conversion — a duplicatedcompactionSummarycase is how snapcompact frames once silently dropped off provider requests - Added
pruneSupersededToolResults()and the opt-inPruneConfig.supersedeKeyhook so harnesses can prune stale tool results superseded by a newer read of the same file; superseded results are pruned ahead of age-based victims during overflow pruning and replaced with a[Superseded by a newer read of this file]placeholder. Without the new config,pruneToolOutputs()behavior is unchanged. - Added
readToolSupersedeKey()implementing the read-tool path/selector grammar (selector-free reads supersede range reads of the same file; URL-scheme paths exempt). Pruning honors prompt-cache economics: per-turn prunes only fire when the post-candidate suffix is small or the cache is cold (idle gap). - Added the
snapcompactcompaction strategy via@oh-my-pi/snapcompact: instead of an LLM summary, discarded history is printed onto dense bitmap frames and re-attached to the compaction summary message as image blocks.CompactionSummaryMessagegains an optionalimagesfield,estimateTokens()charges per attached frame, and frames persist underpreserveData.snapcompactwith an 8-frame middle-out eviction budget. - Snapcompact frames are now rendered in a provider-aware shape (
SNAPCOMPACT_SHAPES+resolveSnapcompactShape(api)), following the snapcompact 200k-token monolithic evals: Anthropic-family and unknown APIs get8x8r-bw(unscii-8 square cells, black ink, every line printed twice with the copy on a pale highlight band — read at F1 parity with raw text at ~2x lower cost and the most refusal-robust), Google gets8x8r-sent(sentence-hue ink, ~2.9x cheaper), and OpenAI gets6x6u-sent(unscii Lanczos-stretched to 6x6 cells — OpenAI bills a flat ~2.9k tokens per image, so frame count is the only cost lever) withdetail: "original"on the frame images.snapcompactCompact()acceptsmodel/shapeoptions, frames persist their shape metadata, mixed-shape archives (provider switches, legacy 5x8 frames) are flagged in the reading instructions, andsnapcompactGeometry()/renderSnapcompactFrame()now take a shape
Changed
- Compaction and branch-summary file lists are now a single
<files>tag instead of<read-files>/<modified-files>: paths render as the grouped, prefix-folded directory tree the find/search tools emit (# dir/headers, bare basenames), each annotated(Read),(Write), or(RW)— modified files that were also read get(RW). Legacy tags in summaries written by earlier versions are still stripped and self-heal on the next compaction
Fixed
- Fixed queued steering messages being drained into an externally aborted run: interrupting mid-tool execution (e.g. Enter with a pending steer) dequeued the steer into the dying run — it landed in history without a response and the post-abort resume saw an empty queue, so the agent stopped instead of continuing. Steering/follow-up/aside queue polls are now skipped once the run's abort signal fires, leaving the queue intact for
Agent.continue(). - Fixed
<read-files>compaction lists recording the same file once per line-range/raw selector (src/foo.ts:50-200,:raw,:1-50:raw, …): read-tool selectors are now stripped before tracking, so reads dedupe to the base path and match their write/edit path when splitting read-only vs modified lists. Selector-polluted lists stored by earlier compactions self-heal on the next compaction.readToolSupersedeKey()now shares the same splitter (splitReadSelector()), gaining the..range alias andL-prefix forms it previously missed. - Fixed
estimateTokens()undercounting thinking-heavy assistant messages on replay:thinkingSignaturepayloads (OpenAI Responses encrypted reasoning items, Anthropic signed thinking blocks, etc.) andredactedThinking.dataare now charged alongside the visible thinking text, so the local estimate tracks provider-reported usage instead of straddling the threshold on every turn (#2275).
[15.10.12] - 2026-06-10
Added
- Added
AgentLoopConfig.getDisableReasoningso callers can overridedisableReasoningper LLM call, mirroringgetReasoning. - Added
transformProviderContexttoAgentOptions/AgentLoopConfig: an optional hook applied to the assembled provider context after conversion, normalization, and append-only handling, but before telemetry capture and provider send.
Fixed
- Fixed
Agentruns so explicit reasoning disablement is forwarded to provider stream options and re-resolved per continuation, keeping mid-run thinking-off changes in sync with the next provider request.
[15.10.11] - 2026-06-10
Changed
- Editorial pass over the compaction prompts: fixed garbled grammar and missing articles, RFC-keyed prohibitions, deduped restated instructions; parsed markers (
<read-files>/<modified-files>/<previous-summary>) and all output-format headings left byte-identical - Catalog imports moved to the new
@oh-my-pi/pi-catalogpackage: subpath imports (calculateCost, Codex wire constants) plus catalog values previously taken from the@oh-my-pi/pi-airoot (getBundledModel,clampThinkingLevelForModel), which pi-ai no longer re-exports; type-onlyModel/Api/Effortimports from pi-ai are unchanged
[15.10.8] - 2026-06-09
Added
- Added optional
fetchoverrides toSummaryOptionsandcompact/generateSummaryso remote compaction can use custom HTTP clients - Added optional
fetchoption toProxyStreamOptionsto control the HTTP request used bystreamProxy - Added optional
fetchoverrides torequestOpenAiRemoteCompactionandrequestRemoteCompactionfor injectable HTTP transport - Added the upstream provider that served a request (
AssistantMessage.upstreamProvider, e.g. OpenRouter's routed provider) as api.gen_ai.response.upstream_providerchat-span telemetry attribute, alongside the existing response id and time-to-first-chunk.
[15.10.5] - 2026-06-08
Removed
- Removed the
maxToolCallsPerTurnoption fromAgentOptionsandAgentLoopConfig, so assistant turns are no longer capped after a configured number of completed tool calls
Fixed
- Fixed stalled aborted assistant responses so the run now stops without waiting for provider iterator cleanup and returns the aborted message promptly
- Fixed
afterToolCallhandling so it now runs for completed tool executions even after a run is aborted so tool post-processing still applies - Fixed
agentLoopDetailed().detailed()so run telemetry and coverage are captured beforestream.result()resolves. - Fixed agent-loop stream invariants so
agentLoopContinueno longer mutates the caller's message array, emitted assistant events snapshot mutable provider content, terminal provider events win over late abort signals, transformed tool arguments are reflected consistently in hooks/events, and successful run-end telemetry fires from the same finalization path as failures. - Fixed tool result parsing to mark assistant tool outputs with unsupported content block shapes as errors and include a diagnostic text block
- Fixed GPT-5 Harmony leakage handling by recovering valid leaked tool calls when possible and discarding leaked partial assistant output before retrying
- Fixed tool-call cancellation handling so aborted tools are marked aborted with an explicit reason and do not report generic errors
- Fixed tool-call completion so assistant messages on abort keep only completed tool-call blocks and continue processing tool calls when a length stop still included results
- Fixed deliberate aborts (TTSR rule matches, user-interrupt labels) so a mid-stream tool-call block that never reached
toolcall_endis retained on the aborted assistant message and paired with a placeholder result labeled by the abort reason, instead of being dropped; anonymous aborts (bareabort()) still drop incomplete tool calls whose partial arguments are unsafe to replay - Fixed runs that stopped with reason
lengthafter returning tool results so execution continues to handle additional tool calls
[15.10.3] - 2026-06-08
Added
- Added a non-interrupting "aside" message channel to the agent loop (
AgentLoopConfig.getAsideMessages/Agent.setAsideMessageProvider). Asides are drained at each step boundary (after a tool batch, before the next model call) and at the yield check, so passive notifications (e.g. background-job completions, late LSP diagnostics) reach the model between requests without waiting for the agent to stop and without aborting in-flight tools the way steering does.
Changed
- Changed core custom and hook messages to convert to
developermessages for provider context.
Fixed
- Fixed the compaction spinner freezing (only repainting on a terminal resize) when compacting very large codex/OpenAI contexts.
buildOpenAiNativeHistoryre-collected the full known/custom tool-call id sets on every history-bearing message, rescanning the entire growing native history each time — O(N²) in history items — which blocked the event loop for seconds and starved the loader's animation timer and render scheduler. The sets are now maintained incrementally (linear), so building the compaction request no longer monopolizes the main thread.
Removed
- Removed the now-dead
<turn-aborted>marker from the OpenAI compaction output user-message filter, sincetransformMessagesno longer emits that note. - Removed stale synthetic user-message tag filters from OpenAI remote compaction output preservation; developer messages are now dropped by role instead.
- Tool executions now receive the active turn
AbortSignalunconditionally.
[15.10.2] - 2026-06-08
Fixed
- Fixed proxy stream silently returning a zero-token success response when the server disconnects without sending a
doneorerrorterminal SSE event. The stream now throws an error, surfacing the disconnect as anerrorevent withstopReason: "error"and resolvingfinalResultPromise, instead of defaulting tostopReason: "stop"with empty content and leavingstream.result()callers hanging indefinitely.
[15.10.1] - 2026-06-07
Added
- Added optional
promptCacheKeysupport toAgentOptionsandAgentvia a newpromptCacheKeyproperty so providers can receive a caller-provided prompt cache key - Added optional
ApiKeyResolveContextparameter togetApiKeyinAgentOptionsandAgentLoopConfigso key resolvers can receive retry context
Changed
- Enabled streaming API calls to re-resolve credentials through the
getApiKeycallback when retries occur after authentication-related errors Agent.abort(reason?)now forwardsreasonto the underlyingAbortController, and the synthesized aborted assistant message carries that reason onerrorMessage(string or non-AbortErrorErrormessage) instead of always defaulting to"Request was aborted". Bareabort()is unchanged.
Fixed
- Fixed handling of short-lived API keys so that expired tokens are retried with a refreshed value during 401/usage-limit failures
- Ensured fallback API key resolution uses the initially configured static
apiKeywhengetApiKeyis present - Wrapped oneshot LLM completions (
instrumentedCompleteSimple: handoff, compaction/branch summaries) in anEventLoopKeepalive. These run outside the agent#runLoop, so without the keepalive Bun's event loop stopped servicing timers while parked on the completion promise — freezing host spinners (e.g. the/handoffloader) until an unrelated terminal resize poked the loop into rendering again.
[15.9.5] - 2026-06-05
Fixed
- Surfaced Anthropic stream failures whose message starts with
Output blocked by contenas normal assistant error lifecycle events, so interactive clients render content-filter blocks instead of silently dropping the streaming bubble atagent_end.
[15.8.3] - 2026-06-03
Added
- Added
getReadToolPath(context)to@oh-my-pi/pi-agent-core/compaction/tool-protectionto extract a pairedreadtool call'spathfor embedders building read-targeted protection matchers - Added
getReadToolPath(context)to@oh-my-pi/pi-agent-core/compaction/tool-protection: the shared primitive that extracts a pairedreadtool call'spathargument, so embedders can build their own read-targeted compaction protection matchers (e.g. plan-file reads) the same wayisSkillReadToolResultdoes.
[15.8.2] - 2026-06-03
Added
- Added optional
AgentTool.matcherDigest(args)hook: tools whose streamed arguments encode content in a wire grammar (patch formats, escaped strings) can expose the real content they introduce, so stream-content matchers (e.g. TTSR rules) run against plain source text instead of the wire format.
Fixed
- Fixed the agent loop wedging the model when a
write/edittool call is truncated bystop_reason: length(e.g. an OpenCode Zen / Claude-3.5-Haiku turn that emits >~1000 lines of code, blowing past the 8Kmax_tokensoutput cap). The skipped tool result now surfaces an actionable hint — namingstop_reason: lengthand telling the model to split the payload into multiple smaller calls — instead of the generic "Tool call was not executed because the assistant ended its turn" placeholder, which left the auto-continue loop re-emitting the same oversized payload until the user gave up. Tools are still NOT executed when the arguments are truncated. (#1785)
[15.8.0] - 2026-06-02
Fixed
- Engaged GPT-5 Harmony leak detection on the committed assistant message (openai-codex only).
detectHarmonyLeakInAssistantMessagenow runs on the streameddone/errorresult and the trailing fallback, so a leaked final response is aborted-and-retried by the existing mitigation instead of being committed as-is. Tool-argument (tool_arg) scanning is gated on the trailing-garbageTco-signal and only fires when a caller supplies a parse boundary viadetectHarmonyLeakInAssistantMessage's new optionaltoolArgParseEndresolver. The agent loop passes none — it cannot bound a streamed tool DSL — so that surface stays inert and a legitimate codex tool call whose content legitimately carriesto=functions.*next to a channel word or non-Latin script (e.g. editing the harmony fixtures) is never hard-aborted.
[15.7.4] - 2026-05-31
Removed
- Removed the local-model
summarizeShakeRegionscompressor and related shake-summary prompt/types; shake now only provides mechanical artifact-backed elision primitives.
[15.7.3] - 2026-05-31
Added
- Added
shakecompaction primitives (collectShakeRegions,applyShakeRegion,applyShakeRegions,summarizeShakeRegions,DEFAULT_SHAKE_CONFIG,AGGRESSIVE_SHAKE_CONFIG, plus theShakeRegion/ShakeConfig/ShakeSummaryItem/ShakeSummaryComplete/ProtectedToolMatchertypes) under@oh-my-pi/pi-agent-core/compaction. These detect heavy context regions — whole tool-call results plus large fenced/XML blocks — and either elide them with placeholders or extractively compress them through an injected completion backend (no LLM summary cut-point). The compressor is provider-agnostic: callers wire it to a local on-device model. Pure detection/mutation; no I/O.
Fixed
- Fixed tool-output pruning and shake protection for
read: ordinary file/URL reads are now eligible for compaction, whilereadcalls whosepathstarts withskill://remain protected like nativeskillresults.
[15.5.15] - 2026-05-30
Added
- Added
maxToolCallsPerTurntoAgentLoopConfig/AgentOptions, allowing callers to cut a streamed assistant turn after a completed tool-call batch and execute the runnable partial turn instead of waiting for the provider to yield.
Fixed
- Normalized
maxToolCallsPerTurnto accept only positive integer limits, with non-finite or non-positive values treated as disabled
[15.5.14] - 2026-05-29
Fixed
- Fixed the agent loop abandoning tool calls that Anthropic adaptive/interleaved-thinking models (e.g. Opus) emit under
stop_reason: "end_turn". The previous gate only ran tools whenstopReason === "toolUse", so anend_turn+tool_use turn produced "Tool call was not executed because the assistant ended its turn" placeholders, made no progress, and could trap the model in a re-emit/abandon loop.stop_reasonis never replayed on the wire and (verified against the live Anthropic Messages API) does not gate continuation validity, sostop/end_turnturns carrying tool_use blocks are now executed and the loop continues — exactly liketoolUse. Onlylength(max_tokens truncation) still abandons, since the trailing tool call may have incomplete arguments. The continuation stays valid becausetransformMessagesstrips the now-untrustworthy thinking signature and the encoder downgrades the block to text.
[15.5.10] - 2026-05-28
Fixed
- Fixed compaction summarizer throws losing the provider's HTTP status.
generateSummary,generateHandoff,generateShortSummary, andgenerateTurnPrefixSummarynow route theirstopReason === "error"throws through acreateSummarizationErrorhelper that copiesAssistantMessage.errorStatusonto the thrownErroras.status, letting downstream consumers (e.g.AgentSession.#isCompactionAuthFailurein@oh-my-pi/pi-coding-agent) branch on real provider 401/403s without regex-scraping the message body.
[15.5.0] - 2026-05-26
Added
- Added
approvalsupport toAgentTooldeclarations with the newToolTierandToolApprovalAPIs, allowing tools to declare capability tiers (read,write, orexec) and optional override/reason metadata for approval gating - Added
formatApprovalDetailsonAgentToolto append custom detail text or lines to approval prompts - Added exported
ToolTierandToolApprovaltype aliases for tool approval declarations
Fixed
- Fixed chat-request telemetry storing the raw scoped
serviceTiervalue ("openai-only"/"claude-only") inOpenAIAttr.RequestServiceTierinstead of the resolved wire value ("priority"). Dashboards and alerts filtering on the concrete tier name (service_tier == "priority") were broken by the scoped placeholder;buildChatRequestAttributesnow runs the tier throughresolveServiceTier(serviceTier, provider)before recording, keeping theshouldSendServiceTiergate intact so non-OpenAI providers continue to omit the attribute entirely.
[15.3.0] - 2026-05-25
Fixed
- Fixed
transformContextreceiving the loop config object as thesignalargument instead of the actualAbortSignal, so hooks that checksignal.abortedor callsignal.addEventListenernow work correctly under abort/timeout conditions - Fixed
appendOnlyContextnot being re-evaluated aftersetModel()— the mode was decided once at session construction based on the initial model's provider, so switching from/to DeepSeek (or changingprovider.appendOnlyContext) mid-session produced incorrect mode behavior
[15.2.3] - 2026-05-22
Added
- Added
onBeforeYieldhook support so user code can run right before the agent loop checks for follow-up messages
[15.1.3] - 2026-05-17
Added
- Added optional
telemetrysupport togenerateSummary,generateHandoff,generateBranchSummary, andcompactoptions so compaction, handoff, and branch summary one-shot LLM calls can emit OpenTelemetry chat telemetry when enabled - Added shared oneshot telemetry instrumentation for compaction, handoff, and branch summary calls, tagging spans with
pi.gen_ai.oneshot.kindvalues such ascompaction_summary,compaction_short_summary,compaction_turn_prefix,handoff, andbranch_summary
[15.1.2] - 2026-05-15
Added
- Added
responseHeaderstoChatUsageEventandManualChatTelemetryOptionsso telemetry hooks receive captured lowercase upstream response headers for each chat span - Added automatic gateway/proxy detection from response headers (
litellm,helicone,portkey,openrouter) and stampedpi.gen_ai.gateway.*span attributes for detected routing metadata - Added exported
detectGatewayFromHeadersAPI for header-based gateway detection
[15.1.0] - 2026-05-15
Breaking Changes
- Removed the
@oh-my-pi/pi-agent-core/compaction/handoffexports from the package surface, includingextractHandoffDocument,createHandoffContext, andcreateHandoffFileName - Removed legacy telemetry constants from the public enum surface (including
AGGREGATE_ATTR,GenAIAttr.System, and oldgen_ai.*extension keys such asgen_ai.request.service_tier/cost/tool status/handoff fields) and replaced them withOpenAIAttr,PiGenAIAttr, andPiGenAIAggregateAttr
Added
- Added
generateHandoff(messages, model, apiKey, options)to@oh-my-pi/pi-agent-core/compactionto generate a handoff document by calling the model directly, using live system/tool context and optional metadata - Added generation filtering so the returned handoff document now includes only text content blocks from the model output
- Added support for defining
AgentToolschemas with Zod, with legacy TypeBox schemas still supported when generating tool schemas for model calls - Added
OpenAIAttr,PiGenAIAttr, andPiGenAIAggregateAttrexports so consumers can reference the newopenai.*andpi.gen_ai.*telemetry attribute keys directly - Added
onChatUsagetoAgentTelemetryConfig, an always-fired hook receiving aChatUsageEventfor every chat step that produced usage. The event carries the chatspan,agent,conversationId,stepNumber,model,provider,serviceTier,usage, optionalcost, and resolved dynamicattributes— independent of whether acostEstimatoris configured. - Added
agentLoopDetailed(...)andagentLoopContinueDetailed(...)helpers that return the same event stream plus adetailed()result with runtelemetryandcoverage - Added
onRunEndtoAgentTelemetryConfigto receiveAgentRunSummaryandAgentRunCoverageat the end of each invocation - Added run-level telemetry and coverage types/helpers (for example
AgentRunSummary,AgentRunCoverage,aggregateAgentRunSummaries, andaggregateAgentRunCoverage) to package exports - Added generic telemetry extension hooks for dynamic span attributes, provider/agent-name normalization, per-step cost deltas, warning callbacks, bounded summary content capture, and manual chat telemetry for non-loop model calls.
- Added opt-in OpenTelemetry instrumentation on the agent loop. Pass
telemetry: {}(or a richerAgentTelemetryConfig) onAgentLoopConfig/AgentOptions/createAgentSession({ telemetry })to emit GenAI-semantic-convention spans pluspi.gen_ai.*extension attributes: invoke_agent {agent.name}wraps eachagentLoopinvocation withgen_ai.operation.name=invoke_agent, agent identity, conversation id, andpi.gen_ai.agent.step.count.chat {model}per provider call, parented underinvoke_agent, with OTEL request/response/usage attributes (gen_ai.request.{model,stream,temperature,top_p,top_k,max_tokens,presence_penalty,stop_sequences},gen_ai.response.{model,id,finish_reasons,time_to_first_chunk},gen_ai.usage.{input_tokens,output_tokens,cache_read.input_tokens,cache_creation.input_tokens,reasoning.output_tokens}) and project extensions for reasoning effort, tool choice, available tools, usage totals, and cost.execute_tool {tool.name}per tool call, parented underinvoke_agent, withgen_ai.tool.{name,call.id,description,type}plus the active context so user/MCP/provider spans created insidetool.execute()attach as children.- One-shot
handoffspan available via the publicrecordHandoff(...)helper for agent-to-agent transitions. - Added
AgentTelemetryConfighooks (onSpanStart,onSpanEnd,costEstimator),agentidentity,attributesenvelope merged onto every span,captureMessageContenttoggle (defaults to theOTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENTenv var) emitting OTEL-shapedgen_ai.input.messages/gen_ai.output.messages/gen_ai.system_instructions/gen_ai.tool.call.arguments/gen_ai.tool.call.result, and tracer/tracerName override surfaces. - Added
Agent#setTelemetry(config)so consumers can swap or disable instrumentation between invocations. - Added
@opentelemetry/apias a runtime dependency; SDK setup (exporters, samplers, processors) remains the host's responsibility per standard OTEL conventions. When no SDK is registered, helpers fall through to no-op spans with zero overhead. - Added compaction APIs under
@oh-my-pi/pi-agent-core/compaction, including context compaction, branch summarization, handoff prompt/context helpers, pruning, token budgeting, prompt templates, and OpenAI/responses/compacthelpers.
Changed
- Changed handoff document generation to force
toolChoice: "none"when calling the model so tool invocation is disabled during generation - Changed
chatspans to emit normalized provider identifiers ingen_ai.provider.namevia OTEL-style values (for examplegoogletogcp.gemini) instead of the legacygen_ai.systemlabel - Changed service-tier telemetry to emit
openai.request.service_tier/openai.response.service_tieronly when supported by provider viashouldSendServiceTier, rather than always usinggen_ai.request.service_tier - Changed captured message payloads so full capture now records OTEL-structured message parts with
pi.gen_ai.request.messages,pi.gen_ai.system_instructions, andgen_ai.output.messagesincluding assistantfinish_reason - Changed the
agent_endevent payload to include optionaltelemetryandcoveragefields when telemetry is enabled, while keeping the legacy payload shape when disabled - Changed
invoke_agentspans to include aggregatepi.gen_ai.agent.*attributes for chat/tool counts, latency, usage, cost, errors, and tool coverage
Fixed
- Fixed intent-field injection for tool schemas defined with Zod by converting them to wire schema before mutation
- Fixed token accounting in
ChatUsageEventand usage summaries soinputTokensandtotalTokensnow include cached read/write input tokens - Fixed
execute_toolspan attributes sopi.gen_ai.tool.statusanderror.typenow reflect run-level tool outcomes (ok,error,skipped,blocked,timeout,aborted) instead of mapping all non-ok cases the same way - Fixed
onRunEndcallbacks to be safe and idempotent by invoking them once per run and swallowing thrown callback errors so they cannot fail or duplicate successful runs - Fixed run telemetry to count interrupted, blocked, or otherwise skipped tool calls so run coverage and tool counters now include those paths
- Fixed chat failure handling so failed chat steps are still represented in run summaries when provider streaming throws before yielding an assistant message
- Fixed double-counting of interrupted tool calls in run summaries: the
runToolearly-return on a queued steering interrupt now defers to the post-batch tail sweep so each call is recorded exactly once - Fixed
coverage.toolsInvokedand run-summary tool counters under-reporting tool calls embedded in an aborted/errored assistant message — those calls now record a collector orphan with statusabortedorerror - Fixed
AgentRunSummary.usage.inputTokensso it now includescache_readandcache_writeinput tokens, matchingChatUsageEvent.inputTokens - Fixed span lifecycle hooks (
onSpanStart,onSpanEnd) so a thrown user callback is caught and surfaced viaonTelemetryWarning(on_span_start_failed/on_span_end_failed) instead of leaking and aborting the surrounding span - Fixed unbounded recursion in summary content capture when a captured value contains a cyclic or deeply nested array — array recursion now respects the same depth cap as plain-object recursion and replaces back-references with
"[Circular]"
[15.0.1] - 2026-05-14
Breaking Changes
- Raised the minimum required Bun version from >=1.3.7 to >=1.3.14
[14.9.5] - 2026-05-12
Added
- Added an
isError?: booleanfield onAgentToolResultso tools can flag a non-throwing failure (e.g. an aggregator that catches per-entry errors).coerceToolResultpreserves the flag and the agent loop surfaces it as a tool error on the wire.
[14.9.3] - 2026-05-10
Added
- Added
onHarmonyLeakoption onAgent/loop config to receive GPT-5 Harmony leak audit callbacks - Added harmony-leak detection and audit exports to the package index for programmatic leak detection and recovery hooks
Changed
- Changed OpenAI Codex model runs to detect GPT-5 Harmony protocol leakage during streaming and automatically retry or recover tool calls instead of sending contaminated arguments downstream
Security
- Hardened tool-call handling against leaked
to=functions.*protocol tails by truncating or retrying before execution - Hardened failure handling so repeated GPT-5 Harmony leak mitigation is retried only up to two times before escalating to an explicit error
[14.9.0] - 2026-05-10
Added
- Added
Agent#metadatafield forwarded to every API request; callers can set arbitrary provider metadata (e.g.metadata.user_id) once and have it applied to all subsequent stream calls without modifying per-call options - Added
Agent#setMetadataResolver(fn)for installing a function that resolves request metadata at call time. Themetadatagetter dispatches through the resolver on every read (including the snapshot taken perprompt()), so callers reflect mutable external state (e.g. live OAuth account UUID after a token refresh) without manual re-syncs. Plainagent.metadata = …continues to set a static value and clears any installed resolver. - Added an
onSseEventagent option and loop config forwarding path for raw provider SSE diagnostics.
[14.7.6] - 2026-05-07
Added
- Added
hideThinkingSummaryoption/getter/setter onAgentandAgentLoopConfig. Forwarded to the underlying stream call so providers can omit reasoning/thinking summaries on demand.
[14.7.2] - 2026-05-06
Added
- Added
loadModeoption toAgentToolto mark built-in tools asessentialfor initial loading ordiscoverablefor search activation - Added optional
summaryfield toAgentTooldefinitions for one-line text used in tool discovery indexes
[14.7.0] - 2026-05-04
Breaking Changes
- Changed
AgentAPI types sosystemPromptis now a list of prompt strings, requiring callers to pass and update system prompts via string arrays
Changed
- Removed automatic project-context injection into each model call from loop logic
Removed
- Removed the
projectPromptfield from agent state/context and thesetProjectPromptmutator
[14.6.2] - 2026-05-03
Fixed
- Fixed unhandled promise rejection when
getApiKeyor any other async error occurs duringstreamAssistantResponse: agent loop IIFEs now catch and route errors throughEventStream.fail(), which terminates thefor awaitloop and letsAgent#runLoop's catch block create a proper error assistant message instead of crashing
[14.6.0] - 2026-05-02
Fixed
- Fixed request cancellation before provider events by emitting an aborted assistant message and ending the stream with
stopReason: "aborted"
[14.5.10] - 2026-04-30
Added
- Added an
onResponsestream option for observing provider response metadata after response headers arrive.
[14.2.0] - 2026-04-23
Changed
- Changed tool dispatch to match model-returned tool calls by either internal tool name or custom wire name, enabling custom OpenAI tool names such as
apply_patch.
[14.0.1] - 2026-04-08
Added
- Added
onAssistantMessageEventcallback option to inspect assistant streaming events before they are emitted, enabling abort decisions before buffered events continue flowing - Added
setAssistantMessageEventInterceptor()method to dynamically set or update the assistant message event interceptor
[13.13.0] - 2026-03-18
Added
- Added
startup.checkUpdatesetting, set totrueby default, can be disabled to skip the update check on agent initialization
[13.12.7] - 2026-03-16
Added
- Added overload for
prompt()method accepting a string input with optional options parameter
Fixed
- Fixed stale forced toolChoice being passed to provider after tools are refreshed mid-turn
[13.9.16] - 2026-03-10
Added
- Added
onPayloadoption toAgentOptionsto inspect or replace provider payloads before they are sent
[13.9.3] - 2026-03-07
Added
- Exported
ThinkingLevelselector constants and types for configuring agent reasoning behavior - Added
inheritthinking level option to defer reasoning configuration to higher-level selectors - Added
serviceTieroption to configure service tier for agent requests
Changed
- Changed
thinkingLevelfrom required string to optionalEfforttype, allowing undefined state - Updated
setThinkingLevel()method to acceptEffort | undefinedinstead ofThinkingLevelstring
[13.4.0] - 2026-03-01
Added
- Added
getToolChoiceoption to dynamically override tool choice per LLM call
[13.3.8] - 2026-02-28
Changed
- Changed intent field name from
agent__intentto_iin tool schemas
Fixed
- Fixed synthetic tool result text formatting so aborted/error tool results no longer emit
Tool execution was aborted.: Request was abortedstyle punctuation.
[13.3.7] - 2026-02-27
Added
- Added
lenientArgValidationoption to tools to allow graceful handling of argument validation errors by passing raw arguments to execute() instead of returning an error to the LLM
[13.3.1] - 2026-02-26
Added
- Added
topP,topK,minP,presencePenalty, andrepetitionPenaltyoptions toAgentOptionsfor fine-grained sampling control - Added getter and setter properties for sampling parameters on the
Agentclass to allow runtime configuration
[13.1.0] - 2026-02-23
Changed
- Removed per-tool
agent__intentfield description from injected schema to reduce token usage; intent format is now documented once in the system prompt instead of repeated in every tool definition
[12.19.0] - 2026-02-22
Changed
- Updated tool result messages to include error details when tool execution fails
[12.14.0] - 2026-02-19
Added
- Added
intentTracingoption to enable intent goal extraction from tool calls, allowing models to specify high-level goals via a required_intentfield that is automatically injected into tool schemas and stripped from arguments before execution
[12.11.0] - 2026-02-19
Added
- Exported
AgentBusyErrorexception class for handling concurrent agent operations
Changed
- Agent now throws
AgentBusyErrorinstead of genericErrorwhen attempting concurrent operations
[12.8.0] - 2026-02-16
Added
- Added
transformToolCallArgumentsoption toAgentOptionsandAgentLoopConfigfor transforming tool call arguments before execution (e.g. secret deobfuscation)
[12.2.0] - 2026-02-13
Added
- Added
providerSessionStateoption to share provider state map for session-scoped transport and session caches - Added
preferWebsocketsoption to hint that websocket transport should be preferred when supported by the provider implementation
[11.10.0] - 2026-02-10
Added
- Added
temperatureoption toAgentOptionsto control LLM sampling temperature - Added
temperaturegetter and setter toAgentclass for runtime configuration
[11.6.0] - 2026-02-07
Added
- Added
hasQueuedMessages()method to check for pending steering/follow-up messages - Resume queued steering and follow-up messages from
continue()after auto-compaction
Changed
- Extracted
dequeueSteeringMessages()anddequeueFollowUpMessages()from inline config callbacks - Added
skipInitialSteeringPolloption to_runLoop()for correct queue resume ordering
[11.3.0] - 2026-02-06
Added
- Added
maxRetryDelayMsoption to AgentOptions to cap server-requested retry delays, allowing higher-level retry logic to handle long waits with user visibility
Changed
- Updated ThinkingLevel documentation to include support for gpt-5.3 and gpt-5.3-codex models with 'xhigh' thinking level
[11.2.0] - 2026-02-05
Fixed
- Fixed handling of aborted requests to properly throw abort errors when stream terminates without a terminal event
[10.5.0] - 2026-02-04
Added
- Added
concurrencyoption toAgentToolto control tool scheduling: "shared" (default, runs in parallel) or "exclusive" (runs alone) - Implemented parallel execution of shared tools within a single agent turn for improved performance
Changed
- Refactored tool execution to support concurrent scheduling with proper interrupt handling and steering message checks
[9.2.2] - 2026-01-31
Added
- Added toolChoice option to AgentPromptOptions for controlling tool selection
[8.2.0] - 2026-01-24
Changed
- Updated TypeScript configuration for better publish-time configuration handling with tsconfig.publish.json
[8.0.0] - 2026-01-23
Added
- Added
nonAbortableoption to tools to ignore abort signals during execution
[6.8.0] - 2026-01-20
Changed
- Updated proxy stream processing to use utility function for reading lines
[6.2.0] - 2026-01-19
Added
- Enhanced getToolContext to receive tool call batch information including batchId, index, total count, and tool call details
[5.6.7] - 2026-01-18
Fixed
- Added proper tool result messages for tool calls that are aborted or error out
- Ensured tool_use/tool_result pairing is maintained when tool execution fails
[4.6.0] - 2026-01-12
Changed
- Modified assistant message handling to split messages around tool results for improved readability when using Cursor tools
Fixed
- Fixed tool result ordering in Cursor mode by buffering results and emitting them at the correct position within assistant messages
[4.3.0] - 2026-01-11
Added
- Added
cursorExecHandlersandcursorOnToolResultoptions for local tool execution with cursor-based streaming - Added
emitExternalEventmethod to allow external event injection into the agent state
[4.0.0] - 2026-01-10
Added
- Added
popLastSteer()andpopLastFollowUp()methods to remove and return the last queued message (LIFO) for dequeue operations thinkingBudgetsoption onAgentandAgentOptionsto customize token budgets per thinking levelsessionIdoption onAgentto forward session identifiers to LLM providers for session-based caching
Fixed
minimalthinking level now maps tominimalreasoning effort instead of being treated aslow
[3.33.0] - 2026-01-08
Fixed
- Ensured aborted assistant responses always include an error message for callers.
- Filtered thinking blocks from Cerebras request context to keep multi-turn prompts compatible.
[3.21.0] - 2026-01-06
Changed
- Switched from local
@oh-my-pi/pi-aito upstream@mariozechner/pi-aipackage
Added
- Added
sessionIdoption for provider caching (e.g., OpenAI Codex session-based prompt caching) - Added
sessionIdgetter/setter on Agent class for runtime session switching
[3.20.0] - 2026-01-06
Breaking Changes
- Replaced
queueMessage/queueModewith steering + follow-up queues: usesteer,setSteeringMode, andgetSteeringModefor mid-run interruptions, andfollowUp,setFollowUpMode, andgetFollowUpModefor post-turn messages - Agent loop callbacks now use
getSteeringMessagesandgetFollowUpMessagesinstead ofgetQueuedMessages
Added
- Added follow-up message queue support so new user messages can continue a run after the agent would otherwise stop
- Added
RenderResultOptions.spinnerFramefor animated tool-result rendering
Changed
prompt()andcontinue()now throw when the agent is already streaming; use steering or follow-up queues instead
[3.4.1337] - 2026-01-03
Added
- Added
popMessage()method to Agent class for removing and retrieving the last message - Added abort signal checks during response streaming for faster interruption handling
Fixed
- Fixed abort handling to properly return aborted message state when stream is interrupted mid-response
[1.341.0] - 2026-01-03
Added
- Added
interruptModeoption to control when queued messages interrupt tool execution. - Implemented "immediate" mode (default) to check queue after each tool and interrupt remaining tools.
- Implemented "wait" mode to defer queue processing until the entire turn completes.
- Added getter and setter methods for
interruptModeon Agent class.
[1.337.1] - 2026-01-02
Changed
- Forked to @oh-my-pi scope with unified versioning across all packages
[1.337.0] - 2026-01-02
Initial release under @oh-my-pi scope. See previous releases at badlogic/pi-mono.
[0.38.0] - 2026-01-08
Added
thinkingBudgetsoption onAgentandAgentOptionsto customize token budgets per thinking level (#529 by @melihmucuk)
[0.37.3] - 2026-01-06
Added
sessionIdoption onAgentto forward session identifiers to LLM providers for session-based caching.
[0.37.0] - 2026-01-05
Fixed
minimalthinking level now maps tominimalreasoning effort instead of being treated aslow.
[0.32.0] - 2026-01-03
Breaking Changes
- Queue API replaced with steer/followUp: The
queueMessage()method has been split into two methods with different delivery semantics (#403):steer(msg): Interrupts the agent mid-run. Delivered after current tool execution, skips remaining tools.followUp(msg): Waits until the agent finishes. Delivered only when there are no more tool calls or steering messages.
- Queue mode renamed:
queueModeoption renamed tosteeringMode. Added newfollowUpModeoption. Both control whether messages are delivered one-at-a-time or all at once. - AgentLoopConfig callbacks renamed:
getQueuedMessagessplit intogetSteeringMessagesandgetFollowUpMessages. - Agent methods renamed:
queueMessage()→steer()andfollowUp()clearMessageQueue()→clearSteeringQueue(),clearFollowUpQueue(),clearAllQueues()setQueueMode()/getQueueMode()→setSteeringMode()/getSteeringMode()andsetFollowUpMode()/getFollowUpMode()
Fixed
prompt()andcontinue()now throw if called while the agent is already streaming, preventing race conditions and corrupted state. Usesteer()orfollowUp()to queue messages during streaming, orawaitthe previous call.
[0.31.0] - 2026-01-02
Breaking Changes
- Transport abstraction removed:
ProviderTransport,AppTransport, andAgentTransportinterface have been removed. Use thestreamFnoption directly for custom streaming implementations. - Agent options renamed:
transport→ removed (usestreamFninstead)messageTransformer→convertToLlmpreprocessor→transformContext
AppMessagerenamed toAgentMessage: All references toAppMessagehave been renamed toAgentMessagefor consistency.CustomMessagesrenamed toCustomAgentMessages: The declaration merging interface has been renamed.UserMessageWithAttachmentsandAttachmenttypes removed: Attachment handling is now the responsibility of theconvertToLlmfunction.- Agent loop moved from
@oh-my-pi/pi-ai: TheagentLoop,agentLoopContinue, and related types have moved to this package. Import from@oh-my-pi/pi-agentinstead.
Added
streamFnoption onAgentfor custom stream implementations. Default usesstreamSimplefrom pi-ai.streamProxy()utility function for browser apps that need to proxy LLM calls through a backend server. Replaces the removedAppTransport.getApiKeyoption for dynamic API key resolution (useful for expiring OAuth tokens like GitHub Copilot).agentLoop()andagentLoopContinue()low-level functions for running the agent loop without theAgentclass wrapper.- New exported types:
AgentLoopConfig,AgentContext,AgentTool,AgentToolResult,AgentToolUpdateCallback,StreamFn.
Changed
Agentconstructor now has all options optional (empty options use defaults).queueMessage()is now synchronous (no longer returns a Promise).