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.
This commit is contained in:
Claude 2025-11-10 17:02:56 +00:00
parent 3df402505c
commit 653c72020c
No known key found for this signature in database

View file

@ -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