@vendian/cli 0.0.33 → 0.0.34
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/cli-wrapper.mjs +8 -1
- package/package.json +1 -1
package/cli-wrapper.mjs
CHANGED
|
@@ -1107,7 +1107,7 @@ import path8 from "node:path";
|
|
|
1107
1107
|
import readline from "node:readline";
|
|
1108
1108
|
|
|
1109
1109
|
// src/version.js
|
|
1110
|
-
var CLI_VERSION = true ? "0.0.
|
|
1110
|
+
var CLI_VERSION = true ? "0.0.34" : process.env.npm_package_version || "0.0.0-dev";
|
|
1111
1111
|
|
|
1112
1112
|
// src/npm-update.js
|
|
1113
1113
|
var NPM_CHECK_INTERVAL_MS = 30 * 60 * 1e3;
|
|
@@ -2606,6 +2606,11 @@ var COMMAND_GROUPS = [
|
|
|
2606
2606
|
{ cmd: "vendian cloud local serve --agents-dir .", desc: "Start agents" },
|
|
2607
2607
|
{ cmd: "vendian login --backend staging", desc: "Sign in to staging" }
|
|
2608
2608
|
] },
|
|
2609
|
+
{ section: "Syncing & deploying", commands: [
|
|
2610
|
+
{ cmd: "vendian cloud local push --collection-id ID --project-id PID", desc: "Push code to project repo" },
|
|
2611
|
+
{ cmd: "vendian cloud local push --branch feature/x --from dev", desc: "Push to a new branch" },
|
|
2612
|
+
{ cmd: "vendian cloud local deploy --collection-id ID --project-id PID", desc: "Deploy to cloud" }
|
|
2613
|
+
] },
|
|
2609
2614
|
{ section: "Maintenance", commands: [
|
|
2610
2615
|
{ cmd: "vendian doctor", desc: "Check if everything is set up" },
|
|
2611
2616
|
{ cmd: "vendian update", desc: "Update to the latest version" }
|
|
@@ -3279,6 +3284,8 @@ function helpText() {
|
|
|
3279
3284
|
" vendian validate ./agents/my-agent --runtime",
|
|
3280
3285
|
" vendian models",
|
|
3281
3286
|
" vendian cloud local serve --agents-dir ./agents",
|
|
3287
|
+
" vendian cloud local push --collection-id ID --project-id PID --branch dev",
|
|
3288
|
+
" vendian cloud local push --branch feature/x --from dev",
|
|
3282
3289
|
" vendian doctor",
|
|
3283
3290
|
" vendian update",
|
|
3284
3291
|
"",
|