@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.
Files changed (2) hide show
  1. package/README.md +25 -16
  2. package/package.json +20 -13
package/README.md CHANGED
@@ -1,14 +1,16 @@
1
1
  # @agimon-ai/doompi-runner
2
2
 
3
- Pi bash tool replacement with background process supervision.
3
+ **A shell command should not hold the session hostage.**
4
4
 
5
- Replaces the built-in bash tool with a supervised one. Long commands are backgrounded
6
- instead of blocking, a process tool manages them, and detached runs reconcile themselves
7
- after the context is rewritten.
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
- Part of [Doompi](https://www.npmjs.com/package/@agimon-ai/doompi), a coding agent that loads
10
- only the skills and tools you name. This package is composed by Doompi and is not usually
11
- installed on its own.
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
- Name it in a layer in `.doom/modes.yaml`, then add that layer to a major mode:
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/extensions/pi']
28
+ packages: ['@agimon-ai/doompi-runner']
27
29
 
28
30
  majorMode:
29
- dev: [runner]
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, once the extension is loaded.
41
+ `SPC r r` opens Runner Space, where background processes can be inspected and controlled.
35
42
 
36
- ## Notes
43
+ ## Runtime
37
44
 
38
- Ships a prebuilt `rmux` binary per platform through the `@agimon-ai/doompi-runner-rmux-*`
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
- ## Entry points
49
+ ## Public API
42
50
 
43
- 51 subpaths are declared in the `exports` field of `package.json`.
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.14",
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.14",
289
- "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.14",
290
- "@agimon-ai/doompi-telemetry": "0.0.1-alpha.14",
291
- "@agimon-ai/foundation-process-registry": "0.29.4"
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.1",
295
- "@earendil-works/pi-tui": "0.84.1",
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.1",
304
- "@earendil-works/pi-tui": "0.84.1"
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.14",
316
- "@agimon-ai/doompi-runner-rmux-darwin-x64": "0.0.1-alpha.14",
317
- "@agimon-ai/doompi-runner-rmux-linux-x64": "0.0.1-alpha.14",
318
- "@agimon-ai/doompi-runner-rmux-linux-arm64": "0.0.1-alpha.14"
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"