pi-piqo 0.0.1 → 0.0.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/LICENSE +21 -0
- package/README.md +13 -5
- package/package.json +2 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 EP
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
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
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-piqo",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Piqo -
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "Piqo - a pi extension which allows user to interact with llm agents directly from files, without the need to use any chat UI.",
|
|
5
5
|
"keywords": ["pi-package"],
|
|
6
6
|
"pi": {
|
|
7
7
|
"extensions": ["./index.ts"]
|