@plasm_lang/vercel-agent 0.3.97 → 0.3.98

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasm_lang/vercel-agent",
3
- "version": "0.3.97",
3
+ "version": "0.3.98",
4
4
  "description": "Catalog-native TypeScript agent framework (Plasm CGS/CML, Vercel AI SDK, Nitro-oriented)",
5
5
  "license": "GPL-3.0-or-later",
6
6
  "repository": {
@@ -64,7 +64,7 @@
64
64
  "dependencies": {
65
65
  "@ai-sdk/otel": "^1.0.3",
66
66
  "@opentelemetry/api": "^1.9.0",
67
- "@plasm_lang/engine": "^0.3.97",
67
+ "@plasm_lang/engine": "^0.3.98",
68
68
  "@vercel/blob": "^0.27.3",
69
69
  "@vercel/connect": "^0.2.6",
70
70
  "@vercel/kv": "^3.0.0",
@@ -51,7 +51,7 @@ Core surface:
51
51
 
52
52
  Composition rules:
53
53
  - One binding per line; final roots last (preferred). Single-line bindings coerced; default return is first binding.
54
- - Row text: \`label = source <<TAG\` … \`TAG\` (equals required); optional \`label = source[p#,…] <<TAG\`. Minijinja \`{{ }}\` / \`{% %}\` over \`rows\` only inside the heredoc body — not \`\${}\`.
54
+ - Row text: \`label = source <<TAG\` … \`TAG\`; optional \`label = source[p#,…] <<TAG\`. Program-level static bindings also accept \`label <<TAG\` (sugar for \`label = <<TAG\`). Minijinja \`{{ }}\` / \`{% %}\` over \`rows\` only inside the heredoc body — not \`\${}\`.
55
55
  - Pass \`binding.content\` to string params; compose with \`\${report.content}\` in later heredocs/strings (\`$$\` escapes \`$\`). Do not use \`report.content\` as a final root or relation receiver.
56
56
  - Action/create roots: return the action row or follow with \`e#(p#=…)\` get — not \`created.p#\` as a program root.
57
57
  - Heredoc: \`<<TAG\` + newline; first trimmed \`TAG\` line closes; pick a tag absent from the body. \`markdown\`/\`html\`/\`document\`/\`json_text\`/\`blob\` values use \`<<TAG\` … \`TAG\` only.