advance.py
python
sha256:8d7f41aafae41deee70035a92f93602ef1722a290153597451e5932af503a42c
docs: queue board-identity follow-ups so they survive the session
Human
1 day ago
| 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 |
File History
1 commit
sha256:8d7f41aafae41deee70035a92f93602ef1722a290153597451e5932af503a42c
docs: queue board-identity follow-ups so they survive the session
Human
1 day ago