@vellumai/cli 0.8.10-dev.202606101514.1c52ced → 0.8.10-dev.202606101903.31e26e6
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/package.json +1 -1
- package/src/commands/connect.ts +1 -1
- package/src/commands/devices.ts +1 -1
- package/src/commands/pair.ts +1 -1
- package/src/commands/unpair.ts +1 -1
- package/src/index.ts +8 -4
package/package.json
CHANGED
package/src/commands/connect.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { connectImport } from "./connect/import.js";
|
|
2
2
|
|
|
3
3
|
function printUsage(): void {
|
|
4
|
-
console.log("Usage: vellum connect <subcommand>");
|
|
4
|
+
console.log("Usage: vellum connect [beta] <subcommand>");
|
|
5
5
|
console.log("");
|
|
6
6
|
console.log("Connect to an assistant paired from another machine.");
|
|
7
7
|
console.log("");
|
package/src/commands/devices.ts
CHANGED
|
@@ -38,7 +38,7 @@ interface DeviceRecord {
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
function printUsage(): void {
|
|
41
|
-
console.log(`vellum devices - List and revoke devices paired to a local assistant
|
|
41
|
+
console.log(`vellum devices [beta] - List and revoke devices paired to a local assistant
|
|
42
42
|
|
|
43
43
|
USAGE:
|
|
44
44
|
vellum devices [name]
|
package/src/commands/pair.ts
CHANGED
|
@@ -37,7 +37,7 @@ function isLoopbackHost(url: string): boolean {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
function printUsage(): void {
|
|
40
|
-
console.log(`vellum pair - Mint a device-scoped token for another machine
|
|
40
|
+
console.log(`vellum pair [beta] - Mint a device-scoped token for another machine
|
|
41
41
|
|
|
42
42
|
USAGE:
|
|
43
43
|
vellum pair [assistant] [options]
|
package/src/commands/unpair.ts
CHANGED
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
import { deleteGuardianToken } from "../lib/guardian-token";
|
|
25
25
|
|
|
26
26
|
function printUsage(): void {
|
|
27
|
-
console.log(`vellum unpair - Forget a paired assistant imported from another machine
|
|
27
|
+
console.log(`vellum unpair [beta] - Forget a paired assistant imported from another machine
|
|
28
28
|
|
|
29
29
|
USAGE:
|
|
30
30
|
vellum unpair <name> [--yes]
|
package/src/index.ts
CHANGED
|
@@ -84,8 +84,12 @@ function printHelp(): void {
|
|
|
84
84
|
console.log(" clean Kill orphaned vellum processes");
|
|
85
85
|
console.log(" client Connect to a hatched assistant");
|
|
86
86
|
console.log(" confirm Resolve a pending tool confirmation on an assistant");
|
|
87
|
-
console.log(
|
|
88
|
-
|
|
87
|
+
console.log(
|
|
88
|
+
" connect Import an assistant paired from another machine [beta]",
|
|
89
|
+
);
|
|
90
|
+
console.log(
|
|
91
|
+
" devices List or revoke devices paired to a local assistant [beta]",
|
|
92
|
+
);
|
|
89
93
|
console.log(" env Manage the default CLI environment");
|
|
90
94
|
console.log(" events Stream events from a running assistant");
|
|
91
95
|
console.log(" exec Execute a command inside an assistant's container");
|
|
@@ -97,7 +101,7 @@ function printHelp(): void {
|
|
|
97
101
|
console.log(" logout Log out of the Vellum platform");
|
|
98
102
|
console.log(" message Send a message to a running assistant");
|
|
99
103
|
console.log(
|
|
100
|
-
" pair Mint a device-scoped token to connect another machine",
|
|
104
|
+
" pair Mint a device-scoped token to connect another machine [beta]",
|
|
101
105
|
);
|
|
102
106
|
console.log(
|
|
103
107
|
" ps List assistants (or processes for a specific assistant)",
|
|
@@ -116,7 +120,7 @@ function printHelp(): void {
|
|
|
116
120
|
console.log(" terminal Open a terminal into a managed assistant container");
|
|
117
121
|
console.log(" tunnel Create a tunnel for a locally hosted assistant");
|
|
118
122
|
console.log(
|
|
119
|
-
" unpair Forget a paired assistant imported from another machine",
|
|
123
|
+
" unpair Forget a paired assistant imported from another machine [beta]",
|
|
120
124
|
);
|
|
121
125
|
console.log(" upgrade Upgrade an assistant to a newer version");
|
|
122
126
|
console.log(" use Set the active assistant for commands");
|