The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Teaching web agents when people will step in makes them more helpful: models trained on 400 real-user navigation traces raise intervention-prediction accuracy by roughly 60% and boost perceived agent usefulness by 37% in live tests.

Modeling Distinct Human Interaction in Web Agents
Faria Huq, Zora Zhiruo Wang, Zhanqiu Guo, Venu Arvind Arangarajan, Tianyue Ou, Frank Xu, Shuyan Zhou, Graham Neubig, Jeffrey P. Bigham · February 19, 2026
arxiv quasi_experimental medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Faria Huq unresolved corpus identity
  2. Zora Zhiruo Wang unresolved corpus identity
  3. Zhanqiu Guo unresolved corpus identity
  4. Venu Arvind Arangarajan unresolved corpus identity
  5. Tianyue Ou unresolved corpus identity
  6. Frank Xu unresolved corpus identity
  7. Shuyan Zhou unresolved corpus identity
  8. Graham Neubig unresolved corpus identity
  9. Jeffrey P. Bigham unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Faria Huq provider ID
  2. Z. Wang provider ID
  3. Zhanqiu Guo provider ID
  4. Venu Arvind Arangarajan provider ID
  5. Tianyue Ou provider ID
  6. Frank F. Xu provider ID
  7. Shuyan Zhou provider ID
  8. Graham Neubig provider ID
  9. Jeffrey P. Bigham provider ID
Using CowCorpus — 400 real-user web navigation trajectories — to model when users intervene, the authors train intervention-aware LMs that substantially improve intervention prediction and, when deployed, increase user-rated agent usefulness by about 37%.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Despite rapid progress in autonomous web agents, human involvement remains essential for shaping preferences and correcting agent behavior as tasks unfold. However, current agentic systems lack a principled understanding of when and why humans intervene, often proceeding autonomously past critical decision points or requesting unnecessary confirmation. In this work, we introduce the task of modeling human intervention to support collaborative web task execution. We collect CowCorpus, a dataset of 400 real-user web navigation trajectories containing over 4,200 interleaved human and agent actions. We identify four distinct patterns of user interaction with agents -- hands-off supervision, hands-on oversight, collaborative task-solving, and full user takeover. Leveraging these insights, we train language models (LMs) to anticipate when users are likely to intervene based on their interaction styles, yielding a 61.4-63.4% improvement in intervention prediction accuracy over base LMs. Finally, we deploy these intervention-aware models in live web navigation agents and evaluate them in a user study, finding a 36.8% increase in user-rated agent usefulness. Together, our results show structured modeling of human intervention leads to more adaptive, collaborative agents.

Summary

Main Finding

Modeling when and how humans intervene in web-agent workflows—by learning user-specific collaboration styles—enables agents to ask for help only when needed. Using COWCORPUS (400 real user–agent trajectories) and multimodal LMs fine-tuned to predict intervention, the authors achieve a 61.4–63.4% improvement in intervention prediction accuracy over baseline LMs and a 36.8% increase in user-rated agent usefulness in live studies.

Key Points

  • Problem: Current autonomous web agents either proceed past critical decision points or over-request confirmations; neither behavior aligns well with diverse human oversight needs.
  • New task: Stepwise human-intervention prediction: at each agent action predict whether the human will intervene given prior trajectory, current webpage screenshot, accessibility tree, and proposed agent action.
  • Dataset (COWCORPUS): 400 trajectories from 20 participants (200 standard tasks + 200 free-form), 2,748 agent steps and 1,476 human steps; annotated step-level interventions and motivations.
  • User collaboration styles (clustered by intervention frequency/intensity, timing, and handback rate):
    • Takeover: intervene late and retain control.
    • Hands-on: frequent interventions, alternate control.
    • Hands-off: rarely intervene.
    • Collaborative: targeted, short interventions and hand control back.
  • Motivations for intervention: error correction/recovery, preference refinement, assistive takeover for complex UIs.
  • Modeling approach: formulate as POMDP; build LMMs via supervised fine-tuning to output or . Two model types: general intervention-aware and style-conditioned models.
  • Metrics: step accuracy, F1, and Perfect Timing Score (PTS) which penalizes temporally imprecise predictions.
  • Results: large gains in offline prediction accuracy (61.4–63.4% over baselines) and practical gains in a user study (36.8% higher perceived usefulness).
  • Release: dataset and models publicly linked (paper: huggingface.co/CowCorpus; code: github.com/oaishi/PlowPilot).

Data & Methods

  • Data collection:
    • 20 participants performed 20 web tasks each (10 from Mind2Web benchmark, 10 free-form).
    • Logged actor (human/agent), timestamps, screenshots, accessibility trees, and intervention events (pauses, resumes, overrides).
  • Per-user features (used for clustering):
    • Intervention frequency = total intervention events / total actions.
    • Intervention intensity = total human steps / total agent steps.
    • Normalized intervention position = mean position of human actions within trajectories.
    • Handback rate = fraction of interventions after which agent regains control.
  • Clustering: k-means (k=4) on those features to identify the four collaboration styles.
  • Formalization: At each step t, predict p(y_t = 1 | o_t, â_t, τ_{0:t-1}), where o_t = (screenshot V_t, accessibility tree A_t) and â_t is the agent’s proposed action.
  • Model training:
    • Multimodal LMs (large multimodal model fine-tuned via supervised learning).
    • Inputs serialized: prior trajectory, current observation, and proposed action.
    • Outputs: binary tokens ( or ).
    • Hands-off cluster excluded from train/test for intervention prediction because it contains no interventions.
  • Evaluation:
    • Train/test split by trajectory; balanced intervention ratio ~1:7.
    • Metrics: step accuracy, F1, PTS (timing-aware).
    • Baselines: Always-No-Interv and Always-Interv plus prompting/proprietary models.
  • Deployment: integrated intervention models into a live web agent (CowPilot framework) and ran a user study to measure perceived usefulness.

Implications for AI Economics

  • Reduced oversight labor and time costs: Accurate intervention prediction can lower the number and mistimed frequency of human interruptions, reducing monitoring time and increasing productivity per human supervisor. This has straightforward cost-savings for organizations that rely on human-in-the-loop automation.
  • Improved task throughput and quality: Better-timed interventions reduce error recovery costs (redoing tasks, lost time), improving expected output quality and reducing rework—important for service automation and back-office processes.
  • Personalization as a value lever: Style-conditioned models show value from tailoring agent behavior to user collaboration style. This supports business models that charge premiums for personalized agents or for enterprise deployments that adapt to worker archetypes.
  • Labor-market and task composition effects: As agents reliably handle more steps with fewer human interventions, some routine oversight roles may shrink while demand for higher-skilled supervision (handling exceptions) could increase. This suggests reallocation of labor toward tasks needing judgment or complex exception handling.
  • Platform and product differentiation: Intervention-aware agents provide measurable UX gains (36.8% perceived usefulness). Vendors can differentiate on trust/efficiency metrics (fewer false alarms, fewer unnecessary confirmations) — potentially influencing adoption and pricing competition.
  • Externalities and regulatory considerations:
    • Liability and accountability: Agents that autonomously act unless an intervention is predicted raise questions about responsibility for mistakes; intervention modeling could be used to audit when humans should have been engaged.
    • Privacy/lock-in: Personalization needs user interaction logs and behavioral clustering—data that may increase vendor lock-in and raise privacy/compliance costs.
  • Areas for economic evaluation and future work:
    • Cost–benefit analyses quantifying supervision time saved vs. model training/deployment costs across domains (customer service, e-commerce, data entry).
    • Optimal pricing and contracting: How to price tiers (hands-off vs. collaborative vs. takeover) and incentive structures for shared-control workflows.
    • Market impacts: Study whether intervention-aware features drive concentration (platform effects) or create a market for third-party personalization services.
    • Policy: Standards for transparency and audit logs specifying when an agent predicted interventions and how decisions were made could affect regulatory compliance costs.

Limitations to note for economic interpretation: small participant pool (20 users), domain limited to web navigation tasks, Hands-off users excluded from modeling, and potential generalization gaps across cultures, industries, or higher-stakes domains. These affect how transferable estimated cost-savings might be in practice.

Assessment

Paper Typequasi_experimental Evidence Strengthmedium — The paper provides a new real-user dataset and shows large predictive gains (61–63% improvement) and a substantial increase in self-reported agent usefulness (36.8%) in a live evaluation, which support the central claim; however, the dataset is modest in size, the user-study design and sample are not fully described here (raising concerns about randomization, statistical power, and selection bias), outcomes are largely short-term and perceptual (user-rated usefulness) rather than long-run productivity or economic metrics, and external validity across tasks, populations, and interfaces is unclear. Methods Rigormedium — The study combines principled dataset collection, qualitative pattern identification (four interaction modes), supervised LM training, and live evaluation — a solid mixed-methods approach; but rigor is limited by modest sample size, potential annotation/labeling subjectivity, lack of reported randomization and statistical controls in the user study, unclear robustness checks (e.g., out-of-distribution tasks, ablations across architectures), and no long-term behavioral or objective productivity measures presented. SampleCowCorpus: 400 real-user web navigation trajectories with over 4,200 interleaved human and agent actions collected on web navigation tasks; models trained on this dataset and deployed in a live user study (user sample size and recruitment details not specified in the summary). Themeshuman_ai_collab productivity IdentificationTrain LMs to predict user intervention using the CowCorpus dataset (400 user navigation trajectories, ~4,200 actions); compare intervention-aware models to base LMs on held-out prediction accuracy and via a live user study (A/B or controlled deployment implied) measuring user-rated agent usefulness — causal claims rest on differences between model conditions in the user study, but details on randomization, blocking, or pre-registration are not specified. GeneralizabilityModest dataset size (400 trajectories) may not capture full heterogeneity of users and tasks, Tasks limited to web navigation; results may not extend to other decision domains or complex, multi-step workflows, Participant pool likely non-representative (e.g., crowdworkers or lab volunteers) — demographics and expertise unspecified, Short-term, subjective outcome (user-rated usefulness) — uncertain translation to objective productivity, adoption, or economic outcomes, Model and UI-specific — performance may differ with different LM architectures, agent designs, languages, or interaction modalities

Claims (7)

ClaimDirectionOutcomeConfidence & EvidenceDetails
We collect CowCorpus, a dataset of 400 real-user web navigation trajectories containing over 4,200 interleaved human and agent actions. Other positive size and composition of collected dataset (number of trajectories and interleaved actions)
Reading fidelity high
Study strength high
n=400
0.8
We identify four distinct patterns of user interaction with agents -- hands-off supervision, hands-on oversight, collaborative task-solving, and full user takeover. Task Allocation positive categorization of user-agent interaction patterns
Reading fidelity high
Study strength medium
n=400
0.48
Leveraging these insights, we train language models (LMs) to anticipate when users are likely to intervene based on their interaction styles, yielding a 61.4-63.4% improvement in intervention prediction accuracy over base LMs. Task Allocation positive intervention prediction accuracy
Reading fidelity high
Study strength medium
61.4-63.4% improvement in intervention prediction accuracy over base LMs
0.48
We deploy these intervention-aware models in live web navigation agents and evaluate them in a user study, finding a 36.8% increase in user-rated agent usefulness. Consumer Welfare positive user-rated agent usefulness
Reading fidelity high
Study strength medium
36.8% increase in user-rated agent usefulness
0.48
Structured modeling of human intervention leads to more adaptive, collaborative agents. Team Performance positive agent adaptiveness and collaborativeness (behavioral quality of agents)
Reading fidelity medium
Study strength medium
not reported
0.29
Despite rapid progress in autonomous web agents, human involvement remains essential for shaping preferences and correcting agent behavior as tasks unfold. Task Allocation positive necessity of human involvement in agentic web tasks
Reading fidelity medium
Study strength speculative
not reported
0.05
Current agentic systems lack a principled understanding of when and why humans intervene, often proceeding autonomously past critical decision points or requesting unnecessary confirmation. Task Allocation negative frequency and nature of inappropriate autonomy or unnecessary confirmations in existing agentic systems
Reading fidelity medium
Study strength speculative
not reported
0.05

Notes