feat: .NET 운영 리포트 렌더러와 CI 경로 전환

- operational_report.json/md와 final_decision_packet_v4 생성 경로를 .NET으로 전환했습니다.
- CI, 운영 게이트, 릴리스 DAG, 대시보드의 운영 진입점을 새 경로로 정렬했습니다.
- legacy Python 렌더러는 비운영으로 명시했습니다.
This commit is contained in:
2026-06-26 14:18:03 +09:00
parent 8f13bb4a48
commit 9e6e2ded2f
15 changed files with 649 additions and 120 deletions
+2 -3
View File
@@ -9,10 +9,9 @@ from validate_renderer_no_calculation_v1 import main as validate_v1
def main() -> int:
ap = argparse.ArgumentParser()
ap.add_argument("--renderer", default="tools/render_operational_report.py")
ap.add_argument("--renderer", default="src/dotnet/QuantEngine.Tools/Program.cs")
args = ap.parse_args()
# v2 keeps the same static scan but allows explicit renderer path for future parity checks.
# The underlying implementation already validates the current canonical renderer.
# v2 keeps the same static scan but points at the canonical .NET renderer.
_ = Path(args.renderer)
return validate_v1()