Back to articles
AI Agents

StateAct puts program state before pixels for computer-use agents

3 min read

Introduction

Most work on computer-use agents has focused on better perception: read the screenshot more accurately, locate the right button, and click with fewer mistakes. StateAct, a new paper highlighted on Hugging Face Daily Papers, takes a different path. Its central claim is simple but consequential: a screenshot is only a lossy projection of what matters. Files, application backends, DOM trees and saved artifacts are the actual task state; pixels are merely one rendering of that state.

Key points

  • State first, pixels second: StateAct makes program state the main interface. The primary agent uses code to inspect and modify files, DOM structures and other underlying data, instead of relying mainly on screenshots. A dedicated GUI subagent is still available, but only for subgoals that truly require visual interaction.
  • Multi-agent decomposition for long tasks: Long-horizon computer tasks can stretch across hundreds of steps. StateAct keeps the main agent focused by handing subgoals to fresh subagents, reducing context clutter from local operations. In the reported setup, only 28 of 108 tasks required the GUI subagent, and GUI use accounted for just 1.1% of main-agent steps.
  • Verification is state-grounded too: The system adds an independent finish gate that checks whether the final output is missing, unsaved, or written to the wrong path. These structural failures are hard to catch reliably from pixels alone but are more directly observable through state access.
  • Higher scores at lower cost: On OSWorld 2.0, StateAct raises Claude Opus 4.8 from 20.6% to 26.9% binary success and from 54.8% to 61.6% partial success. Compared with a screenshot-only setup using the same model, the reported cost per task is about nine times lower. A code-only variant without the GUI subagent reaches 45.9% partial success, below the screenshot baseline’s 54.8%, showing that the method is not about abandoning visual interaction entirely.

Why it matters

The broader message is that computer use should not be reduced to screen understanding. Many failures happen because an agent loses track of the task, saves the wrong file, overlooks a hidden state change, or fails to verify the final artifact. StateAct’s “state-grounding” approach shifts the bottleneck from perception toward reasoning, planning and reliable state management.

The results also suggest that the harness may be model-agnostic. The source reports gains not only with Claude Opus 4.8 across several benchmarks, but also with an internal 31B SFR-CUA model. That does not mean GUI agents are obsolete; real environments still require visual judgment and interaction. But it does imply that the next gains in computer-use agents may come less from looking harder at screenshots and more from acting on the program state underneath them.

Source: Hugging Face Daily Papers

Comments

Checking sign-in status...

Loading comments...

Related articles

CCTest · Blog
Multi-Head Latent Control: Using Hidden States to Decide When an Agent Should Answer, Escalate, or Use Tools
AI Agents
cctest.ai
AI Agents

Multi-Head Latent Control: Using Hidden States to Decide When an Agent Should Answer, Escalate, or Use Tools

Multi-Head Latent Control proposes a lightweight way to guide LLM agents by reading hidden-state trajectories from a frozen model. Instead of relying only on prompts or external routers, it predicts whether to answer, clarify, call tools, abstain, or hand off to a stronger model.

Read more
CCTest · Blog
Microsoft’s new AI security agents promise lower costs, but raise familiar control questions
AI Agents
cctest.ai
AI Agents

Microsoft’s new AI security agents promise lower costs, but raise familiar control questions

Microsoft has introduced MAI-Cyber-1-Flash and Project Perception, two AI-driven security tools designed to find, assess, and help fix vulnerabilities. The company claims benchmark and cost advantages, yet the timing highlights unresolved concerns around autonomous security agents.

Read more
CCTest · Blog
Satya Nadella warns enterprises against betting their entire AI stack on one model provider
AI Agents
cctest.ai
AI Agents

Satya Nadella warns enterprises against betting their entire AI stack on one model provider

Microsoft CEO Satya Nadella argues that companies relying wholly on proprietary AI labs risk outsourcing not just infrastructure, but their own thinking. His proposed answer is to keep prompts, metadata, context, memory, and agent tooling under enterprise control.

Read more