taskplane 0.19.0 → 0.20.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/bin/taskplane.mjs +1 -1
- package/dashboard/public/app.js +41 -0
- package/dashboard/public/index.html +5 -2
- package/dashboard/public/style.css +194 -58
- package/dashboard/public/taskplane-word-color.svg +22 -0
- package/dashboard/public/taskplane-word-white.svg +22 -0
- package/dashboard/server.cjs +65 -0
- package/extensions/task-runner.ts +90 -69
- package/extensions/taskplane/engine-worker.ts +289 -0
- package/extensions/taskplane/execution.ts +298 -25
- package/extensions/taskplane/extension.ts +330 -94
- package/extensions/taskplane/merge.ts +242 -19
- package/extensions/taskplane/supervisor-primer.md +1 -1
- package/extensions/taskplane/supervisor.ts +161 -42
- package/package.json +1 -1
- package/skills/create-taskplane-task/references/prompt-template.md +0 -3
- package/templates/agents/task-worker.md +16 -1
- package/templates/tasks/EXAMPLE-001-hello-world/PROMPT.md +98 -99
- package/templates/tasks/EXAMPLE-001-hello-world/STATUS.md +73 -73
- package/templates/tasks/EXAMPLE-002-parallel-smoke/PROMPT.md +97 -98
- package/templates/tasks/EXAMPLE-002-parallel-smoke/STATUS.md +73 -73
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
# EXAMPLE-002: Parallel Smoke — Status
|
|
2
|
-
|
|
3
|
-
**Current Step:** Not Started
|
|
4
|
-
**Status:** 🔵 Ready for Execution
|
|
5
|
-
**Last Updated:** {{date}}
|
|
6
|
-
**Review Level:** 0
|
|
7
|
-
**Review Counter:** 0
|
|
8
|
-
**Iteration:** 0
|
|
9
|
-
**Size:** S
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
### Step 0: Preflight
|
|
14
|
-
**Status:** ⬜ Not Started
|
|
15
|
-
|
|
16
|
-
- [ ] Verify PROMPT.md is readable
|
|
17
|
-
- [ ] Verify STATUS.md exists
|
|
18
|
-
|
|
19
|
-
---
|
|
20
|
-
|
|
21
|
-
### Step 1: Create Parallel Hello File
|
|
22
|
-
**Status:** ⬜ Not Started
|
|
23
|
-
|
|
24
|
-
- [ ] Create `hello-taskplane-2.md` in project root
|
|
25
|
-
- [ ] Add title, task ID (EXAMPLE-002), and parallel-safe note
|
|
26
|
-
|
|
27
|
-
---
|
|
28
|
-
|
|
29
|
-
### Step 2: Verification
|
|
30
|
-
**Status:** ⬜ Not Started
|
|
31
|
-
|
|
32
|
-
- [ ] Verify file exists and matches expected content
|
|
33
|
-
|
|
34
|
-
---
|
|
35
|
-
|
|
36
|
-
### Step 3: Delivery
|
|
37
|
-
**Status:** ⬜ Not Started
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
---
|
|
42
|
-
|
|
43
|
-
## Reviews
|
|
44
|
-
|
|
45
|
-
| # | Type | Step | Verdict | File |
|
|
46
|
-
|---|------|------|---------|------|
|
|
47
|
-
|
|
48
|
-
---
|
|
49
|
-
|
|
50
|
-
## Discoveries
|
|
51
|
-
|
|
52
|
-
| Discovery | Disposition | Location |
|
|
53
|
-
|-----------|-------------|----------|
|
|
54
|
-
|
|
55
|
-
---
|
|
56
|
-
|
|
57
|
-
## Execution Log
|
|
58
|
-
|
|
59
|
-
| Timestamp | Action | Outcome |
|
|
60
|
-
|-----------|--------|---------|
|
|
61
|
-
| {{date}} | Task staged | PROMPT.md and STATUS.md created |
|
|
62
|
-
|
|
63
|
-
---
|
|
64
|
-
|
|
65
|
-
## Blockers
|
|
66
|
-
|
|
67
|
-
*None*
|
|
68
|
-
|
|
69
|
-
---
|
|
70
|
-
|
|
71
|
-
## Notes
|
|
72
|
-
|
|
73
|
-
*This is an example task created by `taskplane init` to demonstrate orchestrator-first onboarding.*
|
|
1
|
+
# EXAMPLE-002: Parallel Smoke — Status
|
|
2
|
+
|
|
3
|
+
**Current Step:** Not Started
|
|
4
|
+
**Status:** 🔵 Ready for Execution
|
|
5
|
+
**Last Updated:** {{date}}
|
|
6
|
+
**Review Level:** 0
|
|
7
|
+
**Review Counter:** 0
|
|
8
|
+
**Iteration:** 0
|
|
9
|
+
**Size:** S
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
### Step 0: Preflight
|
|
14
|
+
**Status:** ⬜ Not Started
|
|
15
|
+
|
|
16
|
+
- [ ] Verify PROMPT.md is readable
|
|
17
|
+
- [ ] Verify STATUS.md exists
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
### Step 1: Create Parallel Hello File
|
|
22
|
+
**Status:** ⬜ Not Started
|
|
23
|
+
|
|
24
|
+
- [ ] Create `hello-taskplane-2.md` in project root
|
|
25
|
+
- [ ] Add title, task ID (EXAMPLE-002), and parallel-safe note
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
### Step 2: Verification
|
|
30
|
+
**Status:** ⬜ Not Started
|
|
31
|
+
|
|
32
|
+
- [ ] Verify file exists and matches expected content
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
### Step 3: Delivery
|
|
37
|
+
**Status:** ⬜ Not Started
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Reviews
|
|
44
|
+
|
|
45
|
+
| # | Type | Step | Verdict | File |
|
|
46
|
+
|---|------|------|---------|------|
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Discoveries
|
|
51
|
+
|
|
52
|
+
| Discovery | Disposition | Location |
|
|
53
|
+
|-----------|-------------|----------|
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Execution Log
|
|
58
|
+
|
|
59
|
+
| Timestamp | Action | Outcome |
|
|
60
|
+
|-----------|--------|---------|
|
|
61
|
+
| {{date}} | Task staged | PROMPT.md and STATUS.md created |
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Blockers
|
|
66
|
+
|
|
67
|
+
*None*
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## Notes
|
|
72
|
+
|
|
73
|
+
*This is an example task created by `taskplane init` to demonstrate orchestrator-first onboarding.*
|