@agimon-ai/doompi-runner 0.0.1-alpha.14 → 0.0.1-alpha.16
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 +25 -16
- package/package.json +20 -13
package/README.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# @agimon-ai/doompi-runner
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**A shell command should not hold the session hostage.**
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
Doompi Runner replaces Pi's built-in bash tool with a supervised one. Short commands behave
|
|
6
|
+
normally. Long commands move into the background, keep writing to a saved log, and remain
|
|
7
|
+
controllable through the process tool and TUI instead of blocking the agent until a timeout.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Detached runs reconcile after compaction and other context rewrites. The transcript can
|
|
10
|
+
change; the process does not lose its identity.
|
|
11
|
+
|
|
12
|
+
This is part of [Doompi](https://www.npmjs.com/package/@agimon-ai/doompi). Most users load
|
|
13
|
+
it through a major-mode layer.
|
|
12
14
|
|
|
13
15
|
## Install
|
|
14
16
|
|
|
@@ -18,29 +20,36 @@ npm install @agimon-ai/doompi-runner
|
|
|
18
20
|
|
|
19
21
|
## How it loads
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
Put the bare package name in a layer, then add that layer to a major mode:
|
|
22
24
|
|
|
23
25
|
```yaml
|
|
24
26
|
layers:
|
|
25
27
|
runner:
|
|
26
|
-
packages: ['@agimon-ai/doompi-runner
|
|
28
|
+
packages: ['@agimon-ai/doompi-runner']
|
|
27
29
|
|
|
28
30
|
majorMode:
|
|
29
|
-
dev:
|
|
31
|
+
dev:
|
|
32
|
+
description: Development mode with supervised long-running commands.
|
|
33
|
+
layers: [runner]
|
|
30
34
|
```
|
|
31
35
|
|
|
36
|
+
The package's Pi manifest selects the Pi adapter. It replaces bash only in modes that name
|
|
37
|
+
the layer.
|
|
38
|
+
|
|
32
39
|
## Leader
|
|
33
40
|
|
|
34
|
-
`SPC r r` opens background processes
|
|
41
|
+
`SPC r r` opens Runner Space, where background processes can be inspected and controlled.
|
|
35
42
|
|
|
36
|
-
##
|
|
43
|
+
## Runtime
|
|
37
44
|
|
|
38
|
-
|
|
39
|
-
optional dependencies.
|
|
45
|
+
The package ships the `doom-runner` CLI and chooses a prebuilt `rmux` binary from its
|
|
46
|
+
platform-specific optional dependencies. npm installs the matching binary package; users
|
|
47
|
+
do not pick one by hand.
|
|
40
48
|
|
|
41
|
-
##
|
|
49
|
+
## Public API
|
|
42
50
|
|
|
43
|
-
|
|
51
|
+
The root export and declared subpaths expose the runner protocol, process supervision,
|
|
52
|
+
state, tools, and TUI. Use supported exports rather than reaching into `dist/`.
|
|
44
53
|
|
|
45
54
|
## License
|
|
46
55
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agimon-ai/doompi-runner",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.16",
|
|
4
4
|
"description": "Pi bash tool replacement with background process supervision",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"coding-agent",
|
|
8
|
+
"developer-tools",
|
|
9
|
+
"doompi",
|
|
10
|
+
"pi-package"
|
|
11
|
+
],
|
|
5
12
|
"homepage": "https://agimon.ai",
|
|
6
13
|
"license": "MIT",
|
|
7
14
|
"author": "Vuong Ngo",
|
|
@@ -285,14 +292,14 @@
|
|
|
285
292
|
"node-pty": "1.1.0",
|
|
286
293
|
"reflect-metadata": "0.2.2",
|
|
287
294
|
"typebox": "1.1.38",
|
|
288
|
-
"@agimon-ai/doompi-ui": "0.0.1-alpha.
|
|
289
|
-
"@agimon-ai/
|
|
290
|
-
"@agimon-ai/doompi-
|
|
291
|
-
"@agimon-ai/
|
|
295
|
+
"@agimon-ai/doompi-ui": "0.0.1-alpha.16",
|
|
296
|
+
"@agimon-ai/foundation-process-registry": "0.29.6",
|
|
297
|
+
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.16",
|
|
298
|
+
"@agimon-ai/doompi-telemetry": "0.0.1-alpha.16"
|
|
292
299
|
},
|
|
293
300
|
"devDependencies": {
|
|
294
|
-
"@earendil-works/pi-coding-agent": "0.84.
|
|
295
|
-
"@earendil-works/pi-tui": "0.84.
|
|
301
|
+
"@earendil-works/pi-coding-agent": "0.84.2",
|
|
302
|
+
"@earendil-works/pi-tui": "0.84.2",
|
|
296
303
|
"@types/node": "26.1.1",
|
|
297
304
|
"@vitest/coverage-v8": "4.1.10",
|
|
298
305
|
"tsdown": "0.22.14",
|
|
@@ -300,8 +307,8 @@
|
|
|
300
307
|
"vitest": "4.1.10"
|
|
301
308
|
},
|
|
302
309
|
"peerDependencies": {
|
|
303
|
-
"@earendil-works/pi-coding-agent": "0.84.
|
|
304
|
-
"@earendil-works/pi-tui": "0.84.
|
|
310
|
+
"@earendil-works/pi-coding-agent": "0.84.2",
|
|
311
|
+
"@earendil-works/pi-tui": "0.84.2"
|
|
305
312
|
},
|
|
306
313
|
"peerDependenciesMeta": {
|
|
307
314
|
"@earendil-works/pi-coding-agent": {
|
|
@@ -312,10 +319,10 @@
|
|
|
312
319
|
}
|
|
313
320
|
},
|
|
314
321
|
"optionalDependencies": {
|
|
315
|
-
"@agimon-ai/doompi-runner-rmux-darwin-arm64": "0.0.1-alpha.
|
|
316
|
-
"@agimon-ai/doompi-runner-rmux-
|
|
317
|
-
"@agimon-ai/doompi-runner-rmux-linux-
|
|
318
|
-
"@agimon-ai/doompi-runner-rmux-
|
|
322
|
+
"@agimon-ai/doompi-runner-rmux-darwin-arm64": "0.0.1-alpha.16",
|
|
323
|
+
"@agimon-ai/doompi-runner-rmux-linux-x64": "0.0.1-alpha.16",
|
|
324
|
+
"@agimon-ai/doompi-runner-rmux-linux-arm64": "0.0.1-alpha.16",
|
|
325
|
+
"@agimon-ai/doompi-runner-rmux-darwin-x64": "0.0.1-alpha.16"
|
|
319
326
|
},
|
|
320
327
|
"engines": {
|
|
321
328
|
"node": ">=22.19.0"
|