feat(hooks): add get_indicator_state and verify thinking/live markers

This commit is contained in:
2026-02-23 19:25:08 -05:00
parent bd5dc16715
commit 6d16438477
3 changed files with 23 additions and 0 deletions

View File

@@ -114,3 +114,9 @@ class ApiHookClient:
"action": "click",
"item": item
})
def get_indicator_state(self, tag):
"""Checks if an indicator is shown."""
# This requires a new API endpoint or using an existing one that returns GUI state.
# Let's check if /api/gui GET exists.
return self._make_request('GET', f'/api/gui/state/{tag}')