@ciandt-flow/cli 2.0.1 → 2.1.0-beta.230
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 +19 -0
- package/dist/index.js +141 -128
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -342,6 +342,25 @@ flow skills remove --global my-skill
|
|
|
342
342
|
|
|
343
343
|
---
|
|
344
344
|
|
|
345
|
+
### `bundle`
|
|
346
|
+
|
|
347
|
+
Manage Flow bundles (Findr use-case collections).
|
|
348
|
+
|
|
349
|
+
#### `bundle install <name>`
|
|
350
|
+
|
|
351
|
+
Install all artifacts from a Findr bundle in a single operation. Fetches the bundle by name, shows a summary of its artifacts, asks for confirmation, then installs each available artifact sequentially.
|
|
352
|
+
|
|
353
|
+
```bash
|
|
354
|
+
flow bundle install <name>
|
|
355
|
+
```
|
|
356
|
+
|
|
357
|
+
```bash
|
|
358
|
+
flow bundle install "My React Kit"
|
|
359
|
+
flow bundle install "Squad Setup Bundle"
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
345
364
|
### `health`
|
|
346
365
|
|
|
347
366
|
Run diagnostic checks.
|