@agimon-ai/doompi 0.0.1-alpha.30 → 0.0.1-alpha.32
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 +17 -9
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -333,9 +333,9 @@ stale-safe ranges anchored to the file content the model read or searched.
|
|
|
333
333
|
keeps the edit timeline. [`@agimon-ai/doompi-log`][pkg-doompi-log] collects session events, while
|
|
334
334
|
[`@agimon-ai/doompi-telemetry`][pkg-doompi-telemetry] is the library-level telemetry adapter.
|
|
335
335
|
|
|
336
|
-
Runner selects
|
|
337
|
-
[
|
|
338
|
-
[
|
|
336
|
+
Runner selects matching RMUX and RTK native artifacts automatically. Do not install them directly.
|
|
337
|
+
The packages cover macOS and Linux on arm64 and x64 for both [RMUX][pkg-rmux-darwin-arm64] and
|
|
338
|
+
[RTK][pkg-rtk-darwin-arm64].
|
|
339
339
|
|
|
340
340
|
#### Leader key
|
|
341
341
|
|
|
@@ -367,10 +367,13 @@ supervised command execution. `doompi init` includes Runner in `default.packages
|
|
|
367
367
|
generated mode gets it. Short commands still return inline; commands that pass the configurable
|
|
368
368
|
threshold of 60 seconds by default move into the background with durable logs. Use
|
|
369
369
|
`background: true` for an immediate detached run or `interactive: true` when the command needs
|
|
370
|
-
terminal input. Runner IDs and
|
|
370
|
+
terminal input. Runner IDs and complete raw logs remain available to the current session through
|
|
371
371
|
Runner Space at `SPC r r` or the `doom-runner` CLI. Platform-specific RMUX binaries are selected
|
|
372
|
-
automatically
|
|
373
|
-
|
|
372
|
+
automatically; non-interactive commands use a supervised subprocess fallback when RMUX is absent,
|
|
373
|
+
while interactive commands require RMUX. Conservatively recognized single commands use the matching
|
|
374
|
+
RTK stdin filter after completion. Compound commands, pipelines, incompatible formats, and
|
|
375
|
+
unsupported commands keep bounded raw output. Remove Runner from `default.packages` to keep Pi's
|
|
376
|
+
`bash`, or add it to a named layer when only selected modes should replace `bash`.
|
|
374
377
|
|
|
375
378
|
#### Auto-compact
|
|
376
379
|
|
|
@@ -694,12 +697,13 @@ its owning package's controls; values supplied by callers are not automatically
|
|
|
694
697
|
|
|
695
698
|
- Run `doompi sync --check` to detect drift or missing configured packages, and `doompi sync`
|
|
696
699
|
to install them and rebuild synchronized state.
|
|
697
|
-
- If RMUX is unavailable
|
|
698
|
-
artifacts require a compatible loader and libc
|
|
700
|
+
- If RMUX is unavailable, non-interactive Runner calls report the supervised subprocess fallback.
|
|
701
|
+
Interactive calls require RMUX. Linux native artifacts require a compatible loader and libc.
|
|
699
702
|
- Leader menus and overlays require Pi's interactive TUI. Commands and tools remain the interface
|
|
700
703
|
for JSON, RPC, and other headless sessions where the owning package supports them.
|
|
701
704
|
- Install a directly loaded Pi subsystem with `pi install npm:@agimon-ai/<package>`. Library consumers
|
|
702
|
-
use `npm install`; native RMUX artifacts are selected by Runner and should not be installed
|
|
705
|
+
use `npm install`; native RMUX and RTK artifacts are selected by Runner and should not be installed
|
|
706
|
+
directly.
|
|
703
707
|
The root `doom-runner` command delegates to Runner from the active repository and asks you to add
|
|
704
708
|
Runner to `modes.yaml` when it is absent. The distribution remains the supported way to get the
|
|
705
709
|
coordinated defaults.
|
|
@@ -755,6 +759,10 @@ loaded extension graph inside the same release boundary as the packages that con
|
|
|
755
759
|
[pkg-rmux-darwin-x64]: https://www.npmjs.com/package/@agimon-ai/doompi-runner-rmux-darwin-x64
|
|
756
760
|
[pkg-rmux-linux-arm64]: https://www.npmjs.com/package/@agimon-ai/doompi-runner-rmux-linux-arm64
|
|
757
761
|
[pkg-rmux-linux-x64]: https://www.npmjs.com/package/@agimon-ai/doompi-runner-rmux-linux-x64
|
|
762
|
+
[pkg-rtk-darwin-arm64]: https://www.npmjs.com/package/@agimon-ai/doompi-runner-rtk-darwin-arm64
|
|
763
|
+
[pkg-rtk-darwin-x64]: https://www.npmjs.com/package/@agimon-ai/doompi-runner-rtk-darwin-x64
|
|
764
|
+
[pkg-rtk-linux-arm64]: https://www.npmjs.com/package/@agimon-ai/doompi-runner-rtk-linux-arm64
|
|
765
|
+
[pkg-rtk-linux-x64]: https://www.npmjs.com/package/@agimon-ai/doompi-runner-rtk-linux-x64
|
|
758
766
|
[pkg-doompi-team]: https://www.npmjs.com/package/@agimon-ai/doompi-team
|
|
759
767
|
[pkg-doompi-task]: https://www.npmjs.com/package/@agimon-ai/doompi-task
|
|
760
768
|
[pkg-doompi-runner]: https://www.npmjs.com/package/@agimon-ai/doompi-runner
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agimon-ai/doompi",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.32",
|
|
4
4
|
"description": "Opinionated, composable Pi distribution for scoped agent tools, skills, MCP servers, and developer workflows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -302,16 +302,16 @@
|
|
|
302
302
|
"rolldown": "1.2.5",
|
|
303
303
|
"typebox": "1.3.16",
|
|
304
304
|
"yaml": "2.9.0",
|
|
305
|
-
"@agimon-ai/doompi-
|
|
306
|
-
"@agimon-ai/doompi-
|
|
307
|
-
"@agimon-ai/doompi-
|
|
308
|
-
"@agimon-ai/doompi-major-mode": "0.0.1-alpha.
|
|
309
|
-
"@agimon-ai/doompi-
|
|
310
|
-
"@agimon-ai/doompi-
|
|
311
|
-
"@agimon-ai/doompi-
|
|
312
|
-
"@agimon-ai/doompi-
|
|
313
|
-
"@agimon-ai/doompi-ui": "0.0.1-alpha.
|
|
314
|
-
"@agimon-ai/doompi-
|
|
305
|
+
"@agimon-ai/doompi-config": "0.0.1-alpha.32",
|
|
306
|
+
"@agimon-ai/doompi-autostop": "0.0.1-alpha.10",
|
|
307
|
+
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.32",
|
|
308
|
+
"@agimon-ai/doompi-major-mode": "0.0.1-alpha.10",
|
|
309
|
+
"@agimon-ai/doompi-domain": "0.0.1-alpha.10",
|
|
310
|
+
"@agimon-ai/doompi-profile": "0.0.1-alpha.10",
|
|
311
|
+
"@agimon-ai/doompi-skill": "0.0.1-alpha.10",
|
|
312
|
+
"@agimon-ai/doompi-telemetry": "0.0.1-alpha.32",
|
|
313
|
+
"@agimon-ai/doompi-ui": "0.0.1-alpha.32",
|
|
314
|
+
"@agimon-ai/doompi-notification": "0.0.1-alpha.10"
|
|
315
315
|
},
|
|
316
316
|
"devDependencies": {
|
|
317
317
|
"@earendil-works/pi-ai": "0.84.2",
|
|
@@ -321,7 +321,7 @@
|
|
|
321
321
|
"@vitest/coverage-v8": "4.1.11",
|
|
322
322
|
"typescript": "7.0.2",
|
|
323
323
|
"vitest": "4.1.11",
|
|
324
|
-
"@agimon-ai/doompi-runner": "0.0.1-alpha.
|
|
324
|
+
"@agimon-ai/doompi-runner": "0.0.1-alpha.32"
|
|
325
325
|
},
|
|
326
326
|
"peerDependencies": {
|
|
327
327
|
"@earendil-works/pi-tui": "0.84.2"
|