@vendian/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 +1 -3
- package/cli-wrapper.mjs +144 -342
- package/dev-ui/css/app.css +0 -12
- package/dev-ui/index.html +2 -11
- package/dev-ui/js/app.js +1 -7
- package/dev-ui/js/serve.js +1 -77
- package/dev-ui/js/state.js +0 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,6 @@ vendian
|
|
|
8
8
|
vendian login
|
|
9
9
|
vendian init --output-dir ./agents
|
|
10
10
|
vendian create "My Agent" --output-dir ./agents
|
|
11
|
-
vendian cloud local run --collection-id YOUR_COLLECTION --path ./agents/my-agent --input-json '{}'
|
|
12
11
|
vendian cloud local serve --agents-dir ./agents
|
|
13
12
|
```
|
|
14
13
|
|
|
@@ -24,7 +23,6 @@ vendian create "My Agent" --output-dir ./agents
|
|
|
24
23
|
vendian validate ./agents/my-agent --runtime
|
|
25
24
|
vendian test ./agents/my-agent --dry-run --mock-credentials
|
|
26
25
|
vendian models
|
|
27
|
-
vendian cloud local run --collection-id YOUR_COLLECTION --path ./agents/my-agent --input-json '{}'
|
|
28
26
|
vendian cloud local serve --agents-dir ./agents
|
|
29
27
|
```
|
|
30
28
|
|
|
@@ -46,7 +44,7 @@ Agent authoring commands are also forwarded to the managed Python SDK CLI.
|
|
|
46
44
|
`vendian init` writes the current SDK-owned authoring docs into `.vendian-docs/`,
|
|
47
45
|
and `vendian create` scaffolds agents from the SDK templates. Updating the
|
|
48
46
|
managed runtime refreshes these docs and templates with the Python SDK. The CLI
|
|
49
|
-
remembers
|
|
47
|
+
remembers folders initialized with `vendian init` and refreshes their
|
|
50
48
|
`.vendian-docs/` automatically after `vendian update` or a managed auto-update.
|
|
51
49
|
|
|
52
50
|
## Local Data
|