跳到正文
Jones Ray

ScholarPulse 日报 2026-06-16

2026-06-16 学术简报:2 篇。tap协议通过文件优先设计实现了Claude (Anthropic)和Codex (OpenAI)等异构LLM代理在共享代码库上的无缝协作,无需共享内存或相同运行时,27天自应用实验验证其能显著提升代码审查质量。

今日速览

序号标题来源日期主题推荐等级
1tap: A File-Based Protocol for Heterogeneous LLM Agent CollaborationarXiv2026-06-12AI-Agent高
2Communication Policy Evolution for Proactive LLM AgentsarXiv2026-06-12AI-Agent高

重点论文与技术动态

1. tap: A File-Based Protocol for Heterogeneous LLM Agent Collaboration

一句话结论

tap协议通过文件优先设计实现了Claude (Anthropic)和Codex (OpenAI)等异构LLM代理在共享代码库上的无缝协作,无需共享内存或相同运行时,27天自应用实验验证其能显著提升代码审查质量。

核心内容

方法与数据

价值判断

摘要 Existing multi-agent software development systems have proposed many forms of agent collaboration, including role-based collaboration and automated code review. However, many systems assume a common runtime, a central conversation server, or the same API family. Under these assumptions, LLM agents from different vendors cannot easily exchange messages directly from their own execution environments while dividing development and review work on a shared codebase. This paper presents tap, a file-based collaboration protocol that allows Claude (Anthropic) and Codex (OpenAI) to collaborate on one codebase without shared memory or an identical runtime. The core of tap is a file-first design that preserves markdown files with metadata as original messages, combines a file inspection path (file communication, Tier 1) with real-time notification paths for Claude and Codex (real-time communication, Tier 2), and isolates work through separate git worktrees. Even if real-time notification fails or a receiver restarts, the message file remains available and the same content can be inspected again. In a 27-day, 37-generation self-applied operation where tap was used to develop and review itself, we collected 209 tap-related pull requests and 717 operational artifacts. An analysis of 375 review artifacts showed that the share of reviews recording at least one defect or requested change was 69.8% for heterogeneous model pairs and 53.1% for homogeneous model pairs. These results show that tap, which combines file-based message preservation with real-time notification, operates in a real production repository, and that combining heterogeneous models and execution environments can broaden review perspectives. tap is distributed as the open-source npm package @hua-labs/tap (v0.5.2).

2. Communication Policy Evolution for Proactive LLM Agents

一句话结论

该研究提出通信策略进化(CPE)框架,通过融合文本与UI交互优势,显著提升LLM代理任务成功率,揭示通信行为为关键设计维度。

核心内容

方法与数据

价值判断

摘要 LLM agents have rapidly evolved into autonomous systems, yet a persistent information gap remains between users and agents: communication is costly, while users' identical preferences further limit information exchange. To investigate how agents should communicate across modalities, this paper formalizes Communication Policy, establishes textual and UI-based policies, and then evaluates communication policies across diverse environments, personas, and model combinations. Building information asymmetry for proactive agents, we set up two complementary settings, User-Agent and Planner-Executor. Experimental results reveal complementary strengths between interaction channels: text-based interaction often facilitates task performance, while structured UI improves agents' response quality and persona compliance. Motivated by that, a hybrid method combines these advantages. We further propose Communication Policy Evolution (CPE), a self-evolution framework for refining communication policies through rollout and prompt-level evolving. Without model modification, CPE achieves the best task success across multiple settings using prompt refinement alone. Our findings identify communication behavior as a critical yet underexplored design dimension for LLM agents.