@vizualmodel/vmblu-cli 0.4.0 → 0.4.1
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 +8 -6
- package/commands/profile/profile.bundle.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,20 +6,22 @@ This folder contains the CLI commands that are available for vmblu.
|
|
|
6
6
|
```txt
|
|
7
7
|
vmblu/
|
|
8
8
|
cli/ # your CLI source
|
|
9
|
+
bin/
|
|
10
|
+
vmblu.js # discovers and adds commands
|
|
9
11
|
commands/
|
|
10
12
|
init/
|
|
11
13
|
profile/
|
|
12
14
|
migrate/
|
|
13
15
|
templates/
|
|
14
16
|
x.y.z/ # a directory per version x.y.z
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
vmblu.js # the executable (router)
|
|
17
|
+
blueprint.schema.json
|
|
18
|
+
blueprint.annex.md
|
|
19
|
+
vizual.schema.json
|
|
20
|
+
system-prompt.md
|
|
21
|
+
profile.schema.json
|
|
21
22
|
package.json
|
|
22
23
|
README.md
|
|
24
|
+
LICENSE.txt
|
|
23
25
|
```
|
|
24
26
|
|
|
25
27
|
## Add more commands
|