playbooks 0.1.5 → 0.1.7
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 +14 -0
- package/dist/index.js +1419 -1197
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,20 @@ Playbooks uses an action/type command structure:
|
|
|
45
45
|
- `npx playbooks list skill`
|
|
46
46
|
- `npx playbooks manage skill`
|
|
47
47
|
- `npx playbooks update skill [skill-names...]`
|
|
48
|
+
- `npx playbooks get <url> [out <path>]`
|
|
49
|
+
|
|
50
|
+
### Fetch a URL as markdown
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
# Output markdown to stdout
|
|
54
|
+
npx playbooks get https://example.com
|
|
55
|
+
|
|
56
|
+
# Save markdown to a file
|
|
57
|
+
npx playbooks get https://example.com out notes.md
|
|
58
|
+
|
|
59
|
+
# Output JSON metadata instead of raw markdown
|
|
60
|
+
npx playbooks get https://example.com --json
|
|
61
|
+
```
|
|
48
62
|
|
|
49
63
|
### Source formats
|
|
50
64
|
|