taskplane 0.28.4 → 0.28.6

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 (71) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +215 -215
  3. package/bin/gitignore-patterns.mjs +79 -79
  4. package/bin/rpc-wrapper.mjs +1086 -1086
  5. package/bin/taskplane.mjs +3254 -3254
  6. package/dashboard/public/app.js +2573 -2573
  7. package/dashboard/public/index.html +139 -139
  8. package/dashboard/public/style.css +1882 -1882
  9. package/dashboard/public/taskplane-word-color.svg +18 -18
  10. package/dashboard/public/taskplane-word-white.svg +18 -18
  11. package/dashboard/server.cjs +1666 -1666
  12. package/extensions/reviewer-extension.ts +119 -119
  13. package/extensions/task-orchestrator.ts +28 -28
  14. package/extensions/taskplane/abort.ts +502 -502
  15. package/extensions/taskplane/agent-bridge-extension.ts +838 -765
  16. package/extensions/taskplane/agent-host.ts +833 -745
  17. package/extensions/taskplane/cleanup.ts +747 -747
  18. package/extensions/taskplane/config-loader.ts +1328 -1322
  19. package/extensions/taskplane/config-schema.ts +692 -682
  20. package/extensions/taskplane/config.ts +73 -73
  21. package/extensions/taskplane/context-window.ts +66 -66
  22. package/extensions/taskplane/diagnostic-reports.ts +463 -463
  23. package/extensions/taskplane/diagnostics.ts +385 -385
  24. package/extensions/taskplane/engine-worker-entry.mjs +34 -34
  25. package/extensions/taskplane/engine-worker.ts +381 -381
  26. package/extensions/taskplane/engine.ts +4539 -4527
  27. package/extensions/taskplane/execution.ts +2733 -2708
  28. package/extensions/taskplane/extension.ts +30 -9
  29. package/extensions/taskplane/formatting.ts +773 -773
  30. package/extensions/taskplane/git.ts +90 -90
  31. package/extensions/taskplane/index.ts +28 -28
  32. package/extensions/taskplane/lane-runner.ts +1383 -1360
  33. package/extensions/taskplane/mailbox.ts +689 -689
  34. package/extensions/taskplane/merge.ts +3135 -3135
  35. package/extensions/taskplane/messages.ts +985 -985
  36. package/extensions/taskplane/migrations.ts +278 -278
  37. package/extensions/taskplane/naming.ts +117 -117
  38. package/extensions/taskplane/path-resolver.ts +237 -237
  39. package/extensions/taskplane/persistence.ts +2087 -2087
  40. package/extensions/taskplane/process-registry.ts +416 -416
  41. package/extensions/taskplane/quality-gate.ts +1033 -1033
  42. package/extensions/taskplane/resume.ts +2879 -2878
  43. package/extensions/taskplane/sessions.ts +57 -57
  44. package/extensions/taskplane/settings-loader.ts +136 -136
  45. package/extensions/taskplane/settings-tui.ts +1867 -1867
  46. package/extensions/taskplane/sidecar-telemetry.ts +252 -252
  47. package/extensions/taskplane/supervisor-primer.md +1694 -1694
  48. package/extensions/taskplane/supervisor.ts +4341 -4341
  49. package/extensions/taskplane/task-executor-core.ts +550 -550
  50. package/extensions/taskplane/tmux-compat.ts +37 -37
  51. package/extensions/taskplane/types.ts +4297 -4278
  52. package/extensions/taskplane/verification.ts +542 -542
  53. package/extensions/taskplane/waves.ts +1548 -1548
  54. package/extensions/taskplane/workspace.ts +705 -705
  55. package/extensions/taskplane/worktree.ts +2604 -2505
  56. package/package.json +57 -57
  57. package/skills/create-taskplane-task/SKILL.md +465 -465
  58. package/skills/create-taskplane-task/references/prompt-template.md +285 -285
  59. package/templates/agents/local/supervisor.md +33 -33
  60. package/templates/agents/local/task-merger.md +27 -27
  61. package/templates/agents/local/task-reviewer.md +30 -30
  62. package/templates/agents/local/task-worker.md +34 -34
  63. package/templates/agents/supervisor-routing.md +92 -92
  64. package/templates/agents/supervisor.md +168 -168
  65. package/templates/agents/task-merger.md +214 -214
  66. package/templates/agents/task-reviewer.md +192 -192
  67. package/templates/agents/task-worker.md +505 -429
  68. package/templates/tasks/EXAMPLE-001-hello-world/PROMPT.md +98 -98
  69. package/templates/tasks/EXAMPLE-001-hello-world/STATUS.md +73 -73
  70. package/templates/tasks/EXAMPLE-002-parallel-smoke/PROMPT.md +97 -97
  71. package/templates/tasks/EXAMPLE-002-parallel-smoke/STATUS.md +73 -73
@@ -1,98 +1,98 @@
1
- # Task: EXAMPLE-001 — Hello World
2
-
3
- **Created:** {{date}}
4
- **Size:** S
5
-
6
- ## Review Level: 0 (None)
7
-
8
- **Assessment:** Trivial single-file task to verify Taskplane is working.
9
- **Score:** 0/8 — Blast radius: 0, Pattern novelty: 0, Security: 0, Reversibility: 0
10
-
11
- ## Canonical Task Folder
12
-
13
- ```
14
- {{tasks_root}}/EXAMPLE-001-hello-world/
15
- ├── PROMPT.md ← This file (immutable above --- divider)
16
- ├── STATUS.md ← Execution state (worker updates this)
17
- ├── .reviews/ ← Reviewer output (task-runner creates this)
18
- └── .DONE ← Created when complete
19
- ```
20
-
21
- ## Mission
22
-
23
- Create a simple `hello-taskplane.md` file in the project root to verify that
24
- Taskplane task execution is working correctly. This is a smoke test — if the
25
- worker can read this prompt, create the file, checkpoint progress, and mark the
26
- task done, the installation is healthy.
27
-
28
- ## Expected File Content
29
-
30
- `hello-taskplane.md` should include:
31
-
32
- - A title line (for example: `# Hello from Taskplane`)
33
- - A line containing the task ID: `EXAMPLE-001`
34
- - A line containing today's date
35
-
36
- ## Dependencies
37
-
38
- - **None**
39
-
40
- ## Context to Read First
41
-
42
- _No additional context needed._
43
-
44
- ## Environment
45
-
46
- - **Workspace:** Project root
47
- - **Services required:** None
48
-
49
- ## File Scope
50
-
51
- - `hello-taskplane.md`
52
-
53
- ## Steps
54
-
55
- ### Step 0: Preflight
56
-
57
- - [ ] Verify this PROMPT.md is readable
58
- - [ ] Verify STATUS.md exists in the same folder
59
-
60
- ### Step 1: Create Hello File
61
-
62
- - [ ] Create `hello-taskplane.md` in the project root
63
- - [ ] Add a title plus lines containing today's date and task ID `EXAMPLE-001`
64
-
65
- ### Step 2: Verification
66
-
67
- - [ ] Verify `hello-taskplane.md` exists and matches the expected content
68
-
69
- ### Step 3: Delivery
70
-
71
-
72
-
73
- ## Documentation Requirements
74
-
75
- **Must Update:** None
76
- **Check If Affected:** None
77
-
78
- ## Completion Criteria
79
-
80
- - [ ] `hello-taskplane.md` exists in the project root
81
- - [ ] `hello-taskplane.md` includes a title, task ID (`EXAMPLE-001`), and current date
82
-
83
- ## Git Commit Convention
84
-
85
- - **Implementation:** `feat(EXAMPLE-001): description`
86
- - **Checkpoints:** `checkpoint: EXAMPLE-001 description`
87
-
88
- ## Do NOT
89
-
90
- - Modify any existing project files
91
- - Create files outside the project root
92
- - Over-engineer this — it's a smoke test
93
-
94
- ---
95
-
96
- ## Amendments (Added During Execution)
97
-
98
- <!-- Workers add amendments here if issues discovered during execution. -->
1
+ # Task: EXAMPLE-001 — Hello World
2
+
3
+ **Created:** {{date}}
4
+ **Size:** S
5
+
6
+ ## Review Level: 0 (None)
7
+
8
+ **Assessment:** Trivial single-file task to verify Taskplane is working.
9
+ **Score:** 0/8 — Blast radius: 0, Pattern novelty: 0, Security: 0, Reversibility: 0
10
+
11
+ ## Canonical Task Folder
12
+
13
+ ```
14
+ {{tasks_root}}/EXAMPLE-001-hello-world/
15
+ ├── PROMPT.md ← This file (immutable above --- divider)
16
+ ├── STATUS.md ← Execution state (worker updates this)
17
+ ├── .reviews/ ← Reviewer output (task-runner creates this)
18
+ └── .DONE ← Created when complete
19
+ ```
20
+
21
+ ## Mission
22
+
23
+ Create a simple `hello-taskplane.md` file in the project root to verify that
24
+ Taskplane task execution is working correctly. This is a smoke test — if the
25
+ worker can read this prompt, create the file, checkpoint progress, and mark the
26
+ task done, the installation is healthy.
27
+
28
+ ## Expected File Content
29
+
30
+ `hello-taskplane.md` should include:
31
+
32
+ - A title line (for example: `# Hello from Taskplane`)
33
+ - A line containing the task ID: `EXAMPLE-001`
34
+ - A line containing today's date
35
+
36
+ ## Dependencies
37
+
38
+ - **None**
39
+
40
+ ## Context to Read First
41
+
42
+ _No additional context needed._
43
+
44
+ ## Environment
45
+
46
+ - **Workspace:** Project root
47
+ - **Services required:** None
48
+
49
+ ## File Scope
50
+
51
+ - `hello-taskplane.md`
52
+
53
+ ## Steps
54
+
55
+ ### Step 0: Preflight
56
+
57
+ - [ ] Verify this PROMPT.md is readable
58
+ - [ ] Verify STATUS.md exists in the same folder
59
+
60
+ ### Step 1: Create Hello File
61
+
62
+ - [ ] Create `hello-taskplane.md` in the project root
63
+ - [ ] Add a title plus lines containing today's date and task ID `EXAMPLE-001`
64
+
65
+ ### Step 2: Verification
66
+
67
+ - [ ] Verify `hello-taskplane.md` exists and matches the expected content
68
+
69
+ ### Step 3: Delivery
70
+
71
+
72
+
73
+ ## Documentation Requirements
74
+
75
+ **Must Update:** None
76
+ **Check If Affected:** None
77
+
78
+ ## Completion Criteria
79
+
80
+ - [ ] `hello-taskplane.md` exists in the project root
81
+ - [ ] `hello-taskplane.md` includes a title, task ID (`EXAMPLE-001`), and current date
82
+
83
+ ## Git Commit Convention
84
+
85
+ - **Implementation:** `feat(EXAMPLE-001): description`
86
+ - **Checkpoints:** `checkpoint: EXAMPLE-001 description`
87
+
88
+ ## Do NOT
89
+
90
+ - Modify any existing project files
91
+ - Create files outside the project root
92
+ - Over-engineer this — it's a smoke test
93
+
94
+ ---
95
+
96
+ ## Amendments (Added During Execution)
97
+
98
+ <!-- Workers add amendments here if issues discovered during execution. -->
@@ -1,73 +1,73 @@
1
- # EXAMPLE-001: Hello World — 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 Hello File
22
- **Status:** ⬜ Not Started
23
-
24
- - [ ] Create `hello-taskplane.md` in project root
25
- - [ ] Add title, date, and task ID (EXAMPLE-001)
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`. Delete it after verifying your setup works.*
1
+ # EXAMPLE-001: Hello World — 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 Hello File
22
+ **Status:** ⬜ Not Started
23
+
24
+ - [ ] Create `hello-taskplane.md` in project root
25
+ - [ ] Add title, date, and task ID (EXAMPLE-001)
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`. Delete it after verifying your setup works.*
@@ -1,97 +1,97 @@
1
- # Task: EXAMPLE-002 — Parallel Smoke
2
-
3
- **Created:** {{date}}
4
- **Size:** S
5
-
6
- ## Review Level: 0 (None)
7
-
8
- **Assessment:** Trivial parallel-safe smoke task to demonstrate orchestrator lanes.
9
- **Score:** 0/8 — Blast radius: 0, Pattern novelty: 0, Security: 0, Reversibility: 0
10
-
11
- ## Canonical Task Folder
12
-
13
- ```
14
- {{tasks_root}}/EXAMPLE-002-parallel-smoke/
15
- ├── PROMPT.md ← This file (immutable above --- divider)
16
- ├── STATUS.md ← Execution state (worker updates this)
17
- ├── .reviews/ ← Reviewer output (task-runner creates this)
18
- └── .DONE ← Created when complete
19
- ```
20
-
21
- ## Mission
22
-
23
- Create a simple `hello-taskplane-2.md` file in the project root. This task is
24
- intentionally independent from EXAMPLE-001 so both can run in parallel when
25
- using `/orch`.
26
-
27
- ## Expected File Content
28
-
29
- `hello-taskplane-2.md` should include:
30
-
31
- - A title line (for example: `# Parallel Hello from Taskplane`)
32
- - A line containing the task ID: `EXAMPLE-002`
33
- - A short note that this task is parallel-safe
34
-
35
- ## Dependencies
36
-
37
- - **None**
38
-
39
- ## Context to Read First
40
-
41
- _No additional context needed._
42
-
43
- ## Environment
44
-
45
- - **Workspace:** Project root
46
- - **Services required:** None
47
-
48
- ## File Scope
49
-
50
- - `hello-taskplane-2.md`
51
-
52
- ## Steps
53
-
54
- ### Step 0: Preflight
55
-
56
- - [ ] Verify this PROMPT.md is readable
57
- - [ ] Verify STATUS.md exists in the same folder
58
-
59
- ### Step 1: Create Parallel Hello File
60
-
61
- - [ ] Create `hello-taskplane-2.md` in the project root
62
- - [ ] Add title plus lines containing task ID `EXAMPLE-002` and a parallel-safe note
63
-
64
- ### Step 2: Verification
65
-
66
- - [ ] Verify `hello-taskplane-2.md` exists and matches the expected content
67
-
68
- ### Step 3: Delivery
69
-
70
-
71
-
72
- ## Documentation Requirements
73
-
74
- **Must Update:** None
75
- **Check If Affected:** None
76
-
77
- ## Completion Criteria
78
-
79
- - [ ] `hello-taskplane-2.md` exists in the project root
80
- - [ ] `hello-taskplane-2.md` includes a title, task ID (`EXAMPLE-002`), and a parallel-safe note
81
-
82
- ## Git Commit Convention
83
-
84
- - **Implementation:** `feat(EXAMPLE-002): description`
85
- - **Checkpoints:** `checkpoint: EXAMPLE-002 description`
86
-
87
- ## Do NOT
88
-
89
- - Modify any existing project files
90
- - Create files outside the project root
91
- - Add dependencies between EXAMPLE-001 and EXAMPLE-002
92
-
93
- ---
94
-
95
- ## Amendments (Added During Execution)
96
-
97
- <!-- Workers add amendments here if issues discovered during execution. -->
1
+ # Task: EXAMPLE-002 — Parallel Smoke
2
+
3
+ **Created:** {{date}}
4
+ **Size:** S
5
+
6
+ ## Review Level: 0 (None)
7
+
8
+ **Assessment:** Trivial parallel-safe smoke task to demonstrate orchestrator lanes.
9
+ **Score:** 0/8 — Blast radius: 0, Pattern novelty: 0, Security: 0, Reversibility: 0
10
+
11
+ ## Canonical Task Folder
12
+
13
+ ```
14
+ {{tasks_root}}/EXAMPLE-002-parallel-smoke/
15
+ ├── PROMPT.md ← This file (immutable above --- divider)
16
+ ├── STATUS.md ← Execution state (worker updates this)
17
+ ├── .reviews/ ← Reviewer output (task-runner creates this)
18
+ └── .DONE ← Created when complete
19
+ ```
20
+
21
+ ## Mission
22
+
23
+ Create a simple `hello-taskplane-2.md` file in the project root. This task is
24
+ intentionally independent from EXAMPLE-001 so both can run in parallel when
25
+ using `/orch`.
26
+
27
+ ## Expected File Content
28
+
29
+ `hello-taskplane-2.md` should include:
30
+
31
+ - A title line (for example: `# Parallel Hello from Taskplane`)
32
+ - A line containing the task ID: `EXAMPLE-002`
33
+ - A short note that this task is parallel-safe
34
+
35
+ ## Dependencies
36
+
37
+ - **None**
38
+
39
+ ## Context to Read First
40
+
41
+ _No additional context needed._
42
+
43
+ ## Environment
44
+
45
+ - **Workspace:** Project root
46
+ - **Services required:** None
47
+
48
+ ## File Scope
49
+
50
+ - `hello-taskplane-2.md`
51
+
52
+ ## Steps
53
+
54
+ ### Step 0: Preflight
55
+
56
+ - [ ] Verify this PROMPT.md is readable
57
+ - [ ] Verify STATUS.md exists in the same folder
58
+
59
+ ### Step 1: Create Parallel Hello File
60
+
61
+ - [ ] Create `hello-taskplane-2.md` in the project root
62
+ - [ ] Add title plus lines containing task ID `EXAMPLE-002` and a parallel-safe note
63
+
64
+ ### Step 2: Verification
65
+
66
+ - [ ] Verify `hello-taskplane-2.md` exists and matches the expected content
67
+
68
+ ### Step 3: Delivery
69
+
70
+
71
+
72
+ ## Documentation Requirements
73
+
74
+ **Must Update:** None
75
+ **Check If Affected:** None
76
+
77
+ ## Completion Criteria
78
+
79
+ - [ ] `hello-taskplane-2.md` exists in the project root
80
+ - [ ] `hello-taskplane-2.md` includes a title, task ID (`EXAMPLE-002`), and a parallel-safe note
81
+
82
+ ## Git Commit Convention
83
+
84
+ - **Implementation:** `feat(EXAMPLE-002): description`
85
+ - **Checkpoints:** `checkpoint: EXAMPLE-002 description`
86
+
87
+ ## Do NOT
88
+
89
+ - Modify any existing project files
90
+ - Create files outside the project root
91
+ - Add dependencies between EXAMPLE-001 and EXAMPLE-002
92
+
93
+ ---
94
+
95
+ ## Amendments (Added During Execution)
96
+
97
+ <!-- Workers add amendments here if issues discovered during execution. -->
@@ -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.*