You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 11, 2026. It is now read-only.
- Plan-sync safety: skip in_progress task specs to prevent worker drift
- File lock conflict detection in Phase 3c½ before worker spawn
- Unify MAX_REVIEW_ITERATIONS=3 across all review skills (fix steps.md
contradiction: was >=2 AND max 5, now consistently max 3)
- Add explicit circuit breaker to plan-review and epic-review SKILL.md
- Brainstorm/plan dedup: Step 0.5 skips when requirements doc exists
- Formal Wave Model definition in phases.md
- Scout decision tree simplified to 3 profiles (quick/standard/deep)
- New `flowctl log decision` command for workflow traceability
- New `flowctl status --progress` with Unicode progress bar
- New `flowctl doctor --workflow` checks (backend config, tools, locks)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: agents/plan-sync.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -181,3 +181,4 @@ Updated tasks (cross-epic): # Only if CROSS_EPIC enabled and found
181
181
-**Preserve intent** - Update references, not requirements
182
182
-**Minimal changes** - Only fix stale references, don't rewrite specs
183
183
-**Skip if no drift** - Return quickly if implementation matches spec
184
+
-**Never edit in_progress tasks** - Before editing any task spec, check status via `$FLOWCTL show <task-id> --json`. If status is `in_progress`, skip the edit and log: `"Skipping <task-id>: task is in_progress (worker may be executing)"`. This prevents spec drift while workers are actively implementing.
checks.push(json!({"name":"review_backend","status":"warn","message":"Review backend not configured. Run /flow-code:setup or set review.backend in .flow/config.json"}));
checks.push(json!({"name":"tool_available","status":"pass","message": format!("{} found on PATH", tool_name)}));
725
+
}
726
+
_ => {
727
+
checks.push(json!({"name":"tool_available","status":"fail","message": format!("{} not found on PATH (required by review.backend={})", tool_name, backend)}));
728
+
}
729
+
}
730
+
}
731
+
}
732
+
733
+
// Check 7: stale file locks (count via SQL)
734
+
let cwd = env::current_dir().unwrap_or_else(|_| std::path::PathBuf::from("."));
0 commit comments