Integrate weekly curator into report flow

This commit is contained in:
yaojingang
2026-06-16 05:09:49 +08:00
parent 3bfc56f026
commit 089d0a77f2
5 changed files with 29 additions and 6 deletions
+3
View File
@@ -32,6 +32,7 @@ SOURCE_REFRESH_REPORT_COMMANDS = [
'python3 scripts/render_world_class_operator_runbook.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_world_class_claim_guard.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_daily_skillops_report.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_weekly_curator_report.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_skill_os2_audit.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_skill_os2_coverage.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_context_reports.py --generated-at "$GENERATED_AT"',
@@ -47,6 +48,7 @@ CLEAN_LOCK_REPORT_COMMANDS = [
'python3 scripts/render_context_reports.py --generated-at "$GENERATED_AT"',
'python3 scripts/render_benchmark_reproducibility.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_daily_skillops_report.py . --generated-at "$GENERATED_AT"',
'python3 scripts/render_weekly_curator_report.py . --generated-at "$GENERATED_AT"',
"python3 scripts/render_skill_overview.py .",
"python3 scripts/render_skill_interpretation.py .",
"python3 scripts/render_review_viewer.py .",
@@ -119,6 +121,7 @@ def build_release_evidence_flow_check(skill_dir: Path) -> dict[str, Any]:
"reports/review-viewer.json",
"reports/world_class_evidence_preflight.json",
"reports/skillops/daily",
"reports/skillops/weekly",
"reports/review-studio.json",
"reports/evidence_consistency.json",
],
+2
View File
@@ -77,6 +77,7 @@ def command_report(args: argparse.Namespace) -> int:
run_script("render_world_class_operator_runbook.py", [str(ROOT)]),
run_script("render_world_class_claim_guard.py", [str(ROOT)]),
run_script("render_daily_skillops_report.py", [str(ROOT)]),
run_script("render_weekly_curator_report.py", [str(ROOT)]),
run_script("render_skill_os2_coverage.py", [str(ROOT)]),
run_script("render_benchmark_reproducibility.py", [str(ROOT)]),
run_script("render_skill_overview.py", [str(ROOT)]),
@@ -122,6 +123,7 @@ def command_report(args: argparse.Namespace) -> int:
"world_class_operator_runbook": "reports/world_class_operator_runbook.json",
"world_class_claim_guard": "reports/world_class_claim_guard.json",
"daily_skillops": "reports/skillops/daily",
"weekly_curator": "reports/skillops/weekly",
"skill_os2_coverage": "reports/skill_os2_coverage.json",
"benchmark_reproducibility": "reports/benchmark_reproducibility.json",
"skill_overview": "reports/skill-overview.json",