@agimon-ai/doompi-task 0.0.1-alpha.16 → 0.0.1-alpha.18

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 +15 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -18,7 +18,21 @@ npm install @agimon-ai/doompi-task
18
18
 
19
19
  ## How it loads
20
20
 
21
- Doompi loads tasks as core. It is not a layer and does not appear in `.doom/modes.yaml`.
21
+ Task is a major-mode capability selected through `.doom/modes.yaml`. Fresh Doompi
22
+ configuration enables it in both `minimal` and `copilot` so existing sessions keep the
23
+ persistent task graph, while a custom major mode can omit the tool entirely:
24
+
25
+ ```yaml
26
+ layers:
27
+ task:
28
+ packages: ['@agimon-ai/doompi-task']
29
+
30
+ majorMode:
31
+ minimal:
32
+ description: Lean mode with persistent tasks.
33
+ layers: [task]
34
+ ```
35
+
22
36
  The bare package name follows its Pi manifest and selects the Doom adapter. That adapter
23
37
  connects the graph to the Doom TUI and team runtime.
24
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agimon-ai/doompi-task",
3
- "version": "0.0.1-alpha.16",
3
+ "version": "0.0.1-alpha.18",
4
4
  "description": "Pi task tracking extension with file-backed tasks and subagent delegation",
5
5
  "keywords": [
6
6
  "ai",
@@ -149,9 +149,9 @@
149
149
  },
150
150
  "dependencies": {
151
151
  "typebox": "1.1.38",
152
- "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.16",
153
- "@agimon-ai/doompi-telemetry": "0.0.1-alpha.16",
154
- "@agimon-ai/doompi-ui": "0.0.1-alpha.16"
152
+ "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.18",
153
+ "@agimon-ai/doompi-telemetry": "0.0.1-alpha.18",
154
+ "@agimon-ai/doompi-ui": "0.0.1-alpha.18"
155
155
  },
156
156
  "devDependencies": {
157
157
  "@earendil-works/pi-coding-agent": "0.84.2",