@labelbox/recursion-cli 0.0.43 → 0.0.45
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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @labelbox/recursion-cli
|
|
2
2
|
|
|
3
|
-
`rl` — the
|
|
3
|
+
`rl` — the Recursion CLI. It mirrors the TypeScript SDK
|
|
4
4
|
(`@labelbox/recursion-sdk`) exactly: where the SDK is `rl.synthesizers.create(...)`, the
|
|
5
5
|
CLI is `rl synthesizers create …`. Dots become spaces; you get `--help` at every
|
|
6
6
|
level.
|
|
@@ -60,7 +60,7 @@ restate them here.
|
|
|
60
60
|
|
|
61
61
|
The CLI is released independently of the SDK (it no longer depends on it): a
|
|
62
62
|
`packages/cli/**` change cuts a CLI release via the **Release / CLI** GitHub
|
|
63
|
-
Action — see `yarn
|
|
63
|
+
Action — see `yarn commands release`.
|
|
64
64
|
|
|
65
65
|
From a monorepo checkout, run the bin directly without installing:
|
|
66
66
|
|
|
@@ -102,7 +102,7 @@ rl synthesizer-runs trigger --problem-version-id pv_01HX... --from-json ./run.js
|
|
|
102
102
|
There is **nothing to regenerate or commit** for the CLI — the command surface is
|
|
103
103
|
fetched fresh from the target server's `GET /cli/manifest` on every run, so a backend
|
|
104
104
|
change flows through automatically after deploy with no CLI step. The manifest itself
|
|
105
|
-
is assembled by `yarn
|
|
105
|
+
is assembled by `yarn generate cli:manifest` (included in `yarn generate prerequisites`) from the
|
|
106
106
|
spec-derived reference files and embedded into the backend; to add or change a
|
|
107
107
|
command, change the backend `@SdkRoute` — not this package.
|
|
108
108
|
|