@acsetra/runner 0.1.75 → 0.1.77
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 +1 -1
- package/lib/grammar.json +4 -4
- package/package.json +1 -1
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.
|
|
163
|
+
if (["version", "--version", "-V"].includes(cmd)) { console.log("runner (@acsetra/runner) 0.1.77"); 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
|
@@ -536,7 +536,7 @@
|
|
|
536
536
|
]
|
|
537
537
|
},
|
|
538
538
|
"set.link": {
|
|
539
|
-
"desc": "wire another app's set in
|
|
539
|
+
"desc": "wire another app's set (same org) in under a local alias — reads AND writes follow to the source (source is '<scope-path>/<set-code>'; unlink with set drop)",
|
|
540
540
|
"kw": [
|
|
541
541
|
"label"
|
|
542
542
|
]
|
|
@@ -965,7 +965,7 @@
|
|
|
965
965
|
"desc": "render-level check: dead wiring, behavior↔surface mismatch, ctx typos. --map = per-node design-as-data; --run executes mount(ctx) and catches throws"
|
|
966
966
|
},
|
|
967
967
|
"pipe": {
|
|
968
|
-
"usage": "pipe <code> -S <scope> [-w code:label] [--rate N] [--timeout N] [--keep]\n pipe show <code> | pipe list | pipe remove <code>",
|
|
968
|
+
"usage": "pipe <code> -S <scope> [-w code:label | -w scope/code] [--rate N] [--timeout N] [--keep]\n pipe show <code> | pipe list | pipe remove <code>",
|
|
969
969
|
"desc": "create/upsert a pipeline envelope (resets workers unless --keep)"
|
|
970
970
|
},
|
|
971
971
|
"pipes": {
|
|
@@ -973,8 +973,8 @@
|
|
|
973
973
|
"desc": "list pipelines (alias of `pipe list`)"
|
|
974
974
|
},
|
|
975
975
|
"w": {
|
|
976
|
-
"usage": "w <pipeline> <tier> [flags] [-w code
|
|
977
|
-
"desc": "add a worker to a pipeline (alias: work)",
|
|
976
|
+
"usage": "w <pipeline> <tier> [flags] [-w code | -w scope/code] [--at N] [-S scope]",
|
|
977
|
+
"desc": "add a worker to a pipeline (alias: work). -w names the set its output lands in: a set of this scope, or scope/code = an EXISTING set of another scope of this org (a `set link` alias writes through)",
|
|
978
978
|
"extra": [
|
|
979
979
|
"Tiers:",
|
|
980
980
|
" snippet -b <code|-> DB-isolated Python (sets output / output={'rows':[…]})",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acsetra/runner",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.77",
|
|
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",
|