[Grounded Iterative Language Planning](https://arxiv.org/abs/2606.27806)[^1] - 把 LLM API 式 world model 与可训练 transition model 分开评估,核心看点是用可度量的状态预测错误抑制规划中的幻觉传播。
全文 ↓今日重点 · Today's Highlights
[Supersede](https://arxiv.org/abs/2606.27472)[^2] - 直接命名多会话 agent 的旧事实淘汰问题,并在真实对话数据上把“记忆更新”从一般长上下文能力中拆出来。
全文 ↓[RedKnot](https://arxiv.org/abs/2606.06256)[^3] - 面向长上下文服务端瓶颈,把 head-aware KV reuse 和 SegPagedAttention 放进同一个 KV cache 体系。
全文 ↓[Ornith-1.0](https://github.com/deepreinforce-ai/Ornith-1)[^4] - 开放权重 agentic coding 模型系列覆盖 dense 与 MoE 规模,技术焦点在自脚手架式 coding agent 而非单轮补全。
全文 ↓[mcp-compress-router](https://github.com/ameshkov/mcp-compress-router)[^5] - 用路由和压缩处理 MCP 工具描述膨胀,示例中三个常见 MCP server 每轮可带来约 26K token 开销。
全文 ↓论文 · Papers
12 项 · 论文When Does Personality Composition Matter for Multi-Agent LLM Teams?6arxiv.org原文 ↗
这篇论文研究人格提示如何改变多 agent LLM 团队的沟通模式,以及这种改变是否会落到客观任务结果上。摘要明确引用了一个已知现象:低宜人性 prompt 会诱导更对抗的语言,高宜人性则更合作;本文的贡献在于把人格组合、通信风格和团队表现放进同一个问题。它值得看的是评估对象从“agent 是否说话像某种人格”转向“这种社会行为差异是否真的改变协作产出”。
Internalizing the Future7arxiv.org原文 ↗
论文提出统一的 agentic training 范式,让 LLM agent 在执行长程任务前内部模拟未来状态。摘要的关键判断是,标准 agent 在 sequential decision-making 中仍然偏反应式,缺少人类式的 “what-if” 计划比较机制。技术含义是 world model 不再只是外部评估器,而被纳入训练流程,服务于行动前的计划筛选。
Towards Reliable and Robust LLM Planning8arxiv.org原文 ↗
这项工作用符号反馈驱动 LLM planning 的迭代自修正,目标是减少长程决策中的不可行计划和错误解。摘要把 planning 明确放在 security、robustness 和 reliability 的语境中,而不是单纯作为推理 benchmark。可检查的 symbolic feedback 是重点,因为它给语言计划提供了比自我反思更硬的约束。
本期重点Grounded Iterative Language Planning1arxiv.org原文 ↗
论文区分两类 language-agent world model:调用 LLM API 的 agent-based model,以及训练出的参数化 transition predictor。前者能灵活用语言推理,但错误会表现为难以用普通 regression loss 评分的状态幻觉;后者的错误可量化,因此能更稳定地参与迭代规划。该工作切中的问题是 agent 规划中最危险的失败模式之一:早期错误状态被后续步骤当作事实继续传播。
Agent-Native Immune System10arxiv.org原文 ↗
论文提出 agent-native immune system 的架构、威胁分类与工程设计。摘要指出 agent 从静态聊天机器人演进为带持久记忆、工具协议和多 agent 协作的系统后,威胁面已经扩展;传统 perimeter security 与训练期 alignment 仍多在推理循环之外。它有价值的地方是把防御对象从“模型输出”扩大到 agent 的记忆、工具调用和协作链路。
Position: The Term “Machine Unlearning” Is Overused in LLMs11arxiv.org原文 ↗
这篇 position paper 反对在 LLM 研究里泛化使用 “machine unlearning”。作者主张该词应保留给 dataset-defined deletion,也就是围绕明确训练数据删除义务的问题;版权争议、安全策略、行为抑制和知识更新不应一概归入同一术语。它的重要性在于清理评估目标:如果删除对象不是可定义的数据集成员,很多所谓 unlearning 其实是在做模型编辑或策略约束。
Agentic Publication Protocol12arxiv.org原文 ↗
论文提出把科研发布从静态 manuscript 扩展为论文、代码、复现实验和 agent 操作流程的组合。摘要强调科学知识中有大量 tacit know-how,例如如何运行代码、复现图表、解释边界情况、选择后续方向以及避开失败路径。这个 protocol 的技术意味是把可复现性从“附上仓库”推进到“发布可被 agent 执行和追问的研究过程”。
Towards Evaluation of Implicit Software World Models in Coding LLMs13arxiv.org原文 ↗
这篇论文把 coding LLM 对软件行为的内部理解称为 software world model,并指出现有 code-execution benchmark 主要覆盖 control flow。作者试图构建更宽的评估方向,衡量模型是否理解状态变化、模块依赖和运行时行为,而不只是能写出通过单测的函数。它与 coding agent 直接相关,因为真实软件维护要求模型预测改动在系统里的连锁后果。
ToolPrivacyBench14arxiv.org原文 ↗
ToolPrivacyBench 评测 tool-using LLM agents 的 purpose-bound privacy。摘要指出现有 function-calling benchmark 主要看任务完成和 API 正确性,隐私 benchmark 又常看最终回答,二者都容易漏掉工具调用过程中的越界访问。它把隐私问题放在 agent 行动轨迹里观察,适合检验“为了完成 A 目的而获得的数据,是否被挪用到 B 目的”。
本期重点RedKnot3arxiv.org原文 ↗
RedKnot 针对长上下文 LLM serving 中 KV cache 成为主瓶颈的问题提出系统方案。摘要列出 KV cache 对 GPU memory capacity、serving concurrency、cache reuse 和 distributed scalability 的限制,并把 position-independent KV cache、prefix compression、hot/cold KV 管理等问题放在同一框架中。head-aware KV reuse 与 SegPagedAttention 的组合说明,长上下文优化正在从模型侧技巧转向服务端内存体系设计。
开源 / 项目 · Projects
12 项 · 开源 / 项目本期重点Ornith-1.04github.com原文 ↗
Ornith-1.0 是 DeepReinforce 发布的开放权重 agentic coding 模型系列,覆盖 dense 与 MoE 版本。公开介绍中列出 9B Dense、31B Dense、35B MoE、397B MoE 等变体,并强调 self-scaffolding LLMs for agentic coding。它的工程意义在于把开源 coding model 的关注点从“补一段代码”推进到“能自己组织步骤、工具和上下文”。
JumpServer15github.com原文 ↗
JumpServer 是开源 privileged access management 平台,定位在企业高权限访问的统一入口。它处理的对象通常包括资产、账号、权限和操作审计,而不是单点登录的一个窄功能。对于基础设施团队,这类项目的关键不是界面功能多少,而是能否把高风险访问链路集中记录并纳入策略控制。
本期重点mcp-compress-router5github.com原文 ↗
mcp-compress-router 面向多 MCP server 接入时的工具描述 token 膨胀。作者举例 Notion、GitHub 和 Pylance 三个 MCP server 每轮会造成约 26K token overhead,但多数请求并不需要全部工具。它的做法是引入请求路由和工具描述压缩,让模型只看到更可能相关的工具集合。
Katra Agentic Memory19github.com原文 ↗
Katra Agentic Memory 是自托管的 agent 认知记忆服务,并提供 MCP 接口。项目把长期记忆拆成独立服务,agent 可跨会话存取事实、偏好和上下文。这个架构比把记忆堆在 prompt 里更可控,也更容易让多个 agent 或工具共享同一记忆层。
DriftGuard20github.com原文 ↗
DriftGuard 检测 LangGraph agent 的回答是否偏离预设领域。项目说明强调不需要 ground-truth labels 或单独 classifier,例如法律助手开始回答烹饪问题、医疗 chatbot 转向金融建议时可以触发 domain drift 检测。它补的是生产 agent 的护栏空白:回答看似流畅但已经离开授权领域。
Reference MCP22github.com原文 ↗
Reference MCP 让 AI agents 查询彼此前序会话记录。作者的动机是让 Claude Code 能引用 Codex chats 中已经做过的决定和理由;项目通过 MCP 把历史 session 接给当前 agent。它体现了一个正在出现的需求:agent 之间不只共享文件,也要共享推理历史和决策上下文。
Dotdotduck24github.com原文 ↗
Dotdotduck 是开源 Web Agent SDK,面向浏览器或网页环境中的 agent 构建。它把 web agent 的动作、状态和接口组织成开发者可接入的 SDK,而不是只提供一个演示型网页自动化脚本。随着 browser-use 类工具增多,SDK 化的意义在于让 agent 能被嵌入真实产品流程。
行业动态 · Industry News
12 项 · 行业动态US Supreme Court rules geofence warrants require constitutional protections25theguardian.com原文 ↗
The Guardian 报道美国最高法院裁定 geofence warrants 需要宪法保护。核心问题是执法机关围绕某个地点和时间批量索取设备位置记录时,不能把这种数据请求当成普通调取流程。该裁定把位置数据库查询重新放回第四修正案式的隐私框架,对广告技术、移动平台和执法数据接口都有外溢影响。
European ISPs Want Rightsholders Held Accountable for Overblocking Damage26torrentfreak.com原文 ↗
TorrentFreak 报道欧洲 ISP 要求权利人对过度封锁造成的损害承担责任。争议焦点不是是否执行版权封锁,而是当封锁命令误伤合法站点、服务或普通用户访问时,责任不能只落在网络运营商身上。它反映了自动化 blocking 体系里的一个制度缺口:错误成本到底由谁承担。
Samsung, SK Hynix, Micron Sued in US over Memory Price Fixing27en.sedaily.com原文 ↗
SeDaily 报道 Samsung、SK Hynix 和 Micron 在美国被诉涉嫌内存价格操纵。三家公司都是全球存储市场核心供应商,案件因此不只是企业诉讼,也触及 DRAM / NAND 供应集中度与下游硬件成本。对于 AI 基础设施而言,内存价格的法律风险会直接传导到服务器、GPU 集群和消费电子供应链。
Rocket Lab to acquire Iridium28investors.rocketlabcorp.com原文 ↗
Rocket Lab 的投资者公告称将收购 Iridium,并把该交易描述为 historic deal。交易指向卫星、发射和空间服务能力的整合,让 Rocket Lab 从发射服务商进一步靠近端到端空间基础设施公司。它值得关注的地方在于商业航天正在从单点能力竞争转向平台化和资产组合竞争。
HP Inc. launches Frontier strategic partnership with OpenAI29openai.com原文 ↗
OpenAI 公告称 HP Inc. 扩大 Frontier strategic partnership,将 AI 部署到客户体验、软件开发和企业运营。这里的关键词不是某个新模型,而是大企业把模型能力嵌入内部业务流程的范围。HP 这种传统硬件与企业服务公司加入 Frontier 合作,说明 AI 落地正在进入流程再设计阶段。
Tidal AI Policy30tidal.com原文 ↗
Tidal 发布关于 AI 音乐、艺术家权利与平台政策的公开说明。它把生成式音乐带来的授权、署名、收益分配和分发规则放到平台治理层面,而不是只把 AI 内容当成上传审核问题。音乐平台越早明确这些边界,越能减少艺术家、模型服务和用户之间的灰区冲突。
Instagram is incorporating users’ photos in ads for Meta Glasses31twitter.com原文 ↗
这条 Twitter / X 视频引发 HN 讨论,主题是 Instagram 用户照片被用于 Meta Glasses 广告素材。事件触发的不是单一广告创意争议,而是用户生成内容在平台生态内被二次用于商业推广时的同意边界。它提示平台条款里的授权语言,正在被硬件和 AI 广告场景重新检验。
Data breach exposes up to 14.2M email logins at six ISPs32bleepingcomputer.com原文 ↗
BleepingComputer 报道六家 ISP 的邮箱登录信息泄露,规模最高可达 14.2M。标题中的 email logins 表明风险落在账号访问层,而不是单纯的用户资料外泄。ISP 邮箱往往还承担密码重置和账单通知角色,因此凭据泄露会放大到其他在线服务。
AI boom risks global financial crash, warn central bankers33telegraph.co.uk原文 ↗
Telegraph 报道央行人士警告 AI 投资热潮可能带来全球金融崩盘风险。文章把 AI 资本开支、科技股估值和金融稳定联系起来,关注的是泡沫化投资在宏观层面的传导。它与技术新闻的关系在于,算力建设和模型竞赛已经大到足以进入央行风险视野。
Professor denounces mass AI fraud on an exam at Brown34english.elpais.com原文 ↗
El Pais 报道 Brown University 一起大规模 AI 作弊争议,一名教授公开称 academic integrity is at risk。事件把高校考试设计、AI 检测能力和学生工具使用规范推到同一张桌上。它说明教育机构面对的不是“是否允许 AI”这种简单选择,而是评估机制需要重新适配可随时调用的生成式工具。
Tell Congress: Don’t Force Age Checks Online35act.eff.org原文 ↗
EFF 行动页面呼吁国会不要强制在线年龄验证。其立场是年龄检查会把身份验证、隐私泄露和访问限制引入大量普通互联网活动,儿童安全目标不应演变为普遍身份门槛。这个议题的技术侧重点在于,年龄验证很难只验证年龄而不收集更多可追踪身份信息。
Mag 7 starting to underperform36apollo.com原文 ↗
Apollo 的 Daily Spark PDF 关注 Mag 7 股票表现开始落后。市场含义是过去由少数大型科技股牵引的指数结构可能正在发生轮动。对 AI 行业观察者而言,这类简报提供了一个非技术信号:资本市场对巨头和 AI 叙事的定价并非只会上行。
博客文章 · Blog Posts
10 项 · 博客文章Micro-Agent38vllm.ai原文 ↗
vLLM blog 介绍一种在模型 API 内部进行协作的 micro-agent 方法。它关心的是 frontier model 调用内部如何组织多个微型角色,而不是在外部再堆一层复杂 orchestration。这个方向把 agent 架构拉近 inference/runtime 层,可能影响未来服务端如何暴露多角色推理能力。
Qwen 3.6 27B is the sweet spot for local development39quesma.com原文 ↗
Quesma 记录本地开发场景下使用 Qwen 3.6 27B 的体验,并称其是 local development 的 sweet spot。文章评价的是本地运行中的综合权衡:能力、延迟、硬件成本和代码辅助质量要同时成立。它有参考价值,因为开发者是否愿意长期使用本地模型,往往取决于日常摩擦而非排行榜位置。
Ornith-1.0: Self-Scaffolding LLMs for Agentic Coding40simonwillison.net原文 ↗
Simon Willison 介绍 DeepReinforce 的 Ornith 开放权重 coding 模型,并指出这是该团队首个模型发布。文中摘录的变体包括 9B Dense、31B Dense、35B MoE 和 397B MoE,许可为 MIT。它补充了项目 README 之外的观察角度:开源 coding 模型正在明确把 agentic workflow 作为能力目标。
Tokenmaxxing is dead, long live tokenmaxxing4112gramsofcarbon.com原文 ↗
12 Grams of Carbon 讨论 agentic 系统中的上下文与 token 使用模式。文章把 tokenmaxxing 从“尽量塞满上下文窗口”转向更细的系统问题:哪些信息常驻,哪些信息检索,哪些信息应由 agent 动态压缩。它切中当前 agent 工程的真实瓶颈,因为上下文长度增加并不自动等于更好的记忆和判断。
The 80% Problem42jonathanbeard.io原文 ↗
Jonathan Beard 写 AI 辅助开发中“最后 20%”工程工作的变化。工具能快速生成一个看似完成的 80%,但剩余部分集中在集成、边界条件、维护性和责任归属上。文章的价值在于把 AI 编程讨论从速度拉回到工程闭环:真正消耗判断力的往往是把半成品变成可长期运行的软件。
A native graphical shell for SSH43probablymarcus.com原文 ↗
这篇个人 blog 描述一个面向 SSH 的原生图形 shell 设想。它保留远程 shell 的连接与命令能力,同时希望用原生 GUI 呈现文件、进程、输出和状态。这个想法有意思之处在于,它不是把终端美化成应用,而是重新划分远程机器交互中哪些部分应保持文本、哪些部分应图形化。
Optimizing LLVM’s bump allocator45maskray.me原文 ↗
MaskRay 记录 LLVM bump allocator 的优化细节。bump allocator 是编译器基础设施中高频使用的短生命周期分配器,微小的内存布局和分配路径变化会在大型 C++ 构建中被放大。文章适合看 allocator 优化如何服务于真实工程负载,而不是停留在抽象数据结构讨论。
Obfuscation: building the final boss of cryptography46vitalik.eth.limo原文 ↗
Vitalik Buterin 梳理密码学混淆技术的背景与研究脉络,并把 obfuscation 视为密码学里极难的目标。文章面向较广读者解释可混淆程序、理论安全性和现实可用性之间的距离。它的价值在于把一个常被神秘化的研究方向放回历史、定义和可实现性讨论中。
GitHub 热门 · GitHub Trending
10 项 · GitHub 热门Robbyant/lingbot-map47github.com原文 ↗
LingBot-Map 是面向流式数据的 feed-forward 3D reconstruction foundation model,副标题是 Geometric Context Transformer for Streaming 3D Reconstruction。README 强调它处理 streaming data,而不是离线多视角批处理。项目值得关注的是 3D reconstruction 正在吸收 foundation model 叙事,并把几何上下文作为连续场景理解的核心表示。
cupy/cupy48github.com原文 ↗
CuPy 是 Python GPU 数组计算库,提供 NumPy / SciPy 兼容接口。README 明确写到它可作为 drop-in replacement,让现有 NumPy / SciPy 代码运行在 NVIDIA CUDA 或 AMD ROCm 平台上。它长期重要的原因很直接:科学计算生态需要一条从 CPU Python 数组平滑迁移到 GPU 的低摩擦路径。
altic-dev/FluidVoice49github.com原文 ↗
FluidVoice 是 macOS 本地离线语音转文字应用,README 称其带有 on-device AI enhancement。项目采用 GPLv3,并支持通过 Homebrew cask 安装。它的产品定位很清晰:把 dictation 作为本地桌面输入能力,而不是把语音内容送到云端服务。
browser-use/video-use50github.com原文 ↗
video-use 用 coding agents 自动剪辑视频,README 的流程是把 raw footage 放进文件夹、和 Claude Code 对话,然后生成 final.mp4。功能描述包括剪掉 filler words、停顿和 false starts,以及自动调色等后期处理。它展示了 coding agent 能力如何外溢到非代码媒介:视频剪辑被重新表达为文件、脚本和指令链。
surrealdb/surrealdb51github.com原文 ↗
SurrealDB 是 Rust 编写的 multi-model database,覆盖文档、图、关系、时序、地理空间和键值数据。README 还列出全文、向量、混合检索和实时能力,定位为 realtime web 的统一数据层。这个项目的看点在于它不把 vector search 当插件,而是和传统数据模型一起纳入数据库核心叙事。
GCWing/BitFun52github.com原文 ↗
BitFun 是本地 AI workbench 和桌面级 Agent runtime,内置 Code Agent、Cowork Agent 与 Computer Use。README 强调 long-horizon engineering execution、token economy、memory、personality 和持续演化能力。它代表的方向是把 agent 从一次性聊天窗口搬到本地桌面工作台,承担更长周期的工程任务。
DIYgod/RSSHub53github.com原文 ↗
RSSHub 是大规模 RSS 生成与聚合项目,口号是 Everything is RSSible。README 称其由 5,000+ global instances 组成,并由开源社区持续维护 routes、features 和 bug fixes。它在今天仍然 trending,说明开放订阅和可组合信息流仍然是对抗封闭平台时间线的重要基础设施。
craft-ai-agents/craft-agents-oss54github.com原文 ↗
Craft Agents 是 Craft 发布的开源 agent 工作流与协作工具。README 描述的能力包括 multitasking、连接 API / Service、共享 sessions,以及让团队更有效地和 agents 工作。它的重点不是单个 agent 的聪明程度,而是多人、多任务、多服务之间如何组织 agent 协作。
usestrix/strix55github.com原文 ↗
Strix 把 AI agent 用作自动发现和修复应用漏洞的开源安全工具,README 称其为 open-source AI hackers。项目强调可接入 GitHub Actions 和 CI/CD,在每个 pull request 上自动扫描并阻止不安全代码进入生产。它值得观察的是安全扫描正在从静态规则和 SAST 报告,走向能尝试利用、解释和修复的 agent 工作流。
humanlayer/12-factor-agents56github.com原文 ↗
12-factor-agents 总结构建生产级 LLM 应用的原则,借鉴 12 Factor Apps 的表达方式。README 的核心问题是如何把 LLM-powered software 做到足够可靠,可以交付给生产客户。它提供的不是库,而是一套工程准则,适合用来校准 agent 系统的状态管理、控制流、可观测性和人工介入边界。
引用来源 · References
56 条 · 引用- 1 Grounded Iterative Language Planning. arXiv:2606.27806https://arxiv.org/abs/2606.27806 ↩ 回到正文 · back to text
- 2 Supersede. arXiv:2606.27472https://arxiv.org/abs/2606.27472 ↩ 回到正文 · back to text
- 3 RedKnot. arXiv:2606.06256https://arxiv.org/abs/2606.06256 ↩ 回到正文 · back to text
- 4 Ornith-1.0. GitHubhttps://github.com/deepreinforce-ai/Ornith-1 ↩ 回到正文 · back to text
- 5 mcp-compress-router. GitHubhttps://github.com/ameshkov/mcp-compress-router ↩ 回到正文 · back to text
- 6 When Does Personality Composition Matter for Multi-Agent LLM Teams?. arXiv:2606.27443https://arxiv.org/abs/2606.27443 ↩ 回到正文 · back to text
- 7 Internalizing the Future. arXiv:2606.27483https://arxiv.org/abs/2606.27483 ↩ 回到正文 · back to text
- 8 Towards Reliable and Robust LLM Planning. arXiv:2606.27757https://arxiv.org/abs/2606.27757 ↩ 回到正文 · back to text
- 9 ATOD. arXiv:2606.27814https://arxiv.org/abs/2606.27814 ↩ 回到正文 · back to text
- 10 Agent-Native Immune System. arXiv:2606.28270https://arxiv.org/abs/2606.28270 ↩ 回到正文 · back to text
- 11 Position: The Term “Machine Unlearning” Is Overused in LLMs. arXiv:2606.27379https://arxiv.org/abs/2606.27379 ↩ 回到正文 · back to text
- 12 Agentic Publication Protocol. arXiv:2606.27386https://arxiv.org/abs/2606.27386 ↩ 回到正文 · back to text
- 13 Towards Evaluation of Implicit Software World Models in Coding LLMs. arXiv:2606.27406https://arxiv.org/abs/2606.27406 ↩ 回到正文 · back to text
- 14 ToolPrivacyBench. arXiv:2606.28061https://arxiv.org/abs/2606.28061 ↩ 回到正文 · back to text
- 15 JumpServer. GitHubhttps://github.com/jumpserver/jumpserver ↩ 回到正文 · back to text
- 16 Librepods. GitHubhttps://github.com/librepods-org/librepods ↩ 回到正文 · back to text
- 17 Herdr. GitHubhttps://github.com/ogulcancelik/herdr ↩ 回到正文 · back to text
- 18 Lore. GitHubhttps://github.com/itsthelore/rac-core ↩ 回到正文 · back to text
- 19 Katra Agentic Memory. GitHubhttps://github.com/kolegadev/Katra-Agentic-Memory ↩ 回到正文 · back to text
- 20 DriftGuard. GitHubhttps://github.com/vinerya/driftGuard ↩ 回到正文 · back to text
- 21 AST-guard. GitHubhttps://github.com/Nick-is-building/ast-guard ↩ 回到正文 · back to text
- 22 Reference MCP. GitHubhttps://github.com/kuberwastaken/reference ↩ 回到正文 · back to text
- 23 Brain.md. GitHubhttps://github.com/mindmuxai/brain.md ↩ 回到正文 · back to text
- 24 Dotdotduck. GitHubhttps://github.com/PerhapxinLab/dotdotduck ↩ 回到正文 · back to text
- 25 US Supreme Court rules geofence warrants require constitutional protections. The Guardianhttps://www.theguardian.com/us-news/2026/jun/29/supreme-court-geofence-warrants-case-decision ↩ 回到正文 · back to text
- 26 European ISPs Want Rightsholders Held Accountable for Overblocking Damage. TorrentFreakhttps://torrentfreak.com/european-isps-want-rightsholders-held-accountable-for-overblocking-damage/ ↩ 回到正文 · back to text
- 27 Samsung, SK Hynix, Micron Sued in US over Memory Price Fixing. SeDailyhttps://en.sedaily.com/international/2026/06/29/samsung-sk-hynix-micron-sued-in-us-over-memory-price-fixing ↩ 回到正文 · back to text
- 28 Rocket Lab to acquire Iridium. Rocket Lab Investorshttps://investors.rocketlabcorp.com/news-releases/news-release-details/rocket-lab-acquire-iridium-historic-deal-creating-fully ↩ 回到正文 · back to text
- 29 HP Inc. launches Frontier strategic partnership with OpenAI. OpenAIhttps://openai.com/index/hp-frontier-partnership ↩ 回到正文 · back to text
- 30 Tidal AI Policy. Tidalhttps://tidal.com/ai-policy ↩ 回到正文 · back to text
- 31 Instagram is incorporating users’ photos in ads for Meta Glasses. X / Twitterhttps://twitter.com/i/status/2071277885646868536 ↩ 回到正文 · back to text
- 32 Data breach exposes up to 14.2M email logins at six ISPs. BleepingComputerhttps://www.bleepingcomputer.com/news/security/data-breach-exposes-up-to-142-million-email-logins-at-six-isps/ ↩ 回到正文 · back to text
- 33 AI boom risks global financial crash, warn central bankers. The Telegraphhttps://www.telegraph.co.uk/business/2026/06/28/ai-boom-risks-global-financial-crash-central-bankers-warn/ ↩ 回到正文 · back to text
- 34 Professor denounces mass AI fraud on an exam at Brown. El Paishttps://english.elpais.com/education/2026-06-28/ai-fraud-at-brown-university-academic-integrity-is-at-risk.html ↩ 回到正文 · back to text
- 35 Tell Congress: Don’t Force Age Checks Online. EFFhttps://act.eff.org/action/tell-congress-don-t-force-age-checks-online ↩ 回到正文 · back to text
- 36 Mag 7 starting to underperform. Apollo Daily Sparkhttps://www.apollo.com/content/dam/apolloaem/pdf/daily-spark/2026/jun/28/062826-Mag7.pdf ↩ 回到正文 · back to text
- 37 Memora. Microsoft Researchhttps://www.microsoft.com/en-us/research/blog/memora-a-harmonic-memory-representation-balancing-abstraction-and-specificity/ ↩ 回到正文 · back to text
- 38 Micro-Agent. vLLM Bloghttps://vllm.ai/blog/2026-06-29-micro-agent-frontier-models ↩ 回到正文 · back to text
- 39 Qwen 3.6 27B is the sweet spot for local development. Quesmahttps://quesma.com/blog/qwen-36-is-awesome/ ↩ 回到正文 · back to text
- 40 Ornith-1.0: Self-Scaffolding LLMs for Agentic Coding. Simon Willisonhttps://simonwillison.net/2026/Jun/29/ornith/#atom-everything ↩ 回到正文 · back to text
- 41 Tokenmaxxing is dead, long live tokenmaxxing. 12 Grams of Carbonhttps://12gramsofcarbon.com/p/agentics-tech-things-tokenmaxxing ↩ 回到正文 · back to text
- 42 The 80% Problem. Jonathan Beardhttps://www.jonathanbeard.io/blog/2026/06/27/the-80-percent-problem.html ↩ 回到正文 · back to text
- 43 A native graphical shell for SSH. probablymarcushttps://probablymarcus.com/blocks/2026/06/28/native-graphical-shell-for-SSH.html ↩ 回到正文 · back to text
- 44 WATaBoy. Humphries Bloghttps://humphri.es/blog/WATaBoy/ ↩ 回到正文 · back to text
- 45 Optimizing LLVM’s bump allocator. MaskRayhttps://maskray.me/blog/2026-06-28-optimizing-llvm-bump-allocator ↩ 回到正文 · back to text
- 46 Obfuscation: building the final boss of cryptography. Vitalik Buterinhttps://vitalik.eth.limo/general/2026/06/29/obfuscation1.html ↩ 回到正文 · back to text
- 47 Robbyant/lingbot-map. GitHubhttps://github.com/Robbyant/lingbot-map ↩ 回到正文 · back to text
- 48 cupy/cupy. GitHubhttps://github.com/cupy/cupy ↩ 回到正文 · back to text
- 49 altic-dev/FluidVoice. GitHubhttps://github.com/altic-dev/FluidVoice ↩ 回到正文 · back to text
- 50 browser-use/video-use. GitHubhttps://github.com/browser-use/video-use ↩ 回到正文 · back to text
- 51 surrealdb/surrealdb. GitHubhttps://github.com/surrealdb/surrealdb ↩ 回到正文 · back to text
- 52 GCWing/BitFun. GitHubhttps://github.com/GCWing/BitFun ↩ 回到正文 · back to text
- 53 DIYgod/RSSHub. GitHubhttps://github.com/DIYgod/RSSHub ↩ 回到正文 · back to text
- 54 craft-ai-agents/craft-agents-oss. GitHubhttps://github.com/craft-ai-agents/craft-agents-oss ↩ 回到正文 · back to text
- 55 usestrix/strix. GitHubhttps://github.com/usestrix/strix ↩ 回到正文 · back to text
- 56 humanlayer/12-factor-agents. GitHubhttps://github.com/humanlayer/12-factor-agents ↩ 回到正文 · back to text