pi-onlyne 0.2.2 → 0.2.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 +12 -0
- package/package.json +14 -6
package/README.md
CHANGED
|
@@ -10,6 +10,18 @@ Pi extension for using Onlyne as a workspace-local messaging bridge.
|
|
|
10
10
|
- Lets the agent reply, send, or broadcast messages through tools.
|
|
11
11
|
- Keeps config in the project, not in global home state.
|
|
12
12
|
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pi install npm:pi-onlyne
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
For a one-off run:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pi -e npm:pi-onlyne
|
|
23
|
+
```
|
|
24
|
+
|
|
13
25
|
## Requirements
|
|
14
26
|
|
|
15
27
|
- `onlyne` available on `PATH`, or set `ONLYNE_BIN`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-onlyne",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Pi extension tools for sending messages through Onlyne.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"url": "git+https://github.com/dbydd/pi-onlyne.git"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
|
-
"pi",
|
|
27
26
|
"pi-package",
|
|
27
|
+
"pi",
|
|
28
28
|
"onlyne",
|
|
29
29
|
"messaging",
|
|
30
30
|
"extension"
|
|
@@ -35,13 +35,21 @@
|
|
|
35
35
|
"access": "public",
|
|
36
36
|
"registry": "https://registry.npmjs.org/"
|
|
37
37
|
},
|
|
38
|
-
"
|
|
38
|
+
"devDependencies": {
|
|
39
39
|
"@earendil-works/pi-ai": "^0.79.10",
|
|
40
40
|
"@earendil-works/pi-coding-agent": "^0.79.10",
|
|
41
|
-
"typebox": "^1.2.16"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
41
|
+
"typebox": "^1.2.16",
|
|
44
42
|
"@types/node": "^22.15.21",
|
|
45
43
|
"typescript": "^5.8.3"
|
|
44
|
+
},
|
|
45
|
+
"pi": {
|
|
46
|
+
"extensions": [
|
|
47
|
+
"./dist/index.js"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"@earendil-works/pi-ai": "*",
|
|
52
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
53
|
+
"typebox": "*"
|
|
46
54
|
}
|
|
47
55
|
}
|