Files
yao-meta-skill/tests/yao_cli_report_refresh.py
T
YAO 31ce04c655 Split meta skill CLI and review gates
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.
2026-06-17 18:43:02 +08:00

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