From 10b28e53169bce885ffe55bc65595488fd1569d8 Mon Sep 17 00:00:00 2001 From: driasim Date: Thu, 4 Jun 2026 15:41:36 +0000 Subject: [PATCH] [spark-compete] enhance(cli): add --no-report flag --- scripts/keep_codex_fast.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/keep_codex_fast.py b/scripts/keep_codex_fast.py index 0bb3eb6..73b95fc 100644 --- a/scripts/keep_codex_fast.py +++ b/scripts/keep_codex_fast.py @@ -846,6 +846,7 @@ def parse_args(argv: list[str]) -> argparse.Namespace: action="store_true", help="With --apply, trim oversized thread title/preview metadata. Default --apply only reports candidates.", ) + parser.add_argument("--no-report", action="store_true", help="Skip report generation") args = parser.parse_args(argv) if args.apply and args.backup_only: parser.error("--apply and --backup-only cannot be used together")