@vendian/cli 0.0.1 → 0.0.3

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 CHANGED
@@ -4,6 +4,7 @@ Command-line tools for signing in to Vendian and running local agent workflows.
4
4
 
5
5
  ```bash
6
6
  npm install -g @vendian/cli
7
+ vendian
7
8
  vendian login
8
9
  vendian cloud local serve --agents-dir ./agents
9
10
  ```
@@ -11,15 +12,19 @@ vendian cloud local serve --agents-dir ./agents
11
12
  ## Commands
12
13
 
13
14
  ```bash
15
+ vendian
14
16
  vendian login
15
17
  vendian doctor
16
18
  vendian update
17
19
  vendian cloud local serve --agents-dir ./agents
18
20
  ```
19
21
 
22
+ Run `vendian` with no arguments to open the interactive menu. It shows your
23
+ current endpoint connections and guides common local workflows.
24
+
20
25
  `vendian login` opens a browser sign-in, prepares the local runtime, and stores
21
- the credentials needed by the CLI. `vendian setup` is kept as an alias for
22
- existing users.
26
+ the credentials needed by the CLI for the selected endpoint. `vendian setup` is
27
+ kept as an alias for existing users.
23
28
 
24
29
  `vendian doctor` checks the local installation. `vendian update` refreshes the
25
30
  managed runtime without changing your agents.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('../cli-wrapper.cjs');