@agimon-ai/doompi-runner 0.0.1-alpha.57 → 0.0.1-alpha.58
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 +7 -6
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -19,10 +19,10 @@ inline; long commands can be promoted to a background runner instead of blocking
|
|
|
19
19
|
Linux native loading also depends on a compatible system loader and libc. The bundled binaries are
|
|
20
20
|
glibc-linked, so a musl host such as Alpine cannot run them.
|
|
21
21
|
|
|
22
|
-
RTK is optional.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
RTK is optional. Eligible commands return bounded raw output with an "RTK is unavailable" note
|
|
23
|
+
when its binary is missing or cannot start. A synchronous spawn failure or an `ENOENT`, `EACCES`,
|
|
24
|
+
or `ENOEXEC` spawn error disables further attempts for that `RtkProcessor` instance. Missing-path
|
|
25
|
+
resolution and ordinary processing failures are not latched.
|
|
26
26
|
|
|
27
27
|
Panes come from the first backend that answers: bundled RMUX, then `rmux` on PATH, then `tmux` on
|
|
28
28
|
PATH. Only when none is available does a non-interactive command fall back to a supervised
|
|
@@ -32,8 +32,9 @@ host process as an RMUX one, so exit metadata and logs behave the same; its sess
|
|
|
32
32
|
|
|
33
33
|
## Install
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
35
|
+
`doompi init` and `dpi init` include Runner in `default.packages` in `.doom/modes.yaml`. Remove
|
|
36
|
+
it to keep Pi's `bash`, or move it to a named layer to enable it only in selected major modes.
|
|
37
|
+
For direct Pi installation:
|
|
37
38
|
|
|
38
39
|
```bash
|
|
39
40
|
pi install npm:@agimon-ai/doompi-runner
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agimon-ai/doompi-runner",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.58",
|
|
4
4
|
"description": "Supervised shell execution, background process control, and run logs for Pi coding agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -324,12 +324,12 @@
|
|
|
324
324
|
"@xterm/headless": "6.0.0",
|
|
325
325
|
"hono": "4.13.5",
|
|
326
326
|
"typebox": "1.3.19",
|
|
327
|
-
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.
|
|
327
|
+
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.57",
|
|
328
328
|
"@agimon-ai/doompi-telemetry": "0.0.1-alpha.56",
|
|
329
|
-
"@agimon-ai/doompi-ui": "0.0.1-alpha.57",
|
|
330
|
-
"@agimon-ai/doompi-web-contracts": "0.0.1-alpha.20",
|
|
331
329
|
"@agimon-ai/doompi-web-components": "0.0.1-alpha.17",
|
|
332
|
-
"@agimon-ai/doompi-
|
|
330
|
+
"@agimon-ai/doompi-ui": "0.0.1-alpha.58",
|
|
331
|
+
"@agimon-ai/doompi-web-contracts": "0.0.1-alpha.20",
|
|
332
|
+
"@agimon-ai/doompi-web-security": "0.0.1-alpha.19"
|
|
333
333
|
},
|
|
334
334
|
"devDependencies": {
|
|
335
335
|
"@earendil-works/pi-coding-agent": "0.85.0",
|
|
@@ -363,8 +363,8 @@
|
|
|
363
363
|
"@agimon-ai/doompi-runner-rmux-linux-x64": "0.0.1-alpha.54",
|
|
364
364
|
"@agimon-ai/doompi-runner-rtk-darwin-arm64": "0.0.1-alpha.54",
|
|
365
365
|
"@agimon-ai/doompi-runner-rtk-darwin-x64": "0.0.1-alpha.54",
|
|
366
|
-
"@agimon-ai/doompi-runner-rtk-linux-
|
|
367
|
-
"@agimon-ai/doompi-runner-rtk-linux-
|
|
366
|
+
"@agimon-ai/doompi-runner-rtk-linux-x64": "0.0.1-alpha.54",
|
|
367
|
+
"@agimon-ai/doompi-runner-rtk-linux-arm64": "0.0.1-alpha.54"
|
|
368
368
|
},
|
|
369
369
|
"engines": {
|
|
370
370
|
"node": ">=22.19.0"
|