@m64/nats-pi-bridge 0.0.1
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/DESIGN.md +350 -0
- package/LICENSE +201 -0
- package/README.md +238 -0
- package/dist/server.js +689 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@m64/nats-pi-bridge",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Standalone headless service that spawns and manages PI coding agent sessions on demand via NATS. Control plane / data plane split, streaming wire protocol, multi-session microservice registration.",
|
|
5
|
+
"author": "m64",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://github.com/M64GitHub/nats-pi-bridge#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/M64GitHub/nats-pi-bridge.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/M64GitHub/nats-pi-bridge/issues"
|
|
14
|
+
},
|
|
15
|
+
"type": "module",
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=20.6.0"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"pi-agent",
|
|
21
|
+
"pi-coding-agent",
|
|
22
|
+
"nats",
|
|
23
|
+
"agent",
|
|
24
|
+
"bridge",
|
|
25
|
+
"microservice",
|
|
26
|
+
"headless",
|
|
27
|
+
"ai-agent"
|
|
28
|
+
],
|
|
29
|
+
"bin": {
|
|
30
|
+
"nats-pi-bridge": "dist/server.js"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"DESIGN.md",
|
|
35
|
+
"README.md",
|
|
36
|
+
"LICENSE"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"dev": "tsx watch server.ts",
|
|
40
|
+
"start": "tsx server.ts",
|
|
41
|
+
"build": "esbuild server.ts --bundle --platform=node --format=esm --packages=external --banner:js='#!/usr/bin/env node' --outfile=dist/server.js && chmod +x dist/server.js",
|
|
42
|
+
"prepack": "npm run build"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@nats-io/transport-node": "^3.3.0",
|
|
46
|
+
"@nats-io/services": "^3.3.0",
|
|
47
|
+
"@mariozechner/pi-coding-agent": "latest"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^25.5.2",
|
|
51
|
+
"esbuild": "^0.25.0",
|
|
52
|
+
"tsx": "^4.19.0"
|
|
53
|
+
}
|
|
54
|
+
}
|