pi-piqo 0.0.1 → 0.0.2
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 +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A chat-less way to collaborate with your favorite LLM models (remote or local), directly from your files and from any editor. The output is stored automatically into your files.
|
|
4
4
|
|
|
5
|
-
It is a simple file-watcher extension for [pi](https://github.com/badlogic/pi-mono) triggered on-save, which monitors directories for `@piqo` markers and uses the LLM to generate content inline.
|
|
5
|
+
It is a simple file-watcher extension for [pi](https://github.com/badlogic/pi-mono) triggered on-save, which continously monitors directories for `@piqo` markers and uses the LLM to generate content inline.
|
|
6
6
|
|
|
7
7
|
Might be useful for keeping notes, writing tasks, researching topics, etc.
|
|
8
8
|
|
|
@@ -25,9 +25,12 @@ You will get something like (using gpt-5.4-mini):
|
|
|
25
25
|
If you have [Pi](https://pi.dev/) installed, you are one command away from using it:
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
# Load it directly from github
|
|
29
|
-
pi -e
|
|
28
|
+
# Load it directly from npm (or alternatively github repo url)
|
|
29
|
+
pi -e npm:pi-piqo --dir=/path/to/your/project
|
|
30
|
+
```
|
|
30
31
|
|
|
32
|
+
Other options:
|
|
33
|
+
```bash
|
|
31
34
|
# Or if you want to reference it locally, git clone the repo and reference it directly
|
|
32
35
|
pi -e ./piqo-extension --dir /path/to/your/project
|
|
33
36
|
|
|
@@ -84,8 +87,13 @@ Becomes generated content with the @piqo prompt removed
|
|
|
84
87
|
|
|
85
88
|
## Installation
|
|
86
89
|
|
|
87
|
-
|
|
90
|
+
To install it for your Pi globally:
|
|
91
|
+
```
|
|
92
|
+
pi install npm:pi-piqo
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
But then to use it, simply run pi but with --dir option of the directory that you want to monitor. See usage section for more options.
|
|
88
96
|
|
|
89
97
|
```bash
|
|
90
|
-
pi
|
|
98
|
+
pi --dir=/path/of/your/project
|
|
91
99
|
```
|