Skip to content

Commit 73111d3

Browse files
abrichrclaude
andauthored
fix: default strict_setup_readiness to False to avoid false infra failures (#113)
The post-setup focus check (PR #107) defaults to strict mode, which marks tasks as infrastructure failures when the a11y window enumeration can't find the expected app title. In practice, LibreOffice windows take longer to render titles than the check allows, causing ALL LibreOffice tasks to fail as infra — even though the app IS open. Changing default to False: focus check still runs and logs warnings, but doesn't abort the task. The agent can recover from focus issues on its own (it did in all prior trials without this check). Use --strict-setup-readiness to opt into the fatal behavior when the a11y detection is more reliable. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7000ece commit 73111d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • openadapt_evals/adapters/waa

openadapt_evals/adapters/waa/live.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ class WAALiveConfig:
382382
force_tray_icons: bool = False
383383
reapply_clean_desktop_each_reset: bool = False
384384
waa_image_version: str | None = None
385-
strict_setup_readiness: bool = True
385+
strict_setup_readiness: bool = False
386386
setup_readiness_retries: int = 3
387387

388388

0 commit comments

Comments
 (0)