advance.py file-level

at sha256:a · View file ↗ · Intel ↗

History
1 files
1 commits
0 hotspots
0 🧊 dead
0 💥 blast risk
sha256:8 docs: queue board-identity follow-ups so they survive the session Capt… · aaronrene · Sep 5, 2026
1 """``current_step`` advance rules (§K9.4)."""
2
3 from __future__ import annotations
4
5
6 def compute_advance(
7 template_steps: list[str],
8 verified_step: str,
9 steps_verified: dict[str, bool],
10 current_step: str,
11 ) -> str:
12 """Apply frozen advance rule using post-verify verified flags."""
13 if verified_step not in template_steps:
14 return current_step
15 index = template_steps.index(verified_step)
16 for prior_id in template_steps[:index]:
17 if not steps_verified.get(prior_id, False):
18 return current_step
19 if index + 1 < len(template_steps):
20 return template_steps[index + 1]
21 return verified_step