@acsetra/runner 0.1.77 → 0.1.78

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/bin/runner.js CHANGED
@@ -160,7 +160,7 @@ async function main() {
160
160
  const argv = process.argv.slice(2);
161
161
  if (!argv.length || ["-h", "--help"].includes(argv[0])) { console.log(renderTop()); return 0; }
162
162
  const [cmd, ...rest] = argv;
163
- if (["version", "--version", "-V"].includes(cmd)) { console.log("runner (@acsetra/runner) 0.1.77"); return 0; }
163
+ if (["version", "--version", "-V"].includes(cmd)) { console.log("runner (@acsetra/runner) 0.1.78"); return 0; }
164
164
 
165
165
  // help — top-level, `help <topic>`, and per-verb `<cmd> … --help` (lexical, before toOp)
166
166
  if (cmd === "help") {
package/lib/grammar.json CHANGED
@@ -984,7 +984,9 @@
984
984
  " read --set CODE [--mode latest] resolve a value set into the run data",
985
985
  " [--key K] [--as NAME] [--read-scope S]",
986
986
  " llm [--provider openai] [--model M] one model call (keys injected server-side)",
987
- " [--system-from K] [--user-from ask] [-k/--keys a,b]"
987
+ " [--system-from K] [--user-from ask] [-k/--keys a,b]",
988
+ " pipeline -P/--calls CODE|SCOPE/CODE run an EXISTING pipeline of this org as this step",
989
+ " (a real child launch; -s '{\"pick\":[\u2026],\"input\":{\u2026}}' shapes its input)"
988
990
  ]
989
991
  },
990
992
  "op": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acsetra/runner",
3
- "version": "0.1.77",
3
+ "version": "0.1.78",
4
4
  "description": "Runner CLI — author and run hosted Runner apps from your terminal (the `runner` command).",
5
5
  "keywords": ["runner", "acsetra", "cli", "agent", "low-code"],
6
6
  "license": "MIT",