@p10i/rundown 1.0.0-rc.13 → 1.0.0-rc.15

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 CHANGED
@@ -92,7 +92,7 @@ Re-verify the most recently completed task (without changing checkbox state):
92
92
  rundown reverify -- opencode run
93
93
  ```
94
94
 
95
- Re-verify a specific historical run and fail fast without repair retries:
95
+ Re-verify a specific historical run and fail fast without repair attempts:
96
96
 
97
97
  ```bash
98
98
  rundown reverify --run run-20260319T222645632Z-04e84d73 --no-repair -- opencode run
@@ -114,6 +114,15 @@ Common Git-aware forms:
114
114
  rundown run roadmap.md --commit -- opencode run
115
115
  rundown run roadmap.md --commit --commit-message "rundown: complete \"{{task}}\" in {{file}}" -- opencode run
116
116
  rundown run roadmap.md --on-complete "git push" -- opencode run
117
+ rundown run roadmap.md --on-fail "node scripts/alert.js" -- opencode run
118
+ rundown run roadmap.md --force-execute -- opencode run
119
+ ```
120
+
121
+ Run all tasks sequentially:
122
+
123
+ ```bash
124
+ rundown run roadmap.md --all -- opencode run
125
+ rundown run roadmap.md --all --commit --on-fail "node scripts/alert.js" -- opencode run
117
126
  ```
118
127
 
119
128
  ---
@@ -124,19 +133,37 @@ rundown run roadmap.md --on-complete "git push" -- opencode run
124
133
 
125
134
  Use `rundown plan` to expand a high-level task into concrete subtasks before execution begins. Big goals become small, runnable steps.
126
135
 
136
+ Nested checkbox contract:
137
+
138
+ - A parent checkbox is a real task, not a passive container.
139
+ - A parent task is blocked while any descendant checkbox remains unchecked.
140
+ - A parent becomes runnable only after all descendants are checked.
141
+ - Use a plain bullet (without a checkbox) for grouping-only headings.
142
+
127
143
  ### Execute
128
144
 
129
145
  The task context — the surrounding Markdown, the template, the file paths — gets rendered into a prompt and sent to your worker.
130
146
 
131
147
  ### Verify
132
148
 
133
- A separate verification prompt checks the result. The task needs an explicit `OK` to pass. No silent failures.
149
+ A separate verification prompt checks the result.
150
+
151
+ Verifier contract:
152
+
153
+ - return `OK` on stdout when complete
154
+ - otherwise return a short failure reason (recommended: `NOT_OK: <reason>`)
155
+
156
+ `rundown` persists that stdout result to the task sidecar file (`<file>.<taskIndex>.validation`). The task needs an explicit `OK` to pass. No silent failures.
157
+
158
+ If task text is verification-only (for example `verify: ...` or `[confirm] ...`), `rundown run` automatically skips the execute phase and runs verify/repair directly.
159
+
160
+ Use `--force-execute` to override that auto-skip and run execution anyway.
134
161
 
135
162
  Need a confidence check later (for example before release)? Use `rundown reverify` to re-run verify/repair for the latest completed task from artifacts, without advancing task selection.
136
163
 
137
164
  ### Repair
138
165
 
139
- If verification fails, a repair prompt fires, the worker retries, and verification runs again. Completion is earned, not assumed.
166
+ If verification fails, a repair prompt fires, the worker runs another repair attempt, and verification runs again. Completion is earned, not assumed.
140
167
 
141
168
  ---
142
169