π¦ New version release - #561
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.58.8
Patch Changes
55bf1ca: feat(python,go): resolve
send_message.skillserver-side β the last two languages (th-ebe27d)The skill seam (Rust th-b30a6a: send_message grows an optional
skillβ the engine resolves it, not the clientΒ #338) let the wire carry intent βskill: "code-review"βinstead of prose: the server resolves the name to its markdown body and composes it
into the turn's system prompt, so the persisted user message stays exactly what the
user typed and the body is not replayed as context on every later turn. Rust, C#
and TypeScript had it; the Python and Go servers ignored the field entirely, which
is worse than not supporting it β a client that asked for a skill got a confident
unskilled answer with no signal that anything was dropped.
Both now carry the full seam, mirroring
rust/smooth-operator-server/src/skills.rs:a
SkillResolverhost seam (ServerState.skill_resolver/WithSkillResolver) anda
DirSkillResolverdefault reading<root>/<name>/SKILL.mdover the:-separatedroots in
SMOOTH_SKILLS_DIR, first root wins. Unset β no resolver is installed andany
skillfield is a cleanSKILL_NOT_FOUND, so a multi-tenant deploy neverserves host skills by accident.
Two properties are load-bearing and tested as such:
SKILL_NOT_FOUNDinstead of the 202 and never starts a turn. Resolving after the ack would leave
the client holding an accepted turn that then errors, and running the turn anyway
is the silent-degradation bug above. A blank/whitespace
skillis "no skill",not an unknown one, so a client that always sends the field still works.
[A-Za-z0-9_-]{1,128}β matching the pattern
spec/actions/send-message.schema.jsonalready declared βbefore it is ever joined onto a filesystem root, so
../../etc/passwd,a/b,a\band an embedded NUL cannot round-trip into a path.New conformance scenario
skill-unknown-errorpins the fail-closed contract acrossall five servers: it needs no filesystem setup (the default server installs no
resolver), so it is the corpus's oracle for this seam rather than five per-language
opinions about it.
No wire-protocol change β the schema already carried the field.
@smooai/smooth-operator-web-chat-example@0.0.121
Patch Changes