ArXiv

SearchOS-V1: Towards Robust Open-Domain Information-Seeking Agent Collaboration

Authors
Yuyao Zhang, Junjie Gao, Zhengxian Wu...
Categories
cs.AI, cs.IR
arXiv
https://arxiv.org/abs/2607.15257v1
PDF
https://arxiv.org/pdf/2607.15257v1

Brief

SearchOS is a system-level multi-agent framework that tackles open-domain information seeking by turning implicit search progress into explicit, shared state. The authors cast the task as relational schema completion with grounded citations and introduce SOCM (Frontier Task, Evidence Graph, Coverage Map, Failure Memory), pipeline-parallel scheduling, a Search Tool Middleware Harness, and a hierarchical skill system to avoid repetition and improve throughput. SearchOS leads all metrics versus single- and multi-agent baselines on WideSearch and GISA; code is released on GitHub.

Why it matters

SearchOS reformulates open-domain information seeking as relational schema completion with grounded citations and externalizes progress into Search-Oriented Context Management (SOCM) components: Frontier Task, Evidence Graph, Coverage Map, and Failure Memory.

Key details

  • System and scheduling innovations — pipeline-parallel task scheduling, a Search Tool Middleware Harness, and a hierarchical skill system (strategy + access skills) — reduce repeated failed searches and improve utilization; SearchOS outperformed all evaluated single- and multi-agent baselines on the WideSearch and GISA benchmarks.
  • Paper (arXiv:2607.15257v1, 2026-07-16) provides code at https://github.com/antins-labs/SearchOS.
Source evidence

Abstract

Recent advances in Tool-Integrated Large Language Models have made web search a core capability of information-seeking agents. However, as interaction histories grow, agents increasingly struggle to track task progress. When search attempts fail to yield useful evidence, current single- and multi-agent systems can become trapped in repetitive loops, wasting search budgets and ultimately compromising the quality and completeness of the final output. We introduce SearchOS, a system-level multi-agent framework that turns fragile, implicit search progress into explicit, persistent, and shared state. First, we formulate open-domain information seeking as relational schema completion with grounded citations, where agents discover entities, populate attributes across linked tables, and anchor each value to source evidence. Then we design Search-Oriented Context Management (SOCM), which externalizes the evolving state into Frontier Task, an Evidence Graph, a Coverage Map, and Failure Memory. Built on SOCM, SearchOS applies a pipeline-parallel scheduling mechanism that overlaps the execution of sub-agents and continuously refills freed slots with tasks targeting unresolved coverage gaps to improve utilization and throughput. To schedule and control the execution of search agents, SearchOS introduces a Search Tool Middleware Harness that intercepts model and tool interactions to record grounded evidence and react to stalls or budget exhaustion, and provides a reusable hierarchical skill system comprising strategy and access skills to augment the agents' search process and avoid repeating failed search patterns across runs. On WideSearch and GISA, SearchOS leads all metrics among the evaluated single- and multi-agent baselines, paving the way toward robust information-seeking collaboration.

Comment: Code is available at https://github.com/antins-labs/SearchOS