paseo-prompt-kit 0.5.2 → 0.5.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 +17 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,22 @@ No path sends the message on its own. You review the result and send it yourself
|
|
|
20
20
|
- For the CLI transports: a provider/model reachable by the daemon, and that provider's CLI on the daemon's `PATH`.
|
|
21
21
|
- For the API transport: an endpoint URL, a model id, and a key — see [API keys](#api-keys).
|
|
22
22
|
|
|
23
|
+
## Install from npm (recommended)
|
|
24
|
+
|
|
25
|
+
PromptKit is published on npm as [`paseo-prompt-kit`](https://www.npmjs.com/package/paseo-prompt-kit). On Paseo 0.9:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
paseo plugin add npm:paseo-prompt-kit
|
|
29
|
+
paseo plugin ls
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Pin a release by adding its version, for example `npm:paseo-prompt-kit@0.5.3`. The plugin id stays `prompt-kit`, so reload and logs use that id:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
paseo plugin reload prompt-kit
|
|
36
|
+
paseo plugin logs prompt-kit
|
|
37
|
+
```
|
|
38
|
+
|
|
23
39
|
## Install from a local directory
|
|
24
40
|
|
|
25
41
|
```bash
|
|
@@ -49,7 +65,7 @@ paseo plugin ls
|
|
|
49
65
|
`--ref` chooses the initial branch, tag, or commit once; later `paseo plugin update prompt-kit` follows the remote's default HEAD. Pin a release instead of tracking `main` by giving `--ref` a tag:
|
|
50
66
|
|
|
51
67
|
```bash
|
|
52
|
-
paseo plugin install hungcuong9125/paseo-prompt-kit --ref v0.5.
|
|
68
|
+
paseo plugin install hungcuong9125/paseo-prompt-kit --ref v0.5.3
|
|
53
69
|
```
|
|
54
70
|
|
|
55
71
|
`paseo plugin ls` reports the installed commit.
|