@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 +7 -2
- package/bin/vendian.cjs +2 -0
- package/cli-wrapper.cjs +1139 -0
- package/package.json +10 -3
- package/bin/vendian.js +0 -8
- package/src/auth.js +0 -239
- package/src/config.js +0 -40
- package/src/constants.js +0 -15
- package/src/doctor.js +0 -23
- package/src/forward.js +0 -47
- package/src/install.js +0 -105
- package/src/main.js +0 -80
- package/src/paths.js +0 -43
- package/src/process.js +0 -50
- package/src/prompt.js +0 -38
- package/src/python.js +0 -77
- package/src/secret-store.js +0 -94
- package/src/setup.js +0 -121
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
|
|
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.
|
package/bin/vendian.cjs
ADDED