skillscript-runtime 0.15.7 → 0.16.1

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.
Files changed (53) hide show
  1. package/README.md +23 -24
  2. package/dist/compile.js +25 -71
  3. package/dist/compile.js.map +1 -1
  4. package/dist/connectors/mcp-remote.d.ts.map +1 -1
  5. package/dist/connectors/mcp-remote.js +7 -1
  6. package/dist/connectors/mcp-remote.js.map +1 -1
  7. package/dist/errors.d.ts +13 -7
  8. package/dist/errors.d.ts.map +1 -1
  9. package/dist/errors.js +20 -13
  10. package/dist/errors.js.map +1 -1
  11. package/dist/help-content.d.ts.map +1 -1
  12. package/dist/help-content.js +78 -103
  13. package/dist/help-content.js.map +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +1 -1
  17. package/dist/index.js.map +1 -1
  18. package/dist/lint.d.ts.map +1 -1
  19. package/dist/lint.js +167 -228
  20. package/dist/lint.js.map +1 -1
  21. package/dist/mutation-gate.d.ts +7 -13
  22. package/dist/mutation-gate.d.ts.map +1 -1
  23. package/dist/mutation-gate.js +6 -11
  24. package/dist/mutation-gate.js.map +1 -1
  25. package/dist/parser.d.ts +25 -74
  26. package/dist/parser.d.ts.map +1 -1
  27. package/dist/parser.js +80 -272
  28. package/dist/parser.js.map +1 -1
  29. package/dist/runtime.d.ts +1 -10
  30. package/dist/runtime.d.ts.map +1 -1
  31. package/dist/runtime.js +76 -188
  32. package/dist/runtime.js.map +1 -1
  33. package/dist/safe-path.d.ts +20 -0
  34. package/dist/safe-path.d.ts.map +1 -0
  35. package/dist/safe-path.js +49 -0
  36. package/dist/safe-path.js.map +1 -0
  37. package/dist/skill-manager.js +1 -1
  38. package/dist/skill-manager.js.map +1 -1
  39. package/dist/trace.d.ts.map +1 -1
  40. package/dist/trace.js +26 -9
  41. package/dist/trace.js.map +1 -1
  42. package/docs/language-reference.md +3 -24
  43. package/examples/README.md +1 -2
  44. package/examples/connectors/McpConnectorTemplate/McpConnectorTemplate.ts +4 -5
  45. package/examples/connectors/SkillStoreTemplate/SkillStoreTemplate.ts +9 -9
  46. package/examples/custom-bootstrap.example.ts +4 -4
  47. package/examples/onboarding-scaffold/bootstrap.ts +7 -7
  48. package/examples/onboarding-scaffold/file-data-store.ts +3 -5
  49. package/examples/onboarding-scaffold/openai-local-model.ts +7 -8
  50. package/examples/onboarding-scaffold/tmux-shell-agent-connector.ts +4 -4
  51. package/examples/skillscripts/hello-world.skill.provenance.json +1 -1
  52. package/package.json +1 -1
  53. package/examples/skillscripts/cut-release-tag.skill.md +0 -40
package/dist/parser.d.ts CHANGED
@@ -1,52 +1,20 @@
1
- export type OpKind = "$" | "$set" | "$append" | "?" | "@" | "!" | "??" | "foreach" | "if" | ">" | "~" | "&" | "file_read" | "file_write" | "notify";
1
+ export type OpKind = "$" | "$set" | "$append" | "?" | "shell" | "emit" | "foreach" | "if" | "inline" | "file_read" | "file_write" | "notify";
2
2
  /**
3
- * v0.7.0 — runtime-intrinsic function-call names. Closed set of ops the
4
- * language implements directly (no MCP dispatch). Function-call grammar:
3
+ * Runtime-intrinsic function-call names. Closed set of ops the language
4
+ * implements directly (no MCP dispatch). Function-call grammar:
5
5
  * `verb(kwarg=value, ...) [-> BINDING]`.
6
6
  *
7
7
  * Anything else with function-call shape is rejected by parser with a
8
8
  * remediation pointing at `$ tool args -> R` for MCP dispatch.
9
9
  */
10
- export declare const RUNTIME_INTRINSIC_FN_NAMES: readonly ["emit", "ask", "inline", "execute_skill", "shell", "file_read", "file_write", "notify"];
10
+ export declare const RUNTIME_INTRINSIC_FN_NAMES: readonly ["emit", "inline", "execute_skill", "shell", "file_read", "file_write", "notify"];
11
11
  export interface SkillOp {
12
12
  kind: OpKind;
13
13
  body: string;
14
14
  outputVar?: string;
15
15
  mcpConnector?: string;
16
- retrievalParams?: {
17
- mode: string;
18
- query: string;
19
- /** Integer literal OR a `$(VAR)`-style ref string. Runtime substitutes refs then parses to int. */
20
- limit: number | string;
21
- connector: string;
22
- extra: Record<string, string>;
23
- /**
24
- * Op-level fallback (per language reference §9). When the retrieval
25
- * throws or returns an empty array, runtime binds this value (string)
26
- * to the output var instead of propagating the error.
27
- */
28
- fallback?: string;
29
- };
30
- localModelParams?: {
31
- prompt: string;
32
- model?: string;
33
- /** Integer literal OR a `$(VAR)`-style ref string. Runtime substitutes refs then parses to int. */
34
- maxTokens?: number | string;
35
- /**
36
- * Per-op timeout override in SECONDS (per decision 7 resolution chain).
37
- * Integer literal OR `$(VAR)` ref. Per-op wins over skill `# Timeout:`
38
- * header, connector default, and built-in fallback.
39
- */
40
- timeoutSeconds?: number | string;
41
- /**
42
- * Op-level fallback (per language reference §9). When the model call
43
- * throws or returns an empty (trimmed) response, runtime binds this
44
- * value to the output var instead of propagating the error.
45
- */
46
- fallback?: string;
47
- };
48
16
  /**
49
- * For `&` ops only: skill name + optional key=value args passed as inputs
17
+ * `inline` ops only: skill name + optional key=value args passed as inputs
50
18
  * when the target is procedural (runtime invocation), ignored when the
51
19
  * target is data-typed (compile-time inline). `outputVar` captures the
52
20
  * result of procedural invocations; absent for data inlines.
@@ -56,23 +24,18 @@ export interface SkillOp {
56
24
  args: Record<string, string>;
57
25
  };
58
26
  /**
59
- * For `@` ops only: when the literal first token of the body is `unsafe`,
60
- * the parser attaches `policy: "unsafe"` and strips the keyword from the
61
- * body. Lint flags every `@ unsafe` (tier-2); runtime refuses unless
62
- * `runtime.enable_unsafe_shell = true` (default false). Default `@` ops
63
- * (without the keyword) route through the structured-spawn sandbox per
64
- * decision 2 — one binary, no shell interpretation.
27
+ * `shell` ops only: when `unsafe=true` kwarg is set, the runtime routes
28
+ * through full-shell exec (vs default structured-spawn sandbox). Refused
29
+ * unless `runtime.enable_unsafe_shell = true` (default false). Default
30
+ * `shell(...)` ops route through structured spawn one binary, no shell
31
+ * interpretation.
65
32
  */
66
33
  policy?: "unsafe";
67
34
  setName?: string;
68
35
  setValue?: string;
69
36
  /**
70
- * Top-level fallback (per language reference §9, extended 2026-05-21
71
- * for `$` ops via cold-agent corpus). On `$` throw or empty result,
72
- * runtime binds this value to the output var instead of propagating
73
- * the error. `~` and `>` ops carry fallback on their params bag for
74
- * type-specific coercion; `$` returns are heterogeneous (objects,
75
- * arrays, strings) so it lives at the op level.
37
+ * Op-level fallback. On op throw or empty result, runtime binds this value
38
+ * to the output var instead of propagating the error.
76
39
  */
77
40
  fallback?: string;
78
41
  foreachIter?: string;
@@ -84,7 +47,7 @@ export interface SkillOp {
84
47
  }>;
85
48
  ifElseBody?: SkillOp[];
86
49
  /**
87
- * v0.7.0 — file_read / file_write op params. `path` is the filesystem path
50
+ * `file_read` / `file_write` op params. `path` is the filesystem path
88
51
  * (may contain `${VAR}` substitutions resolved at runtime). `content` is
89
52
  * the body to write (file_write only).
90
53
  */
@@ -93,41 +56,29 @@ export interface SkillOp {
93
56
  content?: string;
94
57
  };
95
58
  /**
96
- * v0.8.0 — notify() op params. `agent` is the target agent identifier
97
- * (required, may contain `${VAR}` substitutions resolved at runtime).
98
- * `message` is the explicit message body (optional — runtime defaults to
99
- * the joined accumulated emissions when absent). `connectors` is an
100
- * optional restriction list — when present, only AgentConnectors whose
101
- * registered name is in this list are dispatched to.
59
+ * `notify` op params. `agent` is the target agent identifier (required,
60
+ * may contain `${VAR}` substitutions resolved at runtime). `message` is
61
+ * the explicit message body (optional — runtime defaults to the joined
62
+ * accumulated emissions when absent). `connectors` is an optional
63
+ * restriction list — when present, only AgentConnectors whose registered
64
+ * name is in this list are dispatched to.
102
65
  */
103
66
  notifyParams?: {
104
67
  agent: string;
105
68
  message?: string;
106
69
  connectors?: string[];
107
- /** v0.9.6 — adopter-defined routing vocab; flows to `meta.event_type`. */
70
+ /** Adopter-defined routing vocab; flows to `meta.event_type`. */
108
71
  event_type?: string;
109
- /** v0.9.6 — reply-correlation primitive; flows to `meta.correlation_id`. */
72
+ /** Reply-correlation primitive; flows to `meta.correlation_id`. */
110
73
  correlation_id?: string;
111
74
  };
112
75
  /**
113
- * v0.7.0 — inline `approved="reason"` kwarg captured on mutation-class
114
- * function-call ops. Author intent marker; lint's `unconfirmed-mutation`
115
- * rule accepts presence (any non-empty string) as per-op authorization
116
- * when `# Autonomous: true` is not declared.
76
+ * Inline `approved="reason"` kwarg captured on mutation-class function-call
77
+ * ops. Author intent marker; lint's `unconfirmed-mutation` rule accepts
78
+ * presence (any non-empty string) as per-op authorization when
79
+ * `# Autonomous: true` is not declared.
117
80
  */
118
81
  approved?: string;
119
- /**
120
- * v0.7.1 — source-form marker. The parser collapses canonical
121
- * function-call ops (`emit(text="...")`, `shell(command="...")`, etc.)
122
- * to the same AST `kind` as the legacy symbol form (`! ...`, `@ ...`,
123
- * etc.) so runtime/render/lint share one dispatch path. This field
124
- * preserves which surface the author wrote so the `deprecated-symbol-op`
125
- * lint can fire only on legacy-form occurrences.
126
- *
127
- * `"function-call"` = author wrote `verb(kwargs)` shape.
128
- * `undefined` = author wrote symbol form (legacy).
129
- */
130
- sourceForm?: "function-call";
131
82
  }
132
83
  export interface SkillTarget {
133
84
  name: string;
@@ -1 +1 @@
1
- {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../src/parser.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../src/parser.ts"],"names":[],"mappings":"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"}