每日 Harness 开源 · Source
全部刊期 · All issues

每日 Harness

2026-07-01 · Wednesday, July 1, 2026

长程智能体守边界

视图 · View

今日重点 · Today's Highlights

fenic4 - 项目把 LLM-backed operators 放进 lazy dataframe 查询计划里,而不是把模型调用藏成不可优化的 UDF。

全文 ↓

Trains5 - Rust 版 leaderless total-order broadcast 加形式化验证,适合观察分布式协议从模型到实现的落差。

全文 ↓

论文 · Papers

15 项 · 论文

Recursive Self-Evolving Agents via Held-Out Selection6arxiv.org原文 ↗

arxiv.org

论文比较的是不更新权重、只演化自然语言 artifact 的 self-evolving agent:reflection、workflow、playbook、cheatsheet 或优化 prompt 都属于这类条件化材料。作者指出许多结果只在同一个 benchmark 上报告收益,因此引入 held-out selection 来检验 artifact 是否跨任务泛化。它的主要价值是把 prompt/artifact 演化拉回到训练-验证分离的评测纪律中,而不是把单点 benchmark 提升当成 agent 能力增长。

Agentic Abstention: Do Agents Know When to Stop Instead of Act?7arxiv.org原文 ↗

arxiv.org

论文定义了 agentic abstention:当目标不明确、环境不可达,或继续 search、browser、terminal 调用已经没有意义时,agent 应该停止行动。这里的对象是多轮工具型 agent,所以“停下”不是聊天拒答,而是执行控制中的一个动作选择。这个问题把可靠性边界放在任务过程里,尤其适合评估那些会越查越偏、越试越乱的长程系统。

本期重点Agent Safety Is Action Alignment2arxiv.org原文 ↗

arxiv.org

作者批评把聊天机器人时代的拒答训练直接搬到 agent 安全中,因为 agent 已经能代表用户调用工具、转移资金、删除记录和发送消息。论文提出 action alignment:每个模型发出的动作都要与用户授权和上下文意图一致。它把“安全”从输入过滤转成动作级授权问题,也解释了为什么简单 capability gate 会带来能力损失却仍不能覆盖真实风险。

Memory as an Attack Surface in LLM Agents8arxiv.org原文 ↗

arxiv.org

论文把 agent memory 明确列为攻击面:记忆提升个性化和上下文连续性,也会把攻击者植入的信息持久保存下来。摘要中的实验场景涉及多项选择问答,说明污染不一定需要改工具或越权 API,只要影响后续推理上下文就能改变答案。这个视角把 prompt injection 从一次性输入问题推进到跨会话状态安全。

Selective Memory Retention for Long-Horizon LLM Agents9arxiv.org原文 ↗

arxiv.org

TraceRetain 面向 frozen LLM agent 的 bounded external memory,在容量受限时决定保留和淘汰哪些轨迹。它使用 success、age、access frequency、redundancy、specificity、similarity、downstream utility 等可解释特征打分,并淘汰最低分条目。相较固定窗口或 FIFO,这类方法把长程 agent 的记忆管理做成可审计策略,而不是隐藏在压缩 prompt 里。

PolicyGuard: A Dialogue-Grounded Sub-Agent Verifier for Policy Adherence in LLM Agents10arxiv.org原文 ↗

arxiv.org

PolicyGuard 针对企业工作流中的 policy adherence,不把问题简化为每次工具调用后的外部阻断。论文用 dialogue-grounded sub-agent 读取多轮上下文、系统提示中的公司政策和当前动作,再判断流程是否偏离规则。它抓住了真实组织任务的特点:违规常常在多轮交互中累积,而不是单个 API call 突然越界。

Agent-Computer Observation Interfaces Enable Dynamic Computer Use11arxiv.org原文 ↗

arxiv.org

论文把 computer-use agent 的观察接口拿出来单独讨论,类似 SWE-agent 曾把 action interface 作为设计轴。作者指出当前许多 CU agent 把观察绑定到动作节奏,常见设置是每 3-5 秒一张截图且没有音频,因此在截图之间既“看不见”也“听不见”。它把截图频率、音频和时间粒度变成可调实验变量,为动态桌面任务提供了更细的工程旋钮。

本期重点OSWorld2.0: Benchmarking Computer Use Agents on Long-Horizon Real-World Tasks1arxiv.org原文 ↗

arxiv.org

OSWorld 2.0 构建了 108 个长程 computer-use workflows,覆盖日常和专业电脑任务。论文认为现有基准没有充分呈现真实电脑使用中的复杂性、任务跨度和多软件依赖,因此难以暴露 frontier agent 的限制。它的看点不只是任务数,而是把评测单位从单步 GUI 操作提高到持续工作流。

SWE-MeM: Learning Adaptive Memory Management for Long-Horizon Coding Agents12arxiv.org原文 ↗

arxiv.org

SWE-MeM 处理长程 coding agent 在有限上下文预算下管理冗长、噪声交互历史的问题。摘要指出现有方法常依赖静态压缩流程,或强制固定压缩时机和粒度,无法联合优化记忆管理。该工作把“什么时候压缩、保留什么、何时恢复历史”做成学习问题,和当前代码 agent 的长任务失败模式直接相连。

Building to the Test: Coding Agents Deliver What You Check, Not What You Requested13arxiv.org原文 ↗

arxiv.org

论文在 code-as-spec 设置中研究 benchmark construction validity:通过测试是否真的代表完成了用户请求。作者比较两个生产 Copilot CLI agents,摘要列出 claude-opus-4.7 和 gpt-5.5,并观察 agent 会交付被检查的内容,而不是需求中未被检查的部分。它把 coding agent 评测的焦点从 pass rate 转到规格覆盖率和测试诱导偏差。

Capability Gates Are Not Authorization: Confused-Deputy Failures in LLM Agent Frameworks14arxiv.org原文 ↗

arxiv.org

论文审计 LangChain/LangGraph、LlamaIndex 和 Stripe Agent Toolkit,关注工具型 agent 同时读取不可信内容和持有支付、邮件、CRM、基础设施 API 的场景。作者指出常见框架默认会把工具暴露等同于调用授权,形成 confused-deputy failure。它的工程结论很明确:每个模型发出的 side-effecting call 都需要重新授权,而不是只在启动时开关能力。

Tool Use Enables Undetectable Steganography in Multi-Agent LLM Systems15arxiv.org原文 ↗

arxiv.org

论文研究多 agent 系统中通过工具调用形成隐蔽通信通道的风险。传统防御会监控明文消息,但工具参数、调用顺序和外部返回值也可能携带编码信息,使 collusion 不必出现在自然语言里。这个结论让“开放工具”不再只是功能增强,也成为多 agent 监控架构必须覆盖的信道。

Experience Graphs: The Data Foundation for Self-Improving Agents16arxiv.org原文 ↗

arxiv.org

论文从数据库系统视角提出 Experience Graphs,服务长程自改进 agent 的数据记录。作者列举代码生成、科学发现、硬件设计等 workload:agent 会生成 artifact、执行工具、观察失败、分支探索并回收经验。图结构比线性 transcript 更适合表达“同一问题的多条尝试路径”,也为复盘、检索和训练后续策略提供更稳的基底。

本期重点Entity Binding Failures in Tool-Augmented Agents3arxiv.org原文 ↗

arxiv.org

论文指出 tool-augmented agent 即便选对工具、生成合法 API 参数,仍可能作用到错误外部实体。摘要中的例子是“email Alex about the launch”却联系到错误的 Alex,这类失败在联系人、文件、账户和数据库对象中都很自然。它补上了工具评测中的一个盲区:语法有效和任务完成并不等于对象绑定正确。

MCP Server Architecture Patterns for LLM-Integrated Applications17arxiv.org原文 ↗

arxiv.org

论文梳理 MCP server 的社区架构模式。MCP 由 Anthropic 在 2024 年 11 月提出,用于把 LLM 连接到外部工具、数据源和服务;数月内 GitHub 上已经出现数百个社区服务器。它的价值在软件维护层面:当 MCP server 成为连接胶水,项目需要讨论边界、版本、权限和数据访问模式,而不只是写一个能跑的 connector。

开源 / 项目 · Projects

15 项 · 开源 / 项目

Kage, verification and freshness for Google's OKF agent memory18kage-core.com原文 ↗

kage-core.com

Kage 把 agent memory 做成文件化、git-native 的文档格式,并吸收 Google Open Knowledge Format。项目强调 OKF 定义了记忆结构,但没有完全处理 verification、freshness、provenance 这类问题,因此 Kage 补充“记忆何时产生、如何产生、是否仍新鲜”的验证层。它适合作为 agent memory 从聊天记录走向可审计知识库的一个实现样本。

本期重点Trains5github.com原文 ↗

github.com

Trains 是 Rust 写的 total-order broadcast 实现,主打 leaderless 协议和形式化验证。它处理的是多个节点在没有固定 leader 的情况下仍对事件顺序达成一致的问题。项目看点在于把分布式协议、实现语言和验证工件放在同一个仓库脉络中,而不是只给论文伪代码。

本期重点fenic4github.com原文 ↗

github.com

fenic 在 lazy dataframe API 中加入 LLM-backed operators,使模型调用成为查询计划的一部分。项目说明中特别强调,LLM 不是 opaque UDF 黑盒,而是能和结构化、非结构化数据处理放在同一上下文中组合。这个设计使“对文本调用模型”和“对表格做查询”不再是两套割裂流水线。

Agent Sandbox Options19github.com原文 ↗

github.com

这个仓库收集 agent sandbox 与隔离执行环境方案,面向需要让 agent 运行代码或接触外部系统的场景。它的实用性在索引层:开发者可以把容器、虚拟机、浏览器环境、权限边界和运行时隔离放到同一张地图上比较。随着 coding agent 和 browser agent 普及,这类清单会变成安全评审的起点材料。

Paneflow20github.com原文 ↗

github.com

Paneflow 是用 GPUI 构建的跨平台应用,用于并行运行和管理 coding agents。它把多个 agent 会话组织成 pane 式界面,让开发者能同时观察、切换和协调长时间运行的任务。这个项目反映出 agent 工具链正在从“一个终端一个会话”走向多任务控制台。

Trajeckt21github.com原文 ↗

github.com

Trajeckt 是 Rust 编写的 agent firewall,通过执行计划和轨迹检查约束 agent 动作。作者给出的动机是 LLM guard 会带来幻觉和延迟,因此项目先创建计划,再对每次 action call 进行 MCP 相关约束,原始说明提到单次检查低于 5ms。它代表一种更工程化的防线:把安全判断下沉为计划一致性检查,而不是每次都问另一个模型。

Open Memory Protocol22github.com原文 ↗

github.com

Open Memory Protocol 试图为 Claude、ChatGPT、Cursor 等工具提供统一 memory store。它关注的是跨工具长期记忆的互操作性:同一份用户或 agent 状态不应被锁死在某个前端应用中。这个方向会把记忆从“产品功能”推向“可迁移协议”,但同时也会放大权限、删除和来源追踪问题。

TinyAgents23github.com原文 ↗

github.com

TinyAgents 是 Rust 编写的递归 LLM harness,作者把它描述为 RLM 风格工作流实验。项目让 agent 组织子 agent 和流程,设计灵感来自 LangGraph、LangChain,但落在 Rust 生态。它的实际意义在于补 Rust agent 编排工具的空位,也测试递归 agent 结构是否能以更强类型和更低运行时开销表达。

Agentic Orchestrator24github.com原文 ↗

github.com

DoorDash 的 Agentic Orchestrator 是一个 TUI,把复杂 feature request 分解为需求澄清、研究、设计、多阶段计划、实现和 review。它不是简单启动一个 coding agent,而是用工程流程阶段来约束长时间任务。项目还提供发布后的辅助工具,说明企业内部使用 agent 时更关心可控流程和统一观察面板。

Is grep enough?25entelligentsia.github.io原文 ↗

entelligentsia.github.io

这个实验比较 grep、LSP、tree-sitter 等代码导航方式,动机是 LSP 太复杂、纯 Bash 太粗糙。作者在 10 个大型代码库、5 个探索复杂度层级上跑了 150 次上下文隔离实验,并公开脚本、Docker 构建和 transcript。它比常见“我觉得 grep 够用”争论更有信息量,因为把导航工具的效果放到了可复现实验里。

CI/Lock26cilock.dev原文 ↗

cilock.dev

CI/Lock 为 CI 执行过程生成签名证据,延续 Witness、CNCF/in-toto 和 NIST 800-204D pipeline observer 的工作线索。原文举的供应链攻击中,aquasecurity/trivy-action 曾有 75/76 个版本标签被 force-push,导致信任 tag 的流水线暴露风险。这个工具的核心不是再加一个扫描器,而是让“流水线实际发生了什么”可证明。

Open Schematics V227huggingface.co原文 ↗

huggingface.co

Open Schematics V2 是电子原理图和 PCB layout 数据集,项目方称其为互联网上最大的相关集合之一。它以自增长方式持续扫描网络工程设计并更新,面向参考设计复用、检索、版图检查和模型训练。对硬件设计工具而言,这类数据集补的是公开工程样例稀缺的问题。

Shot-scraper video tool for recording YAML-defined webapp feature demos28simonwillison.net原文 ↗

simonwillison.net

shot-scraper video 用 YAML storyboard 驱动 Playwright 操作 web 应用并录制视频。它把功能演示流程写成可版本化脚本,而不是临时手录屏幕。放在 agent 工作流里看,这类工具能让自动化修改附带可观看证据,补足“测试通过但 UI 行为未被展示”的缺口。

Kinetic Merge29github.com原文 ↗

github.com

Kinetic Merge 面向重构分支与功能分支交叉时的合并冲突。作者描述的典型场景包括子类提升、方法抽取、按可见性重排、把代码打包进类并移动到新文件,同时另一条分支还在原位置改逻辑。它试图识别代码在重构中的语义连续性,而不是只按行文本做三方合并。

Rheo 0.4.030github.com原文 ↗

github.com

Rheo 是基于 Typst 的多格式排版与静态站点引擎,支持 EPUB、PDF、HTML 和演示文稿。项目还提供静态站点 Atom feeds,以及从单一 Typst 源生成脚本 PDF 和 RevealJS 站点的能力。它适合关注“同一内容源,多种出版目标”的文档工程场景。

行业动态 · Industry News

12 项 · 行业动态

Claude Sonnet 531anthropic.com原文 ↗

anthropic.com

Anthropic 发布 Claude Sonnet 5,并将其定位为接近 Opus 4.8 性能但价格更低的模型。HN 条目记录了 639 points 和 339 comments,说明这次发布在开发者社区引发了大量即时讨论。它的产业信号是中高端模型正在继续压低单位成本,而不是只把旗舰能力留给最高价位。

Claude Science32claude.com原文 ↗

claude.com

Claude Science 是 Anthropic 面向科研工作流的产品页面,覆盖研究、文献、数据分析和科学写作等场景。它不是单一 API 功能更新,而是把通用模型包装为垂直领域入口。这个发布说明模型公司正在用行业工作流页面争夺专业用户,而不只比较榜单分数。

Nano Banana 2 Lite33deepmind.google原文 ↗

deepmind.google

Google DeepMind 发布 Gemini Image Flash Lite 模型页面,digest 中以 Nano Banana 2 Lite 标注。该条属于图像生成产品线的轻量化入口,重点在 Flash Lite 变体的可见化和开发者可用性。它延续了图像模型从大型演示走向多档位产品规格的趋势。

How ChatGPT adoption has expanded34openai.com原文 ↗

openai.com

OpenAI Signals 发布 ChatGPT 全球采用数据,摘要提到用户使用增长、能力探索增加,并在不同地区和语言中扩散。该条的关键不是新模型,而是 adoption 的地理和语言分布。它为观察 AI 产品从早期技术用户走向广泛日常使用提供了数据入口。

Introducing GeneBench-Pro35openai.com原文 ↗

openai.com

OpenAI 发布 GeneBench-Pro,用复杂真实数据集评测 AI 在基因组学、生物学和科学研究中的表现。它把评测从通用问答转向专业科研任务,关注模型处理真实数据、领域限制和多步分析的能力。这个 benchmark 显示 AI 评测正在向高价值垂直领域下沉。

Core dump epidemiology: fixing an 18-year-old bug36openai.com原文 ↗

openai.com

OpenAI 工程团队记录了如何用大规模 core dump 分析定位罕见基础设施崩溃。原始摘要指出,调查同时发现了硬件故障和一个 18 年历史的软件 bug。文章的工程看点是把 crash dump 当成群体数据分析对象,而不是只靠单个事故复现。

Run any Dockerfile on Vercel37vercel.com原文 ↗

vercel.com

Vercel 宣布支持直接运行 Dockerfile,使部署模型从框架预设扩展到用户自定义容器环境。开发者可以把系统依赖、构建步骤和运行时形态写进 Dockerfile,再交给平台运行。这个变化把 Vercel 从前端/全栈框架部署进一步推向通用应用托管。

County with 37 Data Centers Asks Schools to “Conserve Electricity”38404media.co原文 ↗

404media.co

404 Media 报道 Virginia Henrico County 在拥有 37 个数据中心的背景下要求学校节约用电。这个数字让报道不只是地方行政邮件,而是数据中心扩张和公共部门能源压力的同框案例。它把 AI 与云基础设施的外部性落到了县级电力和学校预算语境中。

European digital ID wallets rely on safety services of Google and Apple39waag.org原文 ↗

waag.org

Waag 分析欧洲数字身份钱包对 Google 和 Apple 移动平台安全服务的依赖。文章关注硬件安全、操作系统信任根和应用分发能力,而不只是身份钱包应用本身。它把数字主权问题具体化为公共身份系统对两家商业移动平台的底层依赖。

US Supreme Court Just Blew Up EU-US Data Transfers40noyb.eu原文 ↗

noyb.eu

noyb 讨论美国最高法院判决对欧盟-美国数据传输法律基础的影响。文章延续围绕美国政府访问、欧盟基本权利和跨境传输机制的长期争议。它的重要性在于企业合规依赖的“稳定法律通道”可能再次变成需要重新评估的风险项。

South Korea to spend $1T on more memory chip production and humanoid robots41arstechnica.com原文 ↗

arstechnica.com

Ars Technica 报道韩国计划投入 1T 美元级别资金扩充存储芯片生产和 humanoid robots 产业。资金规模本身是关键事实,说明这不是单个企业扩产,而是国家级产业政策。它把 AI 供应链中的 memory、制造能力和机器人路线放进同一个投资框架。

Studio Canal Movies purchased on PlayStation Store removed without refund42playstation.com原文 ↗

playstation.com

PlayStation 公告称部分 StudioCanal 数字内容将从用户视频库中移除,digest 标注为无退款移除。该条再次暴露数字“购买”的许可属性:用户支付后获得的往往是受平台和版权协议约束的访问权。它对游戏、影视和电子书平台都有同类提醒意义。

博客文章 · Blog Posts

12 项 · 博客文章

What’s new in Claude Sonnet 543simonwillison.net原文 ↗

simonwillison.net

Simon Willison 没有只读发布新闻,而是直接看 Anthropic 的“what's new”开发者文档,因为那里通常有更可操作的 API 与行为变化。文章提到 Anthropic 对 Sonnet 5 的定位是接近 Opus 4.8 性能、但价格更低。它适合作为开发者视角的发布解读,重点在迁移和使用细节。

Have your agent record video demos of its work with shot-scraper video44simonwillison.net原文 ↗

simonwillison.net

文章介绍 shot-scraper 1.10 的新 video 命令:读取 storyboard.yml,驱动 Playwright 操作 web app,并录制流程视频。Simon 把它放在 coding agent 交付语境中,主张让 agent 产出可观看 demo。这个工具把“我改好了”的声明转成可回放证据,尤其适合 UI 和交互功能。

HTML table extractor45simonwillison.net原文 ↗

simonwillison.net

这是一个浏览器粘贴转换工具,可从 rich text 中检测 HTML table,并导出 HTML、Markdown、CSV、TSV 或 JSON。文章给的示例是复制 Wikipedia 的 San Francisco Bay Area 城市列表后直接粘贴转换。它的设计价值在小而准:把浏览器剪贴板里已经有结构的信息保留下来,而不是退化成纯文本清洗任务。

Claude Code Is Steganographically Marking Requests46thereallo.dev原文 ↗

thereallo.dev

文章分析 Claude Code 请求中疑似通过提示词细节携带标记信息的行为,并将其称作 steganographic marking。讨论焦点不是模型能力,而是开发工具链是否在用户请求里加入隐式元数据。它提示 agent 客户端的可观察性需要覆盖 prompt 组装层,否则外部行为很难被独立审计。

We Are the Last People Who Know How It Works47unix.foo原文 ↗

unix.foo

这篇个人文章讨论现代软件系统复杂化后,理解底层机制的人正在减少。它把问题放在抽象层、云服务、框架和自动化工具不断叠加的背景下,而不是单纯怀旧。真正的工程含义是,故障发生时,组织越来越依赖少数能跨层追踪因果的人。

Memory Safe Context Switching48fil-c.org原文 ↗

fil-c.org

Fil-C 文章讨论 memory-safe context switching,目标是让上下文切换不成为逃离内存安全模型的特权后门。上下文切换涉及栈、控制流和运行时边界,传统实现很容易落在语言安全保证之外。文章的技术点在于把这类底层机制纳入可验证安全边界,而不是默认交给不受约束的 unsafe 区域。

Parse, Don’t Validate - In a Language That Doesn’t Want You To49cekrem.github.io原文 ↗

cekrem.github.io

文章把“parse, don't validate”原则移植到 TypeScript:不要只做布尔校验后继续传原始值,而应把输入解析成更精确的类型。它也承认 TypeScript 的类型系统会让这种模式比在强类型函数式语言中更别扭。可取之处是把类型安全讨论落到前端/Node 生态每天会遇到的数据边界上。

Looking Ahead to Postgres 1950snowflake.com原文 ↗

snowflake.com

Snowflake 工程博客梳理 PostgreSQL 19 beta 中值得关注的功能方向。它不是单纯复制 release notes,而是从数据库厂商和工程团队角度看哪些变化可能影响实际部署。对 Postgres 生态而言,这类前瞻文章能帮助读者提前判断兼容层、扩展和托管服务会受哪些上游变化牵动。

Working With AI: A concrete example51htmx.org原文 ↗

htmx.org

htmx 文章用一次具体开发过程讨论如何与 AI 工具协作。它避免抽象争论,而是展示任务拆解、输出审查、修正方向和人工判断如何穿插在实现过程中。这个案例的意义在于把 AI 定位为工程过程中的可用工具,而不是把最终责任交给模型。

Popping the GPU Bubble52moondream.ai原文 ↗

moondream.ai

Moondream 文章讨论小模型和边缘推理对 GPU 需求叙事的冲击。它把视角从更大训练集群转到可部署、低成本、贴近设备端的视觉语言模型。该文的判断是,AI 应用价值不必完全绑定在集中式 GPU 消耗继续指数增长的路径上。

A native graphical shell for SSH53probablymarcus.com原文 ↗

probablymarcus.com

文章提出用原生 GUI 表达远程 SSH shell 交互。它不是要丢掉 shell 的远程执行能力,而是把文件、进程、状态和交互控件从纯文本流里结构化呈现。这个设计方向适合重新思考终端:哪些信息应该继续是文本,哪些其实更适合图形对象。

not much happened today54news.smol.ai原文 ↗

news.smol.ai

smol.ai newsletter 汇总 2026-06-27 至 2026-06-29 的 AI 社区动态,并称当天相对安静。原始摘要显示编辑检查了 12 个 subreddits、544 个 Twitters 和 no further Discords;AI Twitter recap 中 Meta 的 Brain2Qwerty v2 非侵入式 brain-to-text 进展获得最多技术注意。它是社区脉搏型条目,价值在覆盖面和信号筛选。

引用来源 · References

64 条 · 引用
  1. 1 OSWorld2.0: Benchmarking Computer Use Agents on Long-Horizon Real-World Tasks. arXiv:2606.29537https://arxiv.org/abs/2606.29537 ↩ 回到正文 · back to text
  2. 2 Agent Safety Is Action Alignment. arXiv:2606.28739https://arxiv.org/abs/2606.28739 ↩ 回到正文 · back to text
  3. 3 Entity Binding Failures in Tool-Augmented Agents. arXiv:2606.30531https://arxiv.org/abs/2606.30531 ↩ 回到正文 · back to text
  4. 4 fenic. GitHub: typedef-ai/fenichttps://github.com/typedef-ai/fenic ↩ 回到正文 · back to text
  5. 5 Trains. GitHub: yeychenne/trains-rusthttps://github.com/yeychenne/trains-rust ↩ 回到正文 · back to text
  6. 6 Recursive Self-Evolving Agents via Held-Out Selection. arXiv:2606.28374https://arxiv.org/abs/2606.28374 ↩ 回到正文 · back to text
  7. 7 Agentic Abstention: Do Agents Know When to Stop Instead of Act?. arXiv:2606.28733https://arxiv.org/abs/2606.28733 ↩ 回到正文 · back to text
  8. 8 Memory as an Attack Surface in LLM Agents. arXiv:2606.29030https://arxiv.org/abs/2606.29030 ↩ 回到正文 · back to text
  9. 9 Selective Memory Retention for Long-Horizon LLM Agents. arXiv:2606.29178https://arxiv.org/abs/2606.29178 ↩ 回到正文 · back to text
  10. 10 PolicyGuard: A Dialogue-Grounded Sub-Agent Verifier for Policy Adherence in LLM Agents. arXiv:2606.29225https://arxiv.org/abs/2606.29225 ↩ 回到正文 · back to text
  11. 11 Agent-Computer Observation Interfaces Enable Dynamic Computer Use. arXiv:2606.29472https://arxiv.org/abs/2606.29472 ↩ 回到正文 · back to text
  12. 12 SWE-MeM: Learning Adaptive Memory Management for Long-Horizon Coding Agents. arXiv:2606.28434https://arxiv.org/abs/2606.28434 ↩ 回到正文 · back to text
  13. 13 Building to the Test: Coding Agents Deliver What You Check, Not What You Requested. arXiv:2606.28430https://arxiv.org/abs/2606.28430 ↩ 回到正文 · back to text
  14. 14 Capability Gates Are Not Authorization: Confused-Deputy Failures in LLM Agent Frameworks. arXiv:2606.28679https://arxiv.org/abs/2606.28679 ↩ 回到正文 · back to text
  15. 15 Tool Use Enables Undetectable Steganography in Multi-Agent LLM Systems. arXiv:2606.28425https://arxiv.org/abs/2606.28425 ↩ 回到正文 · back to text
  16. 16 Experience Graphs: The Data Foundation for Self-Improving Agents. arXiv:2606.29823https://arxiv.org/abs/2606.29823 ↩ 回到正文 · back to text
  17. 17 MCP Server Architecture Patterns for LLM-Integrated Applications. arXiv:2606.30317https://arxiv.org/abs/2606.30317 ↩ 回到正文 · back to text
  18. 18 Kage, verification and freshness for Google's OKF agent memoryhttps://kage-core.com/ ↩ 回到正文 · back to text
  19. 19 Agent Sandbox Options. GitHub: fishman/awesome-agent-sandboxhttps://github.com/fishman/awesome-agent-sandbox ↩ 回到正文 · back to text
  20. 20 Paneflow. GitHub: ArthurDEV44/paneflowhttps://github.com/ArthurDEV44/paneflow ↩ 回到正文 · back to text
  21. 21 Trajeckt. GitHub: beebeeVB/trajeckthttps://github.com/beebeeVB/trajeckt/ ↩ 回到正文 · back to text
  22. 22 Open Memory Protocol. GitHub: SMJAI/open-memory-protocolhttps://github.com/SMJAI/open-memory-protocol ↩ 回到正文 · back to text
  23. 23 TinyAgents. GitHub: tinyhumansai/tinyagentshttps://github.com/tinyhumansai/tinyagents ↩ 回到正文 · back to text
  24. 24 Agentic Orchestrator. GitHub: doordash-oss/agentic-orchestratorhttps://github.com/doordash-oss/agentic-orchestrator ↩ 回到正文 · back to text
  25. 25 Is grep enough?https://entelligentsia.github.io/is-grep-enough/ ↩ 回到正文 · back to text
  26. 26 CI/Lockhttps://cilock.dev/ ↩ 回到正文 · back to text
  27. 27 Open Schematics V2. Hugging Face dataset: bshada/open-schematicshttps://huggingface.co/datasets/bshada/open-schematics ↩ 回到正文 · back to text
  28. 28 Shot-scraper video tool for recording YAML-defined webapp feature demoshttps://simonwillison.net/2026/Jun/30/shot-scraper-video/ ↩ 回到正文 · back to text
  29. 29 Kinetic Merge. GitHub: sageserpent-open/kineticMergehttps://github.com/sageserpent-open/kineticMerge ↩ 回到正文 · back to text
  30. 30 Rheo 0.4.0. GitHub: freecomputinglab/rheohttps://github.com/freecomputinglab/rheo ↩ 回到正文 · back to text
  31. 31 Claude Sonnet 5https://www.anthropic.com/news/claude-sonnet-5 ↩ 回到正文 · back to text
  32. 32 Claude Sciencehttps://claude.com/product/claude-science ↩ 回到正文 · back to text
  33. 33 Nano Banana 2 Litehttps://deepmind.google/models/gemini-image/flash-lite/ ↩ 回到正文 · back to text
  34. 34 How ChatGPT adoption has expandedhttps://openai.com/index/how-chatgpt-adoption-has-expanded ↩ 回到正文 · back to text
  35. 35 Introducing GeneBench-Prohttps://openai.com/index/introducing-genebench-pro ↩ 回到正文 · back to text
  36. 36 Core dump epidemiology: fixing an 18-year-old bughttps://openai.com/index/core-dump-epidemiology-data-infrastructure-bug ↩ 回到正文 · back to text
  37. 37 Run any Dockerfile on Vercelhttps://vercel.com/blog/dockerfile-on-vercel ↩ 回到正文 · back to text
  38. 38 County with 37 Data Centers Asks Schools to “Conserve Electricity”https://www.404media.co/henrico-virginia-datacenter-energy-cost-email/ ↩ 回到正文 · back to text
  39. 39 European digital ID wallets rely on safety services of Google and Applehttps://waag.org/en/article/european-digital-id-wallets-are-gift-google-and-apple/ ↩ 回到正文 · back to text
  40. 40 US Supreme Court Just Blew Up EU-US Data Transfershttps://noyb.eu/en/us-supreme-court-just-blew-eu-us-data-transfers ↩ 回到正文 · back to text
  41. 41 South Korea to spend $1T on more memory chip production and humanoid robotshttps://arstechnica.com/ai/2026/06/south-korea-to-spend-1t-on-more-memory-chip-production-and-humanoid-robots/ ↩ 回到正文 · back to text
  42. 42 Studio Canal Movies purchased on PlayStation Store removed without refundhttps://www.playstation.com/en-gb/legal/psvideocontent/ ↩ 回到正文 · back to text
  43. 43 What’s new in Claude Sonnet 5https://simonwillison.net/2026/Jun/30/claude-sonnet-5/#atom-everything ↩ 回到正文 · back to text
  44. 44 Have your agent record video demos of its work with shot-scraper videohttps://simonwillison.net/2026/Jun/30/shot-scraper-video/#atom-everything ↩ 回到正文 · back to text
  45. 45 HTML table extractorhttps://simonwillison.net/2026/Jun/29/html-table-extractor/#atom-everything ↩ 回到正文 · back to text
  46. 46 Claude Code Is Steganographically Marking Requestshttps://thereallo.dev/blog/claude-code-prompt-steganography ↩ 回到正文 · back to text
  47. 47 We Are the Last People Who Know How It Workshttps://unix.foo/posts/last-people-who-know-how-it-works/ ↩ 回到正文 · back to text
  48. 48 Memory Safe Context Switchinghttps://fil-c.org/context_switches ↩ 回到正文 · back to text
  49. 49 Parse, Don’t Validate - In a Language That Doesn’t Want You Tohttps://cekrem.github.io/posts/parse-dont-validate-typescript/ ↩ 回到正文 · back to text
  50. 50 Looking Ahead to Postgres 19https://www.snowflake.com/en/blog/engineering/postgresql-19-features-beta/ ↩ 回到正文 · back to text
  51. 51 Working With AI: A concrete examplehttps://htmx.org/essays/working-with-ai/ ↩ 回到正文 · back to text
  52. 52 Popping the GPU Bubblehttps://moondream.ai/blog/popping-the-gpu-bubble ↩ 回到正文 · back to text
  53. 53 A native graphical shell for SSHhttps://probablymarcus.com/blocks/2026/06/28/native-graphical-shell-for-SSH.html ↩ 回到正文 · back to text
  54. 54 not much happened todayhttps://news.smol.ai/issues/26-06-29-not-much/ ↩ 回到正文 · back to text
  55. 55 Unclecheng-li/VulnClaw. GitHub: Unclecheng-li/VulnClawhttps://github.com/Unclecheng-li/VulnClaw ↩ 回到正文 · back to text
  56. 56 0xNyk/council-of-high-intelligence. GitHub: 0xNyk/council-of-high-intelligencehttps://github.com/0xNyk/council-of-high-intelligence ↩ 回到正文 · back to text
  57. 57 veracrypt/VeraCrypt. GitHub: veracrypt/VeraCrypthttps://github.com/veracrypt/VeraCrypt ↩ 回到正文 · back to text
  58. 58 appwrite/appwrite. GitHub: appwrite/appwritehttps://github.com/appwrite/appwrite ↩ 回到正文 · back to text
  59. 59 vanloctech/youwee. GitHub: vanloctech/youweehttps://github.com/vanloctech/youwee ↩ 回到正文 · back to text
  60. 60 lumina-ai-inc/chunkr. GitHub: lumina-ai-inc/chunkrhttps://github.com/lumina-ai-inc/chunkr ↩ 回到正文 · back to text
  61. 61 microsoft/qdk. GitHub: microsoft/qdkhttps://github.com/microsoft/qdk ↩ 回到正文 · back to text
  62. 62 metalbear-co/mirrord. GitHub: metalbear-co/mirrordhttps://github.com/metalbear-co/mirrord ↩ 回到正文 · back to text
  63. 63 FuelLabs/sway. GitHub: FuelLabs/swayhttps://github.com/FuelLabs/sway ↩ 回到正文 · back to text
  64. 64 matrix-org/matrix-rust-sdk. GitHub: matrix-org/matrix-rust-sdkhttps://github.com/matrix-org/matrix-rust-sdk ↩ 回到正文 · back to text