31ce04c655
Merge the beta-ready Yao Meta Skill architecture, report, evidence gate, and release-boundary updates.\n\nRelease boundary: beta/public testing is allowed; formal world-class, fully reviewed, or superiority claims remain blocked until the pending evidence gates are accepted.
17 lines
631 B
Python
17 lines
631 B
Python
from pathlib import Path
|
|
from typing import Callable
|
|
|
|
|
|
def refresh_root_report_consistency_inputs(run: Callable[..., dict], root: Path) -> None:
|
|
"""Refresh root reports that evidence-consistency compares by value."""
|
|
|
|
for refresh_args in [
|
|
("benchmark-reproducibility", str(root), "--generated-at", "2026-06-15"),
|
|
("skill-report", str(root)),
|
|
("skill-interpretation", str(root)),
|
|
("world-class-preflight", str(root), "--generated-at", "2026-06-15"),
|
|
("review-studio", str(root)),
|
|
]:
|
|
refresh_result = run(*refresh_args)
|
|
assert refresh_result["ok"], refresh_result
|