advance.py python
21 lines 655 B
Raw
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1 docs: MuseHub-first before ISR #74 — staging solidify NEXT Human 2 days 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 2 commits
sha256:a78e7e5a8740e03315f325d19edeb3aa1b306b3337d04abbaa9a9e0f3bbeb7a1 docs: MuseHub-first before ISR #74 — staging solidify NEXT Human 2 days ago
sha256:4671b7f787ddbe63ced31c895b688c77ab495653b65a730b423329f26b3c1439 feat: K1-P1 complete — agent provenance, build-verification… Sonnet 4.6 patch 54 days ago