browser4-cli 4.12.0-rc.1 → 4.12.0-rc.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 +24 -0
- package/bin/browser4-cli-darwin-arm64 +0 -0
- package/bin/browser4-cli-darwin-x64 +0 -0
- package/bin/browser4-cli-linux-arm64 +0 -0
- package/bin/browser4-cli-linux-musl-arm64 +0 -0
- package/bin/browser4-cli-linux-musl-x64 +0 -0
- package/bin/browser4-cli-linux-x64 +0 -0
- package/bin/browser4-cli-win32-x64.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -371,6 +371,30 @@ browser4-cli uninstall --dry-run
|
|
|
371
371
|
browser4-cli uninstall -y
|
|
372
372
|
```
|
|
373
373
|
|
|
374
|
+
### Skills
|
|
375
|
+
|
|
376
|
+
Manage bundled skill files embedded in the browser4-cli binary. Skill files are AI agent
|
|
377
|
+
instructions that always match the installed CLI version.
|
|
378
|
+
|
|
379
|
+
| Command | Description |
|
|
380
|
+
|---|---|
|
|
381
|
+
| `skills` | List all bundled skill names. Same as `skills list`. |
|
|
382
|
+
| `skills list` | List available bundled skills with file counts. |
|
|
383
|
+
| `skills get <name>` | Output a skill's SKILL.md content. `--full` includes references and templates. `--all` outputs every skill. |
|
|
384
|
+
| `skills path [name]` | Print the skills directory path. With a name, prints the path to that skill's subdirectory. |
|
|
385
|
+
|
|
386
|
+
Skill files are unpacked to the versioned installation directory during `browser4-cli install`.
|
|
387
|
+
Set `BROWSER4_SKILLS_DIR` to override the skills directory path.
|
|
388
|
+
|
|
389
|
+
```bash
|
|
390
|
+
browser4-cli skills # List bundled skills
|
|
391
|
+
browser4-cli skills get browser4-cli # Get the CLI skill's main content
|
|
392
|
+
browser4-cli skills get browser4-cli --full # Include references and templates
|
|
393
|
+
browser4-cli skills get --all # Output every skill
|
|
394
|
+
browser4-cli skills path # Print skills root directory
|
|
395
|
+
browser4-cli skills path browser4-cli # Print path to a specific skill
|
|
396
|
+
```
|
|
397
|
+
|
|
374
398
|
### Other
|
|
375
399
|
|
|
376
400
|
| Command | Description |
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|