@agimon-ai/doompi-task 0.0.1-alpha.56 → 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 +5 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Task owns task records and `tasks.json`. Team owns agents and runs. When both ar
|
|
|
15
15
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Define a layer and select it in `.doom/modes.yaml`:
|
|
19
19
|
|
|
20
20
|
```yaml
|
|
21
21
|
layers:
|
|
@@ -111,11 +111,13 @@ import { detectCycle, isBlocked, TaskStore, taskExtension } from '@agimon-ai/doo
|
|
|
111
111
|
import type { Task, TaskStatus } from '@agimon-ai/doompi-task';
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
-
Focused
|
|
115
|
-
and
|
|
114
|
+
Focused subpaths include `/tool/schema`, `/store/reducer`, `/store/taskStore`,
|
|
115
|
+
`/delegation/manager`, and `/tui/selectors`. Pi loads `/extensions/pi` through package metadata.
|
|
116
116
|
|
|
117
117
|
## Development
|
|
118
118
|
|
|
119
|
+
Run from this package directory in the workspace:
|
|
120
|
+
|
|
119
121
|
```bash
|
|
120
122
|
pnpm build
|
|
121
123
|
pnpm typecheck
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agimon-ai/doompi-task",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.58",
|
|
4
4
|
"description": "Persistent, dependency-aware task graphs and subagent delegation for Pi coding sessions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -166,11 +166,11 @@
|
|
|
166
166
|
"dependencies": {
|
|
167
167
|
"@deepseek-ai/cordis": "4.0.1",
|
|
168
168
|
"typebox": "1.3.19",
|
|
169
|
-
"@agimon-ai/doompi-
|
|
170
|
-
"@agimon-ai/doompi-
|
|
171
|
-
"@agimon-ai/doompi-
|
|
172
|
-
"@agimon-ai/doompi-web-
|
|
173
|
-
"@agimon-ai/doompi-
|
|
169
|
+
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.57",
|
|
170
|
+
"@agimon-ai/doompi-telemetry": "0.0.1-alpha.56",
|
|
171
|
+
"@agimon-ai/doompi-ui": "0.0.1-alpha.58",
|
|
172
|
+
"@agimon-ai/doompi-web-components": "0.0.1-alpha.17",
|
|
173
|
+
"@agimon-ai/doompi-web-contracts": "0.0.1-alpha.20"
|
|
174
174
|
},
|
|
175
175
|
"devDependencies": {
|
|
176
176
|
"@earendil-works/pi-coding-agent": "0.85.0",
|