taskplane 0.25.8 → 0.26.1
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/bin/rpc-wrapper.mjs +0 -1
- package/bin/taskplane.mjs +1 -1
- package/dashboard/public/app.js +44 -1
- package/extensions/task-orchestrator.ts +1 -1
- package/extensions/taskplane/config-loader.ts +53 -0
- package/extensions/taskplane/context-window.ts +66 -0
- package/extensions/taskplane/execution.ts +111 -17
- package/extensions/taskplane/extension.ts +20 -0
- package/extensions/taskplane/path-resolver.ts +1 -1
- package/extensions/taskplane/sidecar-telemetry.ts +252 -0
- package/extensions/taskplane/supervisor-primer.md +2 -0
- package/extensions/taskplane/supervisor.ts +1 -1
- package/extensions/taskplane/task-executor-core.ts +2 -5
- package/package.json +1 -3
- package/templates/agents/task-worker.md +387 -387
- package/templates/tasks/CONTEXT.md +3 -4
- package/extensions/task-runner.ts +0 -2784
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
This is the default task area for {{project_name}}. Tasks that don't belong
|
|
12
12
|
to a specific domain area are created here.
|
|
13
13
|
|
|
14
|
-
Taskplane is configured and ready for task execution. Use `/
|
|
15
|
-
|
|
14
|
+
Taskplane is configured and ready for task execution. Use `/orch all` for
|
|
15
|
+
parallel batch execution or `/orch <path/to/PROMPT.md>` for a single task.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
@@ -21,8 +21,7 @@ tasks or `/orch all` for parallel batch execution.
|
|
|
21
21
|
| Category | Path |
|
|
22
22
|
|----------|------|
|
|
23
23
|
| Tasks | `{{tasks_root}}/` |
|
|
24
|
-
| Config | `.pi/
|
|
25
|
-
| Config | `.pi/task-orchestrator.yaml` |
|
|
24
|
+
| Config | `.pi/taskplane-config.json` |
|
|
26
25
|
|
|
27
26
|
---
|
|
28
27
|
|