@felan-ai/ext-tasks 0.1.3 → 0.2.0
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 +33 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -35,6 +35,26 @@ Local TUI sessions expose `/tasks` and `Ctrl+Shift+T` for list, detail, and grap
|
|
|
35
35
|
views. Headless and cloud sessions use the same tools and storage without
|
|
36
36
|
registering TUI controls.
|
|
37
37
|
|
|
38
|
+
## Installation and composition
|
|
39
|
+
|
|
40
|
+
```ts
|
|
41
|
+
import tasksExtension from '@felan-ai/ext-tasks';
|
|
42
|
+
|
|
43
|
+
const extension = tasksExtension;
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
The package owns the root-session graph, persistence, dependency validation,
|
|
47
|
+
task tools, and optional TUI view. The host supplies `AgentRuntime.storage('session')`
|
|
48
|
+
and session identity; task execution remains outside this package and may use
|
|
49
|
+
any available agent mechanism.
|
|
50
|
+
|
|
51
|
+
## Package boundary and requirements
|
|
52
|
+
|
|
53
|
+
The graph is execution state for one root session, not a project issue tracker.
|
|
54
|
+
It has no remote synchronization, due dates, labels, comments, or durable
|
|
55
|
+
cross-session backlog. The package requires a compatible
|
|
56
|
+
`@felan-ai/agent-core` peer, TypeBox, and Pi-TUI.
|
|
57
|
+
|
|
38
58
|
## Development
|
|
39
59
|
|
|
40
60
|
Source: `packages/ext-tasks` in <https://github.com/felan-ai/felan>.
|
|
@@ -46,3 +66,16 @@ pnpm --filter @felan-ai/ext-tasks build
|
|
|
46
66
|
pnpm --filter @felan-ai/ext-tasks type-check
|
|
47
67
|
pnpm --filter @felan-ai/ext-tasks test
|
|
48
68
|
```
|
|
69
|
+
|
|
70
|
+
## Related documentation
|
|
71
|
+
|
|
72
|
+
- [Agents, tasks, and Prewalk](../../docs/user-guide/agents-tasks-and-prewalk.md)
|
|
73
|
+
- [Commands and shortcuts](../../docs/user-guide/commands-and-shortcuts.md)
|
|
74
|
+
- [Extension catalog](../../docs/reference/extension-catalog.md)
|
|
75
|
+
|
|
76
|
+
## Attribution
|
|
77
|
+
|
|
78
|
+
The interaction design was informed by the MIT-licensed `pi-todo-write` package
|
|
79
|
+
and the open-source Beads task tracker; no Beads source or CLI is included.
|
|
80
|
+
TypeBox attribution is recorded in [NOTICE](NOTICE); see [LICENSE](LICENSE) for
|
|
81
|
+
the package license.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felan-ai/ext-tasks",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Dependency-aware session task tracking for Felan",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"typebox": "1.1.38"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@felan-ai/agent-core": "^0.
|
|
32
|
+
"@felan-ai/agent-core": "^0.5.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@felan-ai/agent-core": "0.
|
|
35
|
+
"@felan-ai/agent-core": "0.5.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public",
|