taskplane 0.24.4 → 0.24.5
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.
|
@@ -609,7 +609,7 @@ export const DEFAULT_ORCHESTRATOR_SECTION: OrchestratorSection = {
|
|
|
609
609
|
failure: {
|
|
610
610
|
onTaskFailure: "skip-dependents",
|
|
611
611
|
onMergeFailure: "pause",
|
|
612
|
-
stallTimeout:
|
|
612
|
+
stallTimeout: 60,
|
|
613
613
|
maxWorkerMinutes: 120,
|
|
614
614
|
abortGracePeriod: 60,
|
|
615
615
|
},
|
|
@@ -226,6 +226,8 @@ export async function executeTaskV2(
|
|
|
226
226
|
`Wrap-up signal file: ${wrapUpFile}`,
|
|
227
227
|
``,
|
|
228
228
|
`⚠️ ORCHESTRATED RUN: Do NOT archive or move the task folder. The orchestrator handles post-merge archival.`,
|
|
229
|
+
``,
|
|
230
|
+
`⚠️ CHECKPOINT RULE: After completing EACH checkbox item, immediately edit STATUS.md to check it off (- [ ] → - [x]) BEFORE starting the next item. Do NOT batch checkbox updates at the end of a step.`,
|
|
229
231
|
];
|
|
230
232
|
|
|
231
233
|
if (totalIterations > 1 && remainingSteps.length > 0) {
|
package/package.json
CHANGED
|
@@ -11,6 +11,21 @@ STATUS.md on disk is your ONLY memory.
|
|
|
11
11
|
Your prompt tells you which steps remain. Work through them **in order**,
|
|
12
12
|
completing each step before moving to the next.
|
|
13
13
|
|
|
14
|
+
## RULE #1: Check Off Each Checkbox IMMEDIATELY After Completing It
|
|
15
|
+
|
|
16
|
+
**This is the single most important rule.** After you finish the work for
|
|
17
|
+
a checkbox item, update STATUS.md RIGHT THEN — before moving to the next
|
|
18
|
+
item. Do NOT batch checkbox updates at the end of a step.
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
✅ CORRECT: finish item → edit STATUS.md (check box) → next item
|
|
22
|
+
❌ WRONG: finish item → finish item → finish item → check all boxes at once
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Why: STATUS.md is your crash-recovery memory AND the operator's only
|
|
26
|
+
visibility into your progress. If you batch updates, the dashboard shows
|
|
27
|
+
0% for the entire step, and a crash loses all your unchecked work.
|
|
28
|
+
|
|
14
29
|
## Resume Algorithm (MANDATORY — Do This First)
|
|
15
30
|
|
|
16
31
|
1. Read STATUS.md completely
|
|
@@ -41,8 +56,9 @@ Do NOT run tests and then stop — always checkpoint the results first.
|
|
|
41
56
|
There are two distinct actions: **checking off items** and **git commits**.
|
|
42
57
|
They happen at different cadences.
|
|
43
58
|
|
|
44
|
-
### Checking off items (after EACH checkbox)
|
|
59
|
+
### Checking off items (after EACH checkbox) — see RULE #1 above
|
|
45
60
|
|
|
61
|
+
This is a repeat of RULE #1 because it is that important.
|
|
46
62
|
After completing each checkbox item, **immediately update STATUS.md**:
|
|
47
63
|
|
|
48
64
|
```
|
|
@@ -51,6 +67,8 @@ edit STATUS.md
|
|
|
51
67
|
newText: "- [x] The item text"
|
|
52
68
|
```
|
|
53
69
|
|
|
70
|
+
Do this EVERY time, for EVERY checkbox. Not at the end of the step.
|
|
71
|
+
|
|
54
72
|
Then **check for wrap-up signal:**
|
|
55
73
|
```bash
|
|
56
74
|
if test -f "<TASK_FOLDER>/.task-wrap-up"; then
|