@streichsbaer/pi-mesh 0.1.0 → 0.1.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 +8 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -9,6 +9,14 @@
|
|
|
9
9
|
|
|
10
10
|
`pi-mesh` is a local CLI and Agent Skill for coordinating multiple [Pi](https://github.com/earendil-works/pi) coding-agent sessions.
|
|
11
11
|
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install -g @streichsbaer/pi-mesh
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
The package installs the `pi-mesh` binary.
|
|
19
|
+
|
|
12
20
|
## Goals
|
|
13
21
|
|
|
14
22
|
- Keep vanilla Pi TUI for interactive use.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streichsbaer/pi-mesh",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI and skill for coordinating Pi sessions through a local file/socket mesh",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "npm@11.17.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@earendil-works/pi-coding-agent": "^0.80.2"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/node": "^
|
|
38
|
+
"@types/node": "^22.19.0",
|
|
39
39
|
"node-pty": "^1.1.0",
|
|
40
40
|
"shx": "^0.4.0",
|
|
41
41
|
"tsx": "^4.20.6",
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
|
-
"node": ">=
|
|
66
|
+
"node": ">=22.19.0"
|
|
67
67
|
},
|
|
68
68
|
"volta": {
|
|
69
|
-
"node": "
|
|
69
|
+
"node": "22.19.0",
|
|
70
70
|
"npm": "11.17.0"
|
|
71
71
|
}
|
|
72
72
|
}
|