From 653c72020c6a9feeaacc7bc40f4eaca5745c0bf7 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 10 Nov 2025 17:02:56 +0000 Subject: [PATCH] Fix progressive hints in CLI simulator for first failed attempt Removed "attempts > 0" check in research/guarded_ai.py that prevented hints from showing on the first attempt. Matches the fix made to activity.py for consistent behavior across web app and CLI simulator. --- research/guarded_ai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/research/guarded_ai.py b/research/guarded_ai.py index 518af2f..c281484 100644 --- a/research/guarded_ai.py +++ b/research/guarded_ai.py @@ -752,7 +752,7 @@ def simulate_activity(yaml_file_path): # End of multi-bucket processing loop # Check for progressive hints (v2.0) - if "hints" in step and attempts > 0: + if "hints" in step: hint_context = create_template_context( metadata=metadata, current_attempt=attempts + 1, # Next attempt