zelpi 0.1.0
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 +149 -0
- package/bin/pi-os.mjs +37 -0
- package/cli/client.mjs +148 -0
- package/cli/commands.mjs +406 -0
- package/cli/config.mjs +58 -0
- package/cli/daemon.mjs +75 -0
- package/cli/dispatch.mjs +70 -0
- package/cli/embedded.mjs +106 -0
- package/cli/help.mjs +44 -0
- package/cli/hub.mjs +76 -0
- package/cli/kernel.mjs +63 -0
- package/cli/mcp.mjs +144 -0
- package/cli/repl.mjs +100 -0
- package/cli/ui.mjs +109 -0
- package/dist/pios-engine.mjs +948 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zelpi",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "ZelPi — Physical Intelligence Operating System. A self-contained CLI OS for autonomous robot fleets: kernel QoS router, model registry (VLM/VLA/LLM), MCP server, and an embedded simulation backend. Command: `npx zelpi`.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"zelpi": "bin/pi-os.mjs",
|
|
7
|
+
"zos": "bin/pi-os.mjs",
|
|
8
|
+
"pios": "bin/pi-os.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"cli/",
|
|
13
|
+
"dist/",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"ws": "^8.18.0"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"robotics",
|
|
24
|
+
"fleet",
|
|
25
|
+
"cli",
|
|
26
|
+
"ai",
|
|
27
|
+
"vla",
|
|
28
|
+
"edge-ai",
|
|
29
|
+
"simulation",
|
|
30
|
+
"mcp",
|
|
31
|
+
"pi-os",
|
|
32
|
+
"zelpi",
|
|
33
|
+
"zos"
|
|
34
|
+
],
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"homepage": "https://pi-os-gilt.vercel.app"
|
|
37
|
+
}
|