🦋 New version release - #500
Merged
Merged
Conversation
brentrager
enabled auto-merge (squash)
August 19, 2026 01:09
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.55.1
Patch Changes
f1ff0f9: go-server: port the
identity_intakeRich Interaction kind + add the kind-routed host-effect seam.The Go server now hosts a second Rich Interaction kind alongside
choices:identity_intake(structured name/email/phone lead capture, capabilityidentity_form).It mirrors the Rust reference: the
request_identity_intakeraise tool, a server-sidevalidator (required-field presence, email shape, phone → E.164 normalization, per-field
errors), and the conversational fallback directive for text-only channels.
This wave also adds the one framework piece the
choiceswave omitted: a kind-agnostichost-effect seam. A kind may implement the optional
InteractionEffectinterface;attachInteractionEffectruns it after a valid submit and is a no-op for kinds without one(so
choicesis unaffected). It fires on BOTH submit paths — the richsubmit_interactionaction (dispatcher) and the generic
submit_interactiontool (the conversational fallback,newly added to the turn runner).
identity_intake's effect stamps the captured, normalizedidentity onto the session metadata (
userName/contactEmail/contactPhone), the samekeys the pre-chat create path stashes and the OTP contact seam reads, so a captured email/
phone becomes OTP-contactable on the next turn.
Tests: validator unit tests (+ shared-fixture cross-check against the Rust reference) and a
WS park/resume integration test on both paths that asserts the host effect stamped the
session and left it OTP-contactable.
@smooai/smooth-operator-web-chat-example@0.0.99
Patch Changes