π¦ New version release#26
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@smooai/smooth-operator-core@0.4.0
Minor Changes
2466187: SEP Phase 2 β the event bus + the intercept tier.
Observe events now fan out end-to-end.
dispatch_eventroutes through a newper-connection bounded observe lane in
ExtensionProcess: events carry amonotonic
seq, and when a slow/stalled extension lets the queue pass 1024 theoldest events are shed (never requests) and an out-of-band
events_lostmarker(carrying the shed count) is delivered on recovery β bounded memory instead of
unbounded growth or a stalled turn. Effective subscriptions are the extension's
handshake list clamped to its manifest
[capabilities] events. Wire event namesmirror pi's (
turn_start/turn_end,tool_execution_start/update/end,message_end) for near-mechanical porting;model_selectmaps to the existingAgentEvent::ModelResolved.Intercept tier: the fail-closed
tool_callhook now appliesModify(argrewrite), not just
Block, before execution; the new fail-opentool_resulthook patches a result before it is pushed to the conversation. Both hooks β and
the turn/tool events β are wired into a shared
sep_run_tool_callsused by BOTHrun()and the streamingrun_with_channel()(the path the polyglot servers andthe TUI drive), so hooks fire identically on both. A hung hook still times out
per-class,
$/cancels, and (fortool_call) fail-closed BLOCKS without stallingthe turn β covered by a new integration test with a hanging peer, plus tests for
tool_resultpatching and the observe-lane shedding.EventParamsgainsseq.Zero behavior change when no
ExtensionHostis attached (the default).before_agent_startrun-loop wiring is deferred to a later phase (the host methodexists and is tested; the engine's system prompt is baked at
resume_or_newandcomposing it is a frontend/server concern) β see the SEP pearls.