@liy/mote-pi-runtime 0.3.0 → 0.3.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/CHANGELOG.md +4 -0
- package/README.md +9 -4
- package/dist/assets/skills/orchestrator/SKILL.md +24 -3
- package/dist/cli.js +34 -20
- package/dist/cli.js.map +4 -4
- package/package.json +4 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liy/mote-pi-runtime",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Per-run Mote agent runtime: the Pi RPC bridge, precompiled Pi extensions, and agent skills.",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
"mote-pi-rpc": "./dist/pi-rpc.js",
|
|
14
14
|
"orchestrator": "./dist/cli.js"
|
|
15
15
|
},
|
|
16
|
-
"mote": {
|
|
17
|
-
"contract": 1
|
|
18
|
-
},
|
|
19
16
|
"files": [
|
|
20
17
|
"dist",
|
|
21
18
|
"CHANGELOG.md",
|
|
@@ -34,15 +31,15 @@
|
|
|
34
31
|
"@earendil-works/pi-coding-agent": "0.84.4",
|
|
35
32
|
"pi-mcp-adapter": "2.32.1",
|
|
36
33
|
"pi-web-access": "0.29.0",
|
|
37
|
-
"@liy/mote-agentic-component-catalog": "0.2.
|
|
34
|
+
"@liy/mote-agentic-component-catalog": "0.2.6"
|
|
38
35
|
},
|
|
39
36
|
"devDependencies": {
|
|
40
37
|
"@types/node": "^24.5.2",
|
|
41
38
|
"esbuild": "0.27.7",
|
|
42
39
|
"typescript": "^5.9.3",
|
|
43
40
|
"vitest": "^3.2.4",
|
|
44
|
-
"@liy/
|
|
45
|
-
"@liy/
|
|
41
|
+
"@liy/mote-core": "0.1.3",
|
|
42
|
+
"@liy/sandbox-orchestrator": "0.1.0"
|
|
46
43
|
},
|
|
47
44
|
"scripts": {
|
|
48
45
|
"build:local": "node ../scripts/build-node-esm.mjs && node scripts/compile-extensions.mjs",
|