π¦ New version release - #358
Merged
Merged
Conversation
brentrager
force-pushed
the
changeset-release/main
branch
from
August 14, 2026 01:20
4f1f102 to
0214cab
Compare
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.41.0
Minor Changes
caa3678: TS server: resolve
send_message.skillserver-side (Rust PR th-b30a6a: send_message grows an optionalskillβ the engine resolves it, not the clientΒ #338 parity).The TS server carried the
skillfield on the wire and ignored it β its own 1.39.0 changelog said so outright ("the TS / Python / Go / .NET servers ignore the field for now"). It now resolves the skill and composes it into the turn:skills.tsβisValidSkillName(ASCII alphanumerics +-/_, β€128 chars, making..,/,\and NUL unrepresentable rather than filtered),stripFrontmatter(drops the discovery-metadata YAML so the model sees only instructions; unterminated frontmatter is returned untouched rather than swallowing the file),skillSection, andresolveSection.SkillResolverβ the host seam, viaserve({ skillResolver }).DirSkillResolverβ<root>/<name>/SKILL.mdover the:-separated roots inSMOOTH_SKILLS_DIR, first root wins.serve()prefers an explicit resolver, elseDirSkillResolver.fromEnv(), mirroring Rust'sinstall_skill_resolver_from_env. Neither β no resolver, so a multi-tenant deploy never serves host skills by accident.images: an unresolvable skill returnserror { code: "SKILL_NOT_FOUND" }and the turn does not run β resolved before the 202 ack, so a client never sees "accepted" for a turn that was never going to happen. A blank/whitespaceskillis treated as absent, matching Rust's trim-then-filter.Tests: all five Rust
skills.rsunit tests ported under their Rust names, plus over-the-socket coverage for fail-closed (asserting the model is never called), system-prompt-not-user-message placement (including that frontmatter never reaches the model), and blank-as-absent with a resolver installed. 254 server tests green.Backward compatible: an absent
skillfield is byte-for-byte the previous behavior.@smooai/smooth-operator-server@1.10.0
Minor Changes
caa3678: TS server: resolve
send_message.skillserver-side (Rust PR th-b30a6a: send_message grows an optionalskillβ the engine resolves it, not the clientΒ #338 parity).The TS server carried the
skillfield on the wire and ignored it β its own 1.39.0 changelog said so outright ("the TS / Python / Go / .NET servers ignore the field for now"). It now resolves the skill and composes it into the turn:skills.tsβisValidSkillName(ASCII alphanumerics +-/_, β€128 chars, making..,/,\and NUL unrepresentable rather than filtered),stripFrontmatter(drops the discovery-metadata YAML so the model sees only instructions; unterminated frontmatter is returned untouched rather than swallowing the file),skillSection, andresolveSection.SkillResolverβ the host seam, viaserve({ skillResolver }).DirSkillResolverβ<root>/<name>/SKILL.mdover the:-separated roots inSMOOTH_SKILLS_DIR, first root wins.serve()prefers an explicit resolver, elseDirSkillResolver.fromEnv(), mirroring Rust'sinstall_skill_resolver_from_env. Neither β no resolver, so a multi-tenant deploy never serves host skills by accident.images: an unresolvable skill returnserror { code: "SKILL_NOT_FOUND" }and the turn does not run β resolved before the 202 ack, so a client never sees "accepted" for a turn that was never going to happen. A blank/whitespaceskillis treated as absent, matching Rust's trim-then-filter.Tests: all five Rust
skills.rsunit tests ported under their Rust names, plus over-the-socket coverage for fail-closed (asserting the model is never called), system-prompt-not-user-message placement (including that frontmatter never reaches the model), and blank-as-absent with a resolver installed. 254 server tests green.Backward compatible: an absent
skillfield is byte-for-byte the previous behavior.@smooai/smooth-operator-web-chat-example@0.0.53
Patch Changes