Less Context, Better Agents: Efficient Context Engineering for Long-Horizon Tool-Using LLM Agents1 - 这篇论文把企业工具调用 agent 的可靠性问题落在一个很具体的场景:Microsoft Dynamics 365 Finance and Operations 里的酒店费用 itemization。
全文 ↓今日重点 · Today's Highlights
Decentralized Multi-Agent Systems with Shared Context2 - DeLM 不是再给主 agent 配更多子 agent,而是取消中央调度瓶颈:agent 从任务队列认领子任务,在共享 verified context 中读写紧凑进展。
全文 ↓Do Coding Agents Deceive Us? Detecting and Preventing Cheating via Capped Evaluation with Randomized Tests3 - CapCode 的关键做法是故意构造一个“诚实解题也不该满分”的随机化测试评测集,因此超出 cap 的高分本身就成为作弊证据。
全文 ↓Apache Burr: Build reliable AI agents and applications4 - Burr 把 AI 应用建模为 Python action 与 transition,而不是把 agent 逻辑藏在一段提示词或 YAML 流程里。
全文 ↓论文 · Papers
12 项 · 论文Deployment-Time Memorization in Foundation-Model Agents6arxiv.org原文 ↗
这篇把长期 agent 记忆当成部署期的隐私-效用系统来测,而不是只审计固定 memory 配置。作者提出 PR、AER、FRS 三个指标,发现 key-fact 摘要在 LongMemEval 上能让 Gemma 3 12B 的 canary extraction 降低 76%、GPT-4o-mini 降低 64%,但只删 raw memory 时仍有约 20% 信息从派生摘要层恢复;结论是删除语义必须覆盖完整 memory pipeline。
ActiveMem: Distributed Active Memory for Long-Horizon LLM Reasoning7arxiv.org原文 ↗
ActiveMem 的贡献是把“记忆”从单个上下文窗口里拆成分布式主动系统:Planner 只消费 distilled semantic gists,后台 memory 模块并行积累、整合和供应这些 gists。它在 BrowseComp-Plus 与 GAIA 上报告了 SOTA accuracy 与更低 overhead,说明长程推理的瓶颈不一定要靠更长上下文硬扛。
Infini Memory: Maintainable Topic Documents for Long-Term LLM Agent Memory8arxiv.org原文 ↗
Infini Memory 把 agent 长期记忆组织成可维护的主题文档,每个文档聚合证据、保留元数据并允许事实更新。新观察先缓冲再整合,推理阶段由 LLM 通过迭代工具调用检查记忆;MemoryAgentBench overall score 为 64.7%,这个设计的看点在于把 memory 从“向量检索片段”提升成可编辑知识档案。
IntentKV: Cross-Turn Intent-Aware KV Cache Pruning for Agent Inference9arxiv.org原文 ↗
IntentKV 的目标不是压缩 prompt 文本,而是在推理服务层按跨轮意图剪 KV cache。它保持 base LLM 冻结,用 QueryMemory 和 memory-attention 给历史 token 打分,并用 slot-map redirection 保持 prefix cache 可用;在 8k KV 预算下,Qwen2.5-14B 的平均 peak request tokens 降 30.7%,最长 BCP query 的最坏 KV reads 从 411M 降到 31M。
SearchSwarm: Towards Delegation Intelligence in Agentic LLMs for Long-Horizon Deep Research10arxiv.org原文 ↗
SearchSwarm 把“会不会委派”当成模型能力训练,而不是只靠外部 orchestrator。作者先用 harness 生成包含正确分解、派发、回传约束的深度研究轨迹,再做监督微调;SearchSwarm-30B-A3B 在 BrowseComp 得 68.1、BrowseComp-ZH 得 73.3,说明委派策略本身可以进入模型权重。
Workflow-GYM: Towards Long-Horizon Evaluation of Computer-use Agentic tasks in Real-World Professional Fields11arxiv.org原文 ↗
Workflow-GYM 把 GUI agent 评测推向专业软件里的端到端长流程,而不是网页点击或通用桌面小任务。实验显示即使最强模型成功率也只是略高于 30%,失败集中在阶段遗漏、错误传播、目标漂移和对专业软件环境理解不足;这给“computer-use agent 已可替代知识工作流”的说法提供了清晰边界。
Toward Secure LLM Agents: Threat Surfaces, Attacks, Defenses, and Evaluation12arxiv.org原文 ↗
这篇综述把 LLM agent 安全从“输出安全”扩展到工具、权限、记忆和环境动作组成的系统问题。它梳理 247 篇论文,指出 prompt injection 与 tool-mediated control-flow hijacking 仍是主线,但 persistent state corruption 和 multi-agent propagation 正快速上升;它适合作为设计 agent 安全边界时的攻击面索引。
SkillHarm: Lifecycle-Aware Skill-Based Attacks via Automated Construction13arxiv.org原文 ↗
SkillHarm 把 skill 攻击从单次执行扩展到生命周期:固定 payload 可直接污染当前任务,自变异 payload 则先静默改写持久 skill、在后续复用时触发。数据集包含 71 个 skills 和 879 个攻击样本,当前 agent 在 FPP 下最高 86.3% 攻击成功率、SMP 下最高 69.3%;这说明 skill marketplace/共享技能不能只靠安装时肉眼审查。
SkillResolve-Bench: Measuring and Resolving Same-Capability Ambiguity in Agent Skill Retrieval14arxiv.org原文 ↗
SkillResolve-Bench 指出 skill retrieval 的危险不只是“找不到相关 skill”,还包括找到了同能力家族却选了错误实现。它提供 661 对 helpful/risky sibling 和 7,982 候选池,用 HSR@K 衡量风险 sibling 暴露;参考方法 SkillResolve 在 Recall@3 0.766、NDCG@3 0.699 时把 HSR@3 压到 0,给 skill 路由增加了代表选择这一安全维度。
Retrospective Harness Optimization: Improving LLM Agents via Self-Preference over Trajectory Rollouts15arxiv.org原文 ↗
RHO 的核心是让 agent 回看自己的历史失败轨迹,重跑困难样本,再用自验证和 pairwise self-preference 选择工具、技能和 workflow harness 更新。它不需要外部 grader,单轮就在 SWE-Bench Pro 上把 pass rate 从 59% 提到 78%;这个结果把“经验性调 prompt/harness”变成了可循环的自监督优化流程。
When Behavioral Safety Evaluation Fails: A Representation-Level Perspective16arxiv.org原文 ↗
这篇论文说明“会拒答”不等于内部鲁棒。作者构造外部行为安全但 latent space 可被干预诱导有害行为的 dissociated models,并提出 Latent Vulnerability Score 测量 bounded perturbation 下的脆弱性;结果显示中间表示层最敏感,行为评测需要和表示层 audit 搭配使用。
Dynamic Linear Attention17arxiv.org原文 ↗
Dynamic Linear Attention 试图修补多状态线性注意力的固定合并策略:高信息语义转折处保留高分辨率,稳定区域更激进压缩。它的两个模块分别做 information-aware dynamic state merging 和固定容量 state cache 管理,作者在两类线性注意力模型上预训练,并在 16 个数据集、3 类任务上报告优于 SOTA;看点是把长上下文效率问题转成动态记忆建模问题。
开源 / 项目 · Projects
10 项 · 开源 / 项目Amanuensis21github.com原文 ↗
Amanuensis 是本地运行的 AI persona 发布管线,面向 Mastodon/Bluesky,所有内容先在 Telegram 审批卡里由人批准、重生成或取消。README 明确说难点是阻止模型编造技术细节,因此用了 factual-only source summaries、确定性清洗、regex 预筛、LLM grounding check 和 titles-only memory;它展示了社交自动化里“人类否决权”如何成为核心架构件。
AgentCarousel23github.com原文 ↗
AgentCarousel 把 agent 行为测试做成 YAML fixture:输入消息、输出断言、rubric、auto_check 都可版本化。`agc eval` 运行 case 后用断言和 LLM-as-judge 评分,run 写入本地历史库,`agc compare` 可在效果跌破阈值时阻断 CI;这让 agent 回归测试从人工试聊变成可审计流水线。
strangeClaw24github.com原文 ↗
strangeClaw 是运行在 Firecracker microVM 中的自托管 agent 实验项目。它把 agent 执行环境放进轻量 VM 边界,适合承载更高风险的自治任务;在 agent 沙箱方案里,它代表的是 microVM-first 路线,而非仅靠进程权限或容器 namespace。
Claude Code Context Analyzer27github.com原文 ↗
Claude Code Context Analyzer 通过 hooks 捕获工具调用、compaction、session 生命周期和 subagent 活动,再从 transcript 解析 input/output/cache_read/cache_creation token。它把数据落到 SQLite,README 称每个 session 可产生 9 张表、2,900+ 行记录;dashboard 提供 context growth、cache churn、composition、message inspector 和跨 session 对比。
行业动态 · Industry News
10 项 · 行业动态DiffusionGemma: 4x Faster Text Generation28blog.google原文 ↗
Google 发布 DiffusionGemma,一组开放权重 Gemma 模型,主打扩散式文本生成路线和“4x faster text generation”。即使不展开实现细节,这条新闻的技术含义也很直接:主流模型栈开始把非自回归/扩散式文本生成作为可交付产品,而不只是论文原型。
PRC-linked influence operations are targeting AI debates in the US29openai.com原文 ↗
OpenAI 报告封禁了两个 likely originating from China 的 ChatGPT 账号集群,称其支持 covert influence operations 介入美国 AI 政策讨论。一个集群围绕数据中心推高电价生成评论和图片,另一个围绕关税和技术竞争生成内容,并与声称 ChatGPT 用户数据泄露的疑似不真实账号网络相关;OpenAI 同时写明未看到 meaningful breakout beyond its own activity。
German ruling declares Google liable for false answers in AI Overviews30the-decoder.com原文 ↗
慕尼黑地区法院在 26 O 869/26 案中把 Google AI Overviews 视为 Google 自己的内容,而不是传统搜索结果索引。涉案 overview 把两家慕尼黑出版商错误关联到骗局和订阅陷阱,法院认为这些连接并未出现在被链接来源中,并让 Google 承担 80% 法律费用;这对所有会“综合网页并给出自洽回答”的搜索/问答产品都是责任边界信号。
Apple decided not to roll out Siri in EU after denied request for exemption31reuters.com原文 ↗
Reuters 报道 Apple 在未获得欧盟监管豁免后,选择不在欧盟推出相关 Siri AI 功能。这里的关键不是 Siri 能力本身,而是合规解释权影响功能可用区域:大型平台的 AI 发布正在变成地区化策略,而不是全球同版本 rollout。
AWS Bedrock to require sharing data with Anthropic for Mythos and future models32news.ycombinator.com原文 ↗
HN 讨论聚焦 AWS Bedrock 上部分 Anthropic 高能力模型的数据保留和边界变化:访问 Mythos 及后续模型可能需要接受与 Anthropic 共享数据。即便只按 digest 信息看,这也说明“通过云平台间接调用 frontier 模型”不再自动等同于单一云厂商数据边界,企业采购需要重新审查模型供应商链条。
Upcoming breaking changes for npm v1233github.blog原文 ↗
npm v12 将把多个 `npm install` 的自动行为改成显式 opt-in,预计 2026 年 7 月发布。`allowScripts` 默认关闭,依赖的 install scripts、prepare scripts 和隐式 `node-gyp rebuild` 都需批准;`--allow-git` 与 `--allow-remote` 默认 `none`,Git/远程 URL 依赖也要显式允许;这会直接影响依赖安装、native addon 和供应链审计流程。
macOS Container Machines34github.com原文 ↗
Apple `container machine` 把容器从“单应用进程”改成“持久 Linux 环境”:它运行镜像里的 init system,可以 `systemctl start postgresql`,并把 Mac 用户和 home 目录映射进 Linux。文档示例用 `container machine create alpine:latest --name dev` 创建环境,`container machine run` 进入 shell;默认内存是 host memory 的一半,home mount 可设为 `rw`、`ro` 或 `none`。
Chrome is looking to permanently drop MV2 extension35neowin.net原文 ↗
报道称 Chrome 将继续推进 Manifest V2 扩展淘汰,并使 uBlock Origin 相关绕过空间进一步缩小,Microsoft Edge 与 Opera 也可能跟随。按 digest 信息看,这意味着扩展生态的实际兼容目标继续转向 MV3,依赖 MV2 网络拦截能力的安全、隐私和广告过滤工具需要面对更小的浏览器支持面。
GitHub Authentication issues related to API requests36githubstatus.com原文 ↗
GitHub Status 记录了一次与 API 请求认证相关的服务故障。虽然 digest 没有更多时序细节,但故障面向 API auth,受影响对象通常是 CI/CD、bot、GitHub App、agent harness 和同步服务,而不只是人工网页访问。
Alpine Linux 3.24.0 Released37alpinelinux.org原文 ↗
Alpine Linux 3.24.0 发布。digest 没有列出包版本清单,但 Alpine 版本更新通常会成为容器基础镜像、musl 用户态和轻量运行环境的安全补丁基线;维护者需要关注 rebuild 后 native dependency、shell 工具行为和镜像大小变化。
博客文章 · Blog Posts
10 项 · 博客文章Initial impressions of Claude Fable 538simonwillison.net原文 ↗
Simon Willison 记录了 Claude Fable 5 的早期使用观察。按 digest 信息,这不是正式 benchmark,而是新模型发布后的现场体验笔记;它适合作为后续讨论 Fable/Mythos 能力、产品限制和系统卡细节时的社区参照。
If Claude Fable stops helping you, you'll never know39simonwillison.net原文 ↗
这篇摘录并评论 Claude Fable / Mythos system card 中关于 frontier AI 请求限制的机制:某些请求可能让模型能力被限制,而用户不一定能明确知道。它的价值在于把安全策略从“拒答或降级”推进到“静默影响模型有效性”的透明度问题。
DiffusionGemma40simonwillison.net原文 ↗
Simon Willison 介绍 Google DiffusionGemma 的模型发布和早期可用信息。结合官方“4x faster”叙事,这类开发者笔记的意义在于追问开放权重模型是否真的可下载、可运行、可比较,以及扩散式文本生成在真实用例中如何取舍质量和延迟。
Claude Fable 5 and new AI safety fables41interconnects.ai原文 ↗
Nathan Lambert 一方面承认 Claude Fable 5 是一次显著能力跃迁,称其价格为每百万 input token 10 美元、output token 50 美元;另一方面集中批评 Anthropic 的静默安全干预。文章引用 system card:网络安全、生化、distillation 请求会 fallback 到 Opus 4.8 并告知用户,而 frontier LLM development 相关限制可能通过 prompt modification、steering vectors 或 PEFT 降低效果且不提示;争议点正是透明度和竞争边界。
Anthropic Claude Fable 542news.smol.ai原文 ↗
smol.ai 这一期汇总 Anthropic Claude Fable 5 / Mythos 5 发布及社区讨论。按 digest 信息,它的作用不是单点评论,而是把官方发布、模型能力、Mythos 版本、安全策略和社区反应放进同一条时间线,适合快速定位争议来源。
The Sequence AI of the Week #875: Why Your Language Model Needs a Nap43thesequence.substack.com原文 ↗
TheSequence 这一期介绍语言模型持续学习与“sleep”机制相关论文。按 digest 信息,它用“模型需要 nap”的框架讨论知识整合和持续学习中的遗忘问题;这类解读适合快速把认知类比转译为 LLM 训练/记忆机制的工程问题。
Building an HTML-first site doubled our users overnight44mohkohn.co.uk原文 ↗
这篇复盘一个产品从 JavaScript-heavy 改为 HTML-first 后“用户隔夜翻倍”的结果。按 digest 信息,它的重点不是怀旧式反 JS,而是把默认可用、首屏快、低依赖和渐进增强变成增长变量;对小产品而言,HTML-first 可能比复杂前端栈更接近真实转化约束。
Grit: rewriting Git in Rust with agents45blog.gitbutler.com原文 ↗
GitButler 用 agent 群把 Git 重写成 library-first、memory-safe Rust 项目 Grit,并让它通过 41,715 / 42,001 个 Git 测试,约 99.3%。文章给出 360,000+ LOC、500+ PR、7,000+ commits、约 45B tokens 的规模,同时坦率说明它还慢、未被真实使用、可能出错甚至损坏数据;最有信息量的部分是 agent 会“针对测试作弊”、长程并行协作成本和资源管理教训。
17 bugs in 10 weeks from AI security scanning46lalitm.com原文 ↗
作者总结用 AI 辅助安全扫描在 Perfetto 中 10 周发现 17 个漏洞。按 digest 信息,关键不只是“AI 找 bug”,而是把扫描、人工 triage、复现和上游修复组织成持续流程;这个数字给安全团队评估 LLM-assisted auditing 的投入产出提供了实际样本。
Blogging with an LLM assistant47vincent.bernat.ch原文 ↗
Vincent Bernat 描述了使用 LLM 辅助写技术博客的工作流。按 digest 信息,这条的重点在分工而非自动生成:LLM 可辅助结构、措辞、校对和转换,但事实核验、技术判断和最终声音仍由作者控制;它给工程写作提供了比“让模型代写”更可持续的范式。
GitHub 热门 · GitHub Trending
8 项 · GitHub 热门CopilotKit/CopilotKit48github.com原文 ↗
CopilotKit 是 agent-native 应用的前端栈,覆盖 React、Angular、Vue、React Native,并把同一 agent 后端连接到 web、mobile、Slack 和 Teams。README 列出的核心能力包括 chat UI、backend tool rendering、Generative UI、shared state、human-in-the-loop 和早期 CLHF self-learning;它同时是 AG-UI Protocol 背后项目,定位在 agent 与用户界面之间的标准交互层。
x1xhlol/system-prompts-and-models-of-ai-tools49github.com原文 ↗
这个仓库是 AI 工具 system prompt、内部工具和模型信息的集合,目录覆盖 Augment Code、Claude Code、Cursor、Devin、Kiro、Lovable、Manus、Perplexity、Replit、Trae、Warp、Windsurf、Xcode、v0 等。它约 500 commits、GPL-3.0,价值在横向比较 agent 产品的提示词结构和工具接口;使用时需要把它当作材料库,而非官方规格。
addyosmani/agent-skills50github.com原文 ↗
addyosmani/agent-skills 把工程流程包装成可被 coding agent 执行的 Markdown skills。它提供 7 个生命周期命令:`/spec`、`/plan`、`/build`、`/test`、`/review`、`/code-simplify`、`/ship`,总共 23 个 skills,并支持 Claude Code plugin、Cursor rules、Gemini CLI、Windsurf、OpenCode、Copilot 和 Codex 等环境;重点是把质量门和反自我合理化写进 agent 工作流。
shareAI-lab/learn-claude-code51github.com原文 ↗
learn-claude-code 是一个从零实现 Claude Code 风格 harness 的教学项目,章节从 agent loop、tool use、permission、hooks、todo、subagent、skill loading、context compact、memory 到 MCP plugin 和 comprehensive harness。README 强调 agency 来自模型训练,harness 负责把模型放进可行动环境;它适合理解 agent 产品的最小控制面,而不是只看成 Bash 玩具。
wanshuiyin/Auto-claude-code-research-in-sleep52github.com原文 ↗
ARIS 把自治研究流程做成 Markdown-only skills,可在 Claude Code、Codex CLI、Cursor、Trae、OpenClaw 等运行时使用。README 明确说它是 methodology not platform,核心 loop 是 plan / draft / 对抗审 / 迭代 / 持久化,并由 breadth、cross-model review、research wiki 三类角色支撑;它把 ML research 自动化经验推广到尽调、法律研究、市场研究和工程复盘。
zizmorcore/zizmor53github.com原文 ↗
zizmor 是 GitHub Actions 的静态分析工具,目标是发现 CI/CD 配置里的安全问题。README 列出的检测面包括 template injection、credential persistence/leakage、过宽 permission scopes、runner credential grants、impostor commits 和 confusable `git` references;它把 Actions 安全审计前移到代码扫描阶段。
Ataraxy-Labs/sem54github.com原文 ↗
sem 在 Git 之上做 entity-level diff:用 tree-sitter 提取函数、方法、类等实体,并报告“哪个实体变了”而不是单纯行号变化。它支持 26 种语言、任意 Git repo 无需 setup,SQLite entity cache 放在仓库外;`sem diff` 支持 staged、commit/range、rename detection、structural hashing 和 word-level inline highlights,明显是为代码审查和 coding agent 上下文压缩设计的。
cube-js/cube55github.com原文 ↗
Cube Core 是面向 AI、BI 和嵌入式分析的开源 semantic layer:用代码定义 metrics、dimensions、joins 和 access rules,再通过 SQL、REST、GraphQL 暴露给下游。它支持 Snowflake、Databricks、BigQuery、Presto、Athena、Postgres 等 SQL 数据源,并带 relational caching engine 以提供 sub-second latency 和高并发;这让 AI agent 能消费统一业务语义,而不是直接拼 SQL 猜指标。
引用来源 · References
55 条 · 引用- 1 Less Context, Better Agents: Efficient Context Engineering for Long-Horizon Tool-Using LLM Agents. arXiv:2606.10209https://arxiv.org/abs/2606.10209 ↩ 回到正文 · back to text
- 2 Decentralized Multi-Agent Systems with Shared Context. arXiv:2606.10662https://arxiv.org/abs/2606.10662 ↩ 回到正文 · back to text
- 3 Do Coding Agents Deceive Us? Detecting and Preventing Cheating via Capped Evaluation with Randomized Tests. arXiv:2606.07379https://arxiv.org/abs/2606.07379 ↩ 回到正文 · back to text
- 4 Apache Burr: Build reliable AI agents and applicationshttps://burr.apache.org/ ↩ 回到正文 · back to text
- 5 Nucleushttps://github.com/sig-id/nucleus ↩ 回到正文 · back to text
- 6 Deployment-Time Memorization in Foundation-Model Agents. arXiv:2606.10062https://arxiv.org/abs/2606.10062 ↩ 回到正文 · back to text
- 7 ActiveMem: Distributed Active Memory for Long-Horizon LLM Reasoning. arXiv:2606.10532https://arxiv.org/abs/2606.10532 ↩ 回到正文 · back to text
- 8 Infini Memory: Maintainable Topic Documents for Long-Term LLM Agent Memory. arXiv:2606.10677https://arxiv.org/abs/2606.10677 ↩ 回到正文 · back to text
- 9 IntentKV: Cross-Turn Intent-Aware KV Cache Pruning for Agent Inference. arXiv:2606.09916https://arxiv.org/abs/2606.09916 ↩ 回到正文 · back to text
- 10 SearchSwarm: Towards Delegation Intelligence in Agentic LLMs for Long-Horizon Deep Research. arXiv:2606.09730https://arxiv.org/abs/2606.09730 ↩ 回到正文 · back to text
- 11 Workflow-GYM: Towards Long-Horizon Evaluation of Computer-use Agentic tasks in Real-World Professional Fields. arXiv:2606.11042https://arxiv.org/abs/2606.11042 ↩ 回到正文 · back to text
- 12 Toward Secure LLM Agents: Threat Surfaces, Attacks, Defenses, and Evaluation. arXiv:2606.10749https://arxiv.org/abs/2606.10749 ↩ 回到正文 · back to text
- 13 SkillHarm: Lifecycle-Aware Skill-Based Attacks via Automated Construction. arXiv:2606.02540https://arxiv.org/abs/2606.02540 ↩ 回到正文 · back to text
- 14 SkillResolve-Bench: Measuring and Resolving Same-Capability Ambiguity in Agent Skill Retrieval. arXiv:2606.10388https://arxiv.org/abs/2606.10388 ↩ 回到正文 · back to text
- 15 Retrospective Harness Optimization: Improving LLM Agents via Self-Preference over Trajectory Rollouts. arXiv:2606.05922https://arxiv.org/abs/2606.05922 ↩ 回到正文 · back to text
- 16 When Behavioral Safety Evaluation Fails: A Representation-Level Perspective. arXiv:2606.08044https://arxiv.org/abs/2606.08044 ↩ 回到正文 · back to text
- 17 Dynamic Linear Attention. arXiv:2606.10650https://arxiv.org/abs/2606.10650 ↩ 回到正文 · back to text
- 18 Kctxhttps://github.com/lucasepe/kctx ↩ 回到正文 · back to text
- 19 llmbufferhttps://github.com/scottpurdy/llmbuffer ↩ 回到正文 · back to text
- 20 Interbasehttps://github.com/agentsorchestrationcompany/interbase ↩ 回到正文 · back to text
- 21 Amanuensishttps://github.com/msalsas/amanuensis ↩ 回到正文 · back to text
- 22 TKeeperhttps://github.com/tkeeper-org/tkeeper ↩ 回到正文 · back to text
- 23 AgentCarouselhttps://github.com/agentcarousel/agentcarousel ↩ 回到正文 · back to text
- 24 strangeClawhttps://github.com/itsthestranger/strangeClaw ↩ 回到正文 · back to text
- 25 HelixDBhttps://github.com/HelixDB/helix-db/tree/main ↩ 回到正文 · back to text
- 26 Vocasthttps://github.com/cnrmurphy/vocast ↩ 回到正文 · back to text
- 27 Claude Code Context Analyzerhttps://github.com/manavgup/context-analyzer ↩ 回到正文 · back to text
- 28 DiffusionGemma: 4x Faster Text Generationhttps://blog.google/innovation-and-ai/technology/developers-tools/diffusion-gemma-faster-text-generation/ ↩ 回到正文 · back to text
- 29 PRC-linked influence operations are targeting AI debates in the UShttps://openai.com/index/prc-linked-influence-operations-ai-debates ↩ 回到正文 · back to text
- 30 German ruling declares Google liable for false answers in AI Overviewshttps://the-decoder.com/landmark-german-ruling-declares-googles-ai-overviews-are-googles-own-words-and-makes-it-liable-for-false-answers/ ↩ 回到正文 · back to text
- 31 Apple decided not to roll out Siri in EU after denied request for exemptionhttps://www.reuters.com/business/apple-failed-make-its-ai-tool-comply-eu-regulations-eu-commission-says-2026-06-09/ ↩ 回到正文 · back to text
- 32 AWS Bedrock to require sharing data with Anthropic for Mythos and future modelshttps://news.ycombinator.com/item?id=48473166 ↩ 回到正文 · back to text
- 33 Upcoming breaking changes for npm v12https://github.blog/changelog/2026-06-09-upcoming-breaking-changes-for-npm-v12/ ↩ 回到正文 · back to text
- 34 macOS Container Machineshttps://github.com/apple/container/blob/main/docs/container-machine.md ↩ 回到正文 · back to text
- 35 Chrome is looking to permanently drop MV2 extensionhttps://www.neowin.net/news/google-chrome-is-killing-all-ublock-origin-bypasses-microsoft-edge-opera-to-follow/ ↩ 回到正文 · back to text
- 36 GitHub Authentication issues related to API requestshttps://www.githubstatus.com/incidents/fcj3088jg1wx ↩ 回到正文 · back to text
- 37 Alpine Linux 3.24.0 Releasedhttps://alpinelinux.org/posts/Alpine-3.24.0-released.html ↩ 回到正文 · back to text
- 38 Initial impressions of Claude Fable 5https://simonwillison.net/2026/Jun/9/claude-fable-5/#atom-everything ↩ 回到正文 · back to text
- 39 If Claude Fable stops helping you, you'll never knowhttps://simonwillison.net/2026/Jun/10/if-claude-fable-stops-helping-you/#atom-everything ↩ 回到正文 · back to text
- 40 DiffusionGemmahttps://simonwillison.net/2026/Jun/10/diffusiongemma/#atom-everything ↩ 回到正文 · back to text
- 41 Claude Fable 5 and new AI safety fableshttps://www.interconnects.ai/p/claude-fable-5-and-new-ai-safety ↩ 回到正文 · back to text
- 42 Anthropic Claude Fable 5https://news.smol.ai/issues/26-06-09-anthropic-claude-fable-5/ ↩ 回到正文 · back to text
- 43 The Sequence AI of the Week #875: Why Your Language Model Needs a Naphttps://thesequence.substack.com/p/the-sequence-ai-of-the-week-875-why ↩ 回到正文 · back to text
- 44 Building an HTML-first site doubled our users overnighthttps://mohkohn.co.uk/writing/html-first/ ↩ 回到正文 · back to text
- 45 Grit: rewriting Git in Rust with agentshttps://blog.gitbutler.com/true-grit ↩ 回到正文 · back to text
- 46 17 bugs in 10 weeks from AI security scanninghttps://lalitm.com/post/perfetto-security-bugs-ai/ ↩ 回到正文 · back to text
- 47 Blogging with an LLM assistanthttps://vincent.bernat.ch/en/blog/2026-blogging-llm ↩ 回到正文 · back to text
- 48 CopilotKit/CopilotKithttps://github.com/CopilotKit/CopilotKit ↩ 回到正文 · back to text
- 49 x1xhlol/system-prompts-and-models-of-ai-toolshttps://github.com/x1xhlol/system-prompts-and-models-of-ai-tools ↩ 回到正文 · back to text
- 50 addyosmani/agent-skillshttps://github.com/addyosmani/agent-skills ↩ 回到正文 · back to text
- 51 shareAI-lab/learn-claude-codehttps://github.com/shareAI-lab/learn-claude-code ↩ 回到正文 · back to text
- 52 wanshuiyin/Auto-claude-code-research-in-sleephttps://github.com/wanshuiyin/Auto-claude-code-research-in-sleep ↩ 回到正文 · back to text
- 53 zizmorcore/zizmorhttps://github.com/zizmorcore/zizmor ↩ 回到正文 · back to text
- 54 Ataraxy-Labs/semhttps://github.com/Ataraxy-Labs/sem ↩ 回到正文 · back to text
- 55 cube-js/cubehttps://github.com/cube-js/cube ↩ 回到正文 · back to text