π¦ New version release#170
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@1.17.0
Minor Changes
f370ae9: SEP β the .NET operator server (
dotnet/server) now hosts extensions (ui/confirm producer).The C# server wires the engine
ExtensionHost(fromSmooAI.SmoothOperator.Core1.4.0)into each
send_messageturn. WithSMOOTH_EXTENSIONS_ALLOWset (a default-deny allowlist βthe server has no interactive trust prompt),
ExtensionServerHost.BuildAsyncdiscoversextension.tomlextensions, spawns them as JSON-RPC/ndjson subprocesses, and exposes theirtools. Those tools join the turn's tool set so they flow through the SAME per-agent
enabled_toolsfiltering + auth gate as native tools (dotted<ext>.<tool>names matchtoolId), and the host is torn down (subprocesses killed) at turn end.An extension's
ui/confirmbridges onto the operator protocol'swrite_confirmation_required/confirm_tool_actionframes viaConfirmUiProviderβ parkingon the same session-keyed
ConfirmationRegistrythe native write-tool HITL uses. Every otherui/*degrades headless. Only theconfirmcapability is advertised at handshake.Additive: with the allowlist empty (the default) no host is ever built, so behavior is
byte-for-byte unchanged. Verified by an integration test that runs the spec's Node echo peer
through a real server turn and asserts
enabled_toolsfiltering drops an extension toolexactly like a native one.