@proggarapsody/bitbottle 1.41.0 → 1.43.0
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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,6 +47,11 @@ bitbottle skill remove # uninstall
|
|
|
47
47
|
go install github.com/proggarapsody/bitbottle/cmd/bitbottle@latest
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
+
**Nix:**
|
|
51
|
+
```sh
|
|
52
|
+
nix run github:proggarapsody/bitbottle -- --version
|
|
53
|
+
```
|
|
54
|
+
|
|
50
55
|
**Homebrew / binary / deb / rpm / Docker** — see the [latest release](https://github.com/proggarapsody/bitbottle/releases/latest).
|
|
51
56
|
|
|
52
57
|
---
|
|
@@ -621,6 +626,18 @@ when stdout is a TTY (default `less -FRX`). Set `PAGER=cat` to disable.
|
|
|
621
626
|
|
|
622
627
|
---
|
|
623
628
|
|
|
629
|
+
## Extensions
|
|
630
|
+
|
|
631
|
+
bitbottle supports third-party extensions. Extension repositories must be named `bitbottle-<name>`.
|
|
632
|
+
|
|
633
|
+
```bash
|
|
634
|
+
bitbottle extension install USER/bitbottle-<name> # install from GitHub
|
|
635
|
+
bitbottle extension install --local PATH # install from local dir
|
|
636
|
+
bitbottle extension list # list installed
|
|
637
|
+
```
|
|
638
|
+
|
|
639
|
+
---
|
|
640
|
+
|
|
624
641
|
## Contributing
|
|
625
642
|
|
|
626
643
|
See [CONTRIBUTING.md](CONTRIBUTING.md). Run `go test ./...` before sending a PR.
|