Skip to content

Skillscript

v0.17.2 Bugfix

This release fixes issues for SREs watching stability and regressions.

✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Topics

agents dsl llm mcp skills workflow

Summary

AI summary

Parser now strips one layer of surrounding quotes from # Vars: default values, fixing silent quote‑leak bugs.

Full changelog

Composition dogfood fix. Perry's morning-brief dogfood (1ea3d625)
surfaced a silent quote-leak: # Vars: LOCATION="Valdese" bound the
literal 9-char string "Valdese" (quotes included), not the 7-char
Valdese. URL-encoded with the quotes downstream, broke wttr.in
lookup (IP-geolocation fell back to Berlin instead of Valdese).

What landed

Parser strips exactly one layer of matched surrounding quotes from
# Vars: default values at parse time:

  • LOCATION="Valdese"Valdese (the load-bearing case)
  • MSG="hello world"hello world (quotes were doing real
    whitespace-delimiting work; one-layer strip preserves the space)
  • WHO=worldworld (bare, unchanged)
  • LOCATION="" → empty string (two literal quote chars previously)
  • Q='"x"'"x" (one-layer-only, not recursive)
  • X="x'"x' (mismatched quotes pass through unchanged)
  • JSON literals (TAGS=["a","b"], CFG={"k":"v"}) untouched —
    square brackets / curly braces aren't quotes.

Back-compat-positive

Existing skills get more correct, not less. The bundled example
HttpWebhookAgentConnector/README.md uses CHANNEL="slack" — pre-fix
that bound the 7-char "slack" (literal quotes); post-fix it binds
slack, which is what the example always meant. No skill breaks; a
few quietly start working right.

Known issue noted

Perry's same dogfood (1ea3d625 Finding 2) surfaced a separate
execute_skill composition issue: -> R binding propagates the
child's full final_vars into the parent, including internal scratch
vars. His morning-brief blew the MCP token budget (252KB result) on a
trivial 2-line emit. Workaround until v0.17.3+: prefer
${R.outputs.text} over ${R.final_vars.X}; design conversation on
the right shape (explicit # Returns: surface vs size-cap vs MCP
trim) deferred to a separate ring.


Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track Skillscript

Get notified when new releases ship.

Sign up free

About Skillscript

All releases →

Related context

Earlier breaking changes

  • v0.35.0 Editing `# Deadline:` on an approved skill drops it to Draft (signature invalidates).

Beta — feedback welcome: [email protected]