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

每日 Harness

2026-06-15 · Monday, June 15, 2026

代理时代的信任边界

视图 · View

今日重点 · Today's Highlights

Kage1 - 用真实浏览器冻结网页、移除 JavaScript,并能打包成 ZIM 或自包含二进制,技术看点在“可长期保存”的离线 Web 快照。

全文 ↓

Afterburner2 - Rust 内嵌 JS/TS runtime 把脚本封进 capability-gated 包,默认隔绝网络、文件系统和环境变量,适合作为 agent 执行不可信代码的沙箱层。

全文 ↓

RAIF3 - 面向 LLM 输出 JSON 的可修复 wire format,把 token 成本、截断恢复和无损回转同时纳入格式设计。

全文 ↓

SkillSpector4 - NVIDIA 把 agent skill 安装前扫描做成静态规则加可选 LLM 语义审查,覆盖 MCP 权限、工具投毒和数据外传等新攻击面。

全文 ↓

code-review-graph5 - 用 Tree-sitter 代码图谱给 MCP/CLI 提供按需上下文,README 中位 token 降低约 82x 的基准让它比普通“代码搜索”更值得实测。

全文 ↓

论文 · Papers

0 项 · 论文

开源 / 项目 · Projects

16 项 · 开源 / 项目

本期重点Kage1github.com原文 ↗

github.com

这个项目不是简单 wget,而是用 headless Chrome 等待页面稳定后抓取最终 DOM,再删除脚本、事件处理器和 `javascript:` 链接,并把 CSS、图片、字体改写为本地路径。README 给出的工作流是 `kage clone`、`kage serve`、`kage pack`、`kage open`,其中 pack 可以生成开放 ZIM 文件,也可以生成“运行即服务该网站”的单个可执行文件。它值得看的是把网页归档从“保存 HTML”推进到“渲染后、无脚本、可校验、可分发”的工程闭环。

本期重点Afterburner2github.com原文 ↗

Afterburner 把 JavaScript/TypeScript 包装成 `.afb` 包:`afb.toml` 描述包,`manifold.json` 声明能力,源码在 sandbox 内执行。`burn` CLI 能 scaffold、run、test、package、publish,也能通过 agent hook 把 AI 写出的 `node app.js`、`npm test`、`npx tsx` 改成 `burn --sandbox ...` 重新运行。README 还列出 fuel、64 MiB 级内存限制、timeout、threaded workers 和 BSL 1.1 四年后转 Apache-2.0 的许可路径,适合关注“agent 代码执行默认不可信”的读者审读。

Web Researcher MCP6github.com原文 ↗

这个 MCP 服务的核心不是再做一个搜索入口,而是让 AI 在用户指定的 search lenses 里检索,并读取完整网页、PDF、Word、YouTube transcript,而非只吃搜索摘要。README 列出的工具覆盖 web/news/image/academic/patent/SEC/legal/clinical 搜索、citation graph、verify_citation、audit_bibliography、archive_source 和 research_export。它的具体抓手是“每条来源可点击、可复核、可记录”,适合作为需要引用严肃来源的 agent research layer。

Bastion7bastion.computer原文 ↗

Bastion 面向后台 coding agents 提供隔离 Linux VM,定位在 agent 执行环境而不是代码生成模型本身。digest 给出的关键事实是它把长期运行的编码任务放入独立虚拟机,减少 agent 与开发者主机共享文件系统、凭据和进程空间的风险。它的价值在于把“让 agent 干活”拆成模型能力与运行隔离两层来处理。

The Engineer8github.com原文 ↗

The Engineer 是一个长驻 orchestration daemon,把 GitHub Issues 等任务入口接到 Claude Code、OpenCode、Gemini CLI 这类编码 agent,再推进到 PR。README 把流程拆成 requirements、research、planning、execution、review、delivery 六阶段,每个任务在独立 git worktree 中运行,插件边界覆盖 trigger、communication、agent 和 git hosting。它的务实之处是承认 agent 需要人工参与 requirements、关键决策和最终 review,同时用 SQLite 事件流、成本上限和 `engineer why` 记录可审计路径。

Agent Gate9github.com原文 ↗

Agent Gate 是给 AI 生成 PR 用的 deterministic CI firewall,规则执行时不 checkout PR 代码、不调用 LLM、不执行仓库脚本,也不从 PR head 加载策略。README 中它会检查 out-of-contract edits、workflow permission escalation、agent control-plane drift、missing test evidence 和 MCP config drift;示例 fixture 会把 GitHub Actions `contents` 权限从 read 到 write 的升级标成 BLOCKED。这个项目的看点是把 agent PR 的安全约束做成可复放的 CI 事实,而不是把判断外包给另一个模型。

本期重点RAIF3github.com原文 ↗

工具使用框架与脚手架系统·基础设施

RAIF 观察到 LLM 不是确定性 JSON writer,常见失败包括少括号、markdown fence、半截流和分隔符滑移,因此把“可修复”写进格式本身。README 的数字是相对 JSON 少约 14.4% cl100k token、15.9% o200k token,截断输出在同等预算下恢复 46% leaf,而 JSON + jsonrepair 为 41%。它还用 5,000-seed fuzz test 证明无损 round-trip,并提供 TypeScript/Python 同步 conformance corpus,适合关心 structured output 可靠性的工程团队细读。

Data-review10github.com原文 ↗

Data-review 把 PR 里的数据影响审查拆成确定性脚本和 agent 判断两层:脚本算 blast radius、tieout、baseline diff、row-level EXCEPT ALL,agent 只判断变化是否符合作者声明。README 的演示把 cents-to-dollars 转换错误暴露为 `sum(amount)` 从 134.50 跳到 13,450;更大的 proving ground 里还列出 +41,552 deaths、+$54.5B distortion 等历史 bug replay。它值得看是因为它没有让 LLM 做算术,而是让 LLM 解释由数据库脚本产生的可复现实证。

claim-memory-graph-sdk11github.com原文 ↗

CMG 为 LLM judge 加了一层 evidence/claim/decision 图谱,要求 verdict 建立在显式 claim 上,而 claim 必须引用输入证据。README 列出 `missing_verdict`、`invalid_verdict`、`uncited_verdict`、`no_supported_claims`、`rubric_coverage_gap`、`reference_ignored`、`verdict_flip_without_invalidation` 等 human review flags。它的贡献不在“自动判谁对”,而在把 judge 是否覆盖 rubric、是否引用 reference、是否无声改变结论变成可检查的记录。

Manim-Studio12github.com原文 ↗

Manim-Studio 走的是 prompt → OpenAI 写 Manim scene → InstaVM 渲染 → MP4 的路线。README 中架构由长驻 FastAPI app、SQLite job store、`/api/jobs` 与 `/poll` 长轮询接口、短生命周期渲染 VM 组成,渲染基础镜像包含 `manim==0.20.1`、cairo、pango 和 ffmpeg,冷启动约 4 秒。它的看点是把“生成数学动画”从单次脚本运行包装成可部署的异步渲染服务。

ScreenMind13github.com原文 ↗

ScreenMind 是本地 screen memory:捕获屏幕变化,用 EasyOCR 提取文本,把截图和 OCR context 交给 Gemma 4 E2B,再用 MiniLM embedding 与 SQLite/FTS5 支撑搜索和聊天。README 给出三档分析模式:Accurate 约 76 秒、Balanced 约 40 秒、Fast 约 12 秒;首次运行下载约 5GB GGUF,推荐 4GB+ VRAM。它值得关注是因为它同时处理隐私、性能和可扩展性:本地推理、敏感信息过滤、截图加密、MCP server、Markdown/Python agent plugin 都在同一个系统边界内。

Pg-status14github.com原文 ↗

github.com

pg-status 是一个极轻量 PostgreSQL 主从发现 sidecar,后台轮询 host 状态,HTTP 端点直接从内存返回 master、replica、同步 replica 或 host 列表。README 的具体数字包括约 9MiB 内存、0.1 CPU 下约 1600-2000 req/s、1 CPU 下约 8600-9000 req/s;`min_lsn` 查询参数还能让读请求只落到已 replay 到指定 WAL LSN 的 replica,否则回退 master。它的技术取舍很清楚:为响应速度牺牲跨 host 一致快照,但保证单 host 字段来自同一次 poll。

Pistachio15github.com原文 ↗

github.com

Pistachio 是 PostgreSQL 的声明式 schema 管理工具,用户写目标 SQL,`pista plan` 生成 DDL diff,`pista apply` 应用,`pista dump` 导出现有 schema。README 特别提示 v1.7.0 把二进制名从 `pist` 改到 `pista`,环境变量和 SQL comment directive 也随之改名。它值得看的是使用 PostgreSQL parser 做 schema diff,同时诚实列出约束名推断、63 字节标识符截断等数据库细节带来的不可预测性。

Dual YOLOv8n UAV Detection on RK3588S16github.com原文 ↗

github.com

这个项目把 YOLOv8n UAV 检测跑到 RK3588S NPU 上,并为三个 NPU core 各放一个 RKNN context,形成 capture、inference、display pipeline。README 中 1080p、640x640 YOLOv8n 的吞吐从单线程约 31.2 FPS 提升到 OS08A10 摄像头 46 FPS 上限;内存也被固定 buffer pool 控到单路约 137-152MB、双路约 276-304MB RSS。它的价值在嵌入式部署细节:瓶颈不再是模型循环,而是传感器上限。

Peek17getpeek.dev原文 ↗

getpeek.dev

Peek 是 Tauri/Rust/React 实现的数据库 GUI,digest 提到它带 LSP 和多人协作能力。这个组合说明它想做的不只是 SQL client,而是把本地桌面壳、Rust 系统层、Web UI 和数据库语言服务合到一个工作台里。信息量目前偏产品描述,但方向上对应数据库工具从单机查询界面转向协作式开发环境。

本期重点code-review-graph5github.com原文 ↗

code-review-graph 用 Tree-sitter 解析仓库,存储函数、类、import、调用、继承和测试覆盖边,并通过 MCP/CLI 在 review 时返回受影响文件、风险和最小阅读上下文。README 给出的 benchmark 是 6 个真实仓库中位每问题 token 降低约 82x,最大 528x;对 monorepo 示例,它声称排除 27,700+ 文件、实际只读约 15 个文件。它值得试的地方是本地 SQLite 图谱、watch daemon、GitHub Action、FTS5 hybrid search 和可限制 MCP tools 的工程化程度都已经写进 README。

行业动态 · Industry News

15 项 · 行业动态

GLM 5.2 Is Out18twitter.com原文 ↗

twitter.com

GLM 5.2 的发布信息在社交平台和 HN 触发讨论,但该条目本身没有附带可读的技术报告或 benchmark。作为新闻项,它的信号是国内大模型系列继续快速迭代;作为工程输入,还需要等待模型卡、API 文档或第三方评测来判断实际变化。

Statement on US government directive to suspend access to Fable 5 and Mythos 519news.ycombinator.com原文 ↗

news.ycombinator.com

这条 HN 讨论围绕美国政府要求暂停 Fable 5 和 Mythos 5 访问的声明展开。它的关键事实不是模型性能,而是模型访问可以被政府 directive 直接改变。对行业来说,这类事件把 frontier model 的发布风险从“是否好用”扩展到“谁能访问、何时被切断”。

KPMG pulls report on AI usage due to apparent hallucinations21techcrunch.com原文 ↗

techcrunch.com

TechCrunch 报道 KPMG 撤下 2025 年 10 月的 agentic AI 报告,因为多个被点名组织称其中关于其 AI 使用的说法不实或误导。报道列出的组织包括 UBS、英国 NHS、Swiss Federal Railways 和 Transport for London;GPTZero 认为问题来自 AI hallucination。这个案例值得看是因为它把“AI 辅助写 AI 报告”中的来源核验失败暴露给咨询业的信誉体系。

State Attorneys General Are Investigating OpenAI22nytimes.com原文 ↗

nytimes.com

纽约时报这条新闻被 digest 概括为美国州检察长正在调查 OpenAI。可见信息显示监管关注已经从抽象 AI 风险进入具体公司调查。它的行业含义在于,大模型产品的用户保护、数据处理和安全措施正在面对州级执法层面的审视。

Derbyshire Police officer accused of using AI to 'create evidence'23bbc.com原文 ↗

bbc.com

BBC 条目聚焦 Derbyshire 警员被指控在案件中使用 AI 制造证据。即使只看 digest,这也是一个高风险应用边界:AI 生成内容一旦进入证据链,问题不再是准确率,而是司法程序的可采性和可追责性。它值得与后面的 Sky News 报道合看。

Police officer investigated for using AI to 'create evidence' in multiple cases24news.sky.com原文 ↗

news.sky.com

Sky News 报道称该 Derbyshire 警员涉嫌在多个案件中使用 AI “create evidence”,CPS 正与警方合作并联系可能受影响的辩方和法院。该警员已被调离一线岗位,报道时没有逮捕。一个具体背景是 PoliceAI 国家中心同周启动,说明“负责地采用 AI”与“证据流程被 AI 污染”的制度压力正在同时出现。

Rio de Janeiro's "homegrown" LLM appears to be a merge of an existing model25github.com原文 ↗

github.com

GitHub issue 标题直接写出 Rio-3.5-Open-397B 近似 0.6 x Nex-N2_pro + 0.4 x Qwen,digest 将其概括为里约热内卢市政府“自研”LLM 可能是已有模型 merge。该条的关键事实是模型 provenance 受到公开质疑。它值得关注是因为“本土模型”叙事若缺少训练数据、权重来源和 merge 说明,很容易被社区反向工程挑战。

Arch Linux AUR Hit by Another Wave of Now More Sophisticated Malware Attack26phoronix.com原文 ↗

phoronix.com

Phoronix 报道 Arch Linux AUR 再次遭遇更复杂的恶意软件攻击。digest 没给出具体包名,但足以说明攻击者仍在利用用户从社区仓库拉取 PKGBUILD、hook 和安装脚本的信任习惯。它值得看是因为 agent 时代的自动装包会进一步放大 AUR 这类生态的供应链风险。

ReactOS achieves 3D-accelerated Half-Life on real hardware27phoronix.com原文 ↗

phoronix.com

ReactOS 在真实硬件上运行带 3D 加速的 Half-Life,是一个兼容性里程碑新闻。这里的技术重点不在 Half-Life 本身,而在开源 Windows 兼容层、图形驱动和实际硬件路径能跑通复杂旧应用。它说明 ReactOS 的进展可以用具体软件栈来观察,而不只是 API 覆盖率。

Linux 7.128lore.kernel.org原文 ↗

lore.kernel.org

LKML 链接被 digest 标为 Linux 7.1 相关公告。由于该条来自内核邮件列表,关注点应放在版本边界和维护节奏,而不是普通产品发布口径。它适合后续结合 changelog 查看子系统级变更。

Phoenix LiveView 1.229phoenixframework.org原文 ↗

phoenixframework.org

Phoenix Framework 发布 LiveView 1.2,延续 Elixir/Phoenix 生态的服务端驱动交互式 UI 路线。digest 未给出新特性细节,但版本更新本身对依赖 LiveView 的产品有迁移信号意义。它值得跟进官方 changelog,而不是只看 release headline。

Pyodide 314.0: WebAssembly wheels for PyPI30blog.pyodide.org原文 ↗

blog.pyodide.org

Pyodide 314.0 的要点是支持面向 PyPI 发布 WebAssembly wheels。这个变化把浏览器端 Python 包分发从 Pyodide 专属构建渠道推向普通 PyPI 工作流。它值得关注是因为 Python 包作者可以用更标准的发布路径触达 wasm/Pyodide 用户。

WASI 0.331news.ycombinator.com原文 ↗

news.ycombinator.com

WASI 0.3 在 HN 进入高热度讨论,说明 WebAssembly 的系统接口层仍是运行时生态的焦点。digest 没展开特性,但 WASI 版本推进通常关联组件模型、文件/网络/时钟等宿主能力边界。它值得看是因为 Wasm 能否成为通用插件/沙箱平台,很大程度取决于这些接口是否稳定、可组合。

Open source AI must win32news.ycombinator.com原文 ↗

news.ycombinator.com

这条 HN 讨论围绕开源 AI 生态的竞争位置展开。它不是单一发布新闻,而是把开放权重、推理基础设施、社区复现和商业平台锁定放到一个争论里。值得记录的是,开源 AI 的问题已经从“有没有模型”转向“能否形成完整供应链与使用场景”。

博客文章 · Blog Posts

15 项 · 博客文章

Don't trust large context windows33garrit.xyz原文 ↗

这篇文章提醒长上下文窗口并不等于可靠记忆。digest 提到检索、注意力和实际使用中的失效模式,核心意思是模型可能拥有很长输入上限,却仍错过关键约束或在长文中漂移。它值得读是因为很多 agent workflow 仍把“塞进上下文”当成设计,而不是把证据选择、摘要和校验做成显式步骤。

No, everyone is not using AI for everything34gabrielweinberg.com原文 ↗

gabrielweinberg.com

Gabriel Weinberg 从消费行为角度反驳“人人都在用 AI 做所有事”的叙事。digest 的关键点是 AI 使用分布不均,不能把早期高频用户或社交媒体样本外推为大众行为。它有价值是因为产品规划和市场判断都需要区分 adoption headline 与实际任务替代率。

AI coding at home without going broke35stephen.bochinski.dev原文 ↗

stephen.bochinski.dev

这篇个人博客记录在家做 AI coding 的低成本配置经验。digest 没有给出具体硬件清单,但主题明确指向本地模型、低价 API 或混合工作流如何控制开销。它值得看是因为个人开发者的约束通常不是“最强模型”,而是长时间编码循环里的成本、延迟和可用性。

Human Routers of Machine Words36borretti.me原文 ↗

borretti.me

这篇文章讨论人在机器生成文本工作流中承担路由和整理角色。digest 的核心判断是自动生成扩大了文本供给,但人类仍负责选择、转发、编排和赋予语境。它值得读是因为很多“自动内容生产”并没有消除编辑工作,只是把编辑从写作移动到了筛选和分发。

The future of Siri, or: why private inference isn’t private enough37blog.cryptographyengineering.com原文 ↗

Cryptography Engineering 把 Apple 私有推理方案放在 agent 隐私边界里讨论。digest 的重点是即使模型推理在更私密的环境中完成,agent 为执行任务仍可能需要读取个人上下文、调用服务和暴露意图。它值得看是因为“private inference”解决的是一部分计算位置问题,不等于解决端到端代理权限问题。

Welcome to the AGI era of AI governance38interconnects.ai原文 ↗

interconnects.ai

Interconnects 在 Fable/Mythos 事件背景下讨论 AI 治理转向。digest 显示焦点从原则性安全叙事转向模型访问、政府 directive 和平台执行。它值得读是因为治理已经开始表现为具体开关:谁能部署、谁能调用、什么情况下必须暂停。

The Sequence Radar #87739thesequence.substack.com原文 ↗

thesequence.substack.com

TheSequence Radar #877 汇总 Anthropic、Apple、xAI、Bezos AI 等上周动向。它的价值不是深挖单点,而是把模型公司、消费端产品、资本和平台动作放在同一周视角中。对跟踪行业节奏的人来说,这类汇总适合做索引,再回到原始新闻核验细节。

Publishing WASM wheels to PyPI for use with Pyodide40simonwillison.net原文 ↗

simonwillison.net

Simon Willison 介绍 Pyodide 新版本后 Python 包可向 PyPI 发布 WASM wheels。digest 的关键事实是 Wasm wheel 进入普通 Python 包分发路径。它值得看是因为一旦包作者能直接发布 wasm artifact,浏览器端 Python 生态的可用包数量和安装体验都会受影响。

Mapping SQLite result columns back to their source table.column41simonwillison.net原文 ↗

simonwillison.net

Simon Willison 记录把 SQLite 查询结果列映射回源表字段的实验。这个问题对数据浏览器、notebook、自动文档和 AI SQL 助手都很实际:用户看到结果列时,系统要知道它来自哪个 table.column。它值得看是因为 provenance 在简单 SELECT 中容易,在 join、表达式、alias 和聚合中会迅速变成语义分析问题。

luau-wasm 0.1a042simonwillison.net原文 ↗

simonwillison.net

luau-wasm 0.1a0 是 Simon Willison 面向 WASM/Pyodide 的 Luau 包实验。digest 的核心信息是把 Luau 这种嵌入式脚本语言带入 wasm/Python 环境。它值得记录是因为浏览器端工具链正在变得更“多语言”,不再只围绕 JavaScript 和 Python。

Formal Methods and the Future of Programming43blog.janestreet.com原文 ↗

blog.janestreet.com

Jane Street 这篇索引汇总其形式化方法和编程实践文章。它不是单篇新论证,而是把验证、规格、类型系统和工程经验组织成入口。它值得看是因为 Jane Street 的形式化方法讨论通常从生产工程出发,而不是停留在教科书示例。

Swift at Apple: Migrating the TrueType hinting interpreter44swift.org原文 ↗

swift.org

Swift 官方博客介绍 Apple 将 TrueType hinting interpreter 迁移到 Swift。字体 hinting interpreter 属于兼容性敏感、边界条件密集的系统代码,迁移不能只追求语言现代化,还要保持渲染行为。它值得读是因为这是 Swift 进入底层系统组件的具体案例,能看到安全性、性能和历史语义之间的权衡。

Caddy compatibility for zeroserve46su3.io原文 ↗

su3.io

zeroserve 增加 Caddy 兼容性后,文章记录了吞吐和延迟表现。digest 的关键信息是兼容适配被 benchmark 化,而不是只宣布“支持”。它值得看是因为反向代理、协议行为和静态服务性能之间经常存在隐藏成本。

Building a serial and VGA "everything console"47oldvcr.blogspot.com原文 ↗

oldvcr.blogspot.com

这篇博客记录构建串口和 VGA 通用控制台的硬件项目。digest 的重点是把底层串口、显示输出和运维控制台需求结合成实物工具。它值得读是因为这类项目能暴露现代软件栈之外的真实接口问题:电气、固件、显示时序和可维护性。

引用来源 · References

61 条 · 引用
  1. 1 Kage. GitHubhttps://github.com/tamnd/kage ↩ 回到正文 · back to text
  2. 2 Afterburner. GitHubhttps://github.com/afterburner-sh/afterburner ↩ 回到正文 · back to text
  3. 3 RAIF. GitHubhttps://github.com/skrrt-sh/raif-standard ↩ 回到正文 · back to text
  4. 4 SkillSpector. GitHubhttps://github.com/NVIDIA/SkillSpector ↩ 回到正文 · back to text
  5. 5 code-review-graph. GitHubhttps://github.com/tirth8205/code-review-graph ↩ 回到正文 · back to text
  6. 6 Web Researcher MCP. GitHubhttps://github.com/zoharbabin/web-researcher-mcp ↩ 回到正文 · back to text
  7. 7 Bastion. Sourcehttps://bastion.computer/ ↩ 回到正文 · back to text
  8. 8 The Engineer. GitHubhttps://github.com/FarzamMohammadi/the-engineer ↩ 回到正文 · back to text
  9. 9 Agent Gate. GitHubhttps://github.com/sjh9714/Agent-Gate ↩ 回到正文 · back to text
  10. 10 Data-review. GitHubhttps://github.com/10fra/data-review ↩ 回到正文 · back to text
  11. 11 claim-memory-graph-sdk. GitHubhttps://github.com/MatteoLeonesi/claim-memory-graph-sdk ↩ 回到正文 · back to text
  12. 12 Manim-Studio. GitHubhttps://github.com/instavm/manim-studio ↩ 回到正文 · back to text
  13. 13 ScreenMind. GitHubhttps://github.com/ayushh0110/ScreenMind ↩ 回到正文 · back to text
  14. 14 Pg-status. GitHubhttps://github.com/krylosov-aa/pg-status ↩ 回到正文 · back to text
  15. 15 Pistachio. GitHubhttps://github.com/winebarrel/pistachio ↩ 回到正文 · back to text
  16. 16 Dual YOLOv8n UAV Detection on RK3588S. GitHubhttps://github.com/alebal123bal/khadas_yolov8n_multithread ↩ 回到正文 · back to text
  17. 17 Peek. Sourcehttps://getpeek.dev ↩ 回到正文 · back to text
  18. 18 GLM 5.2 Is Out. Sourcehttps://twitter.com/jietang/status/2065784751345287314 ↩ 回到正文 · back to text
  19. 19 Statement on US government directive to suspend access to Fable 5 and Mythos 5. Sourcehttps://news.ycombinator.com/item?id=48511072 ↩ 回到正文 · back to text
  20. 20 Amazon CEO's talks with U.S. officials triggered crackdown on Anthropic models. Sourcehttps://news.ycombinator.com/item?id=48519092 ↩ 回到正文 · back to text
  21. 21 KPMG pulls report on AI usage due to apparent hallucinations. Sourcehttps://techcrunch.com/2026/06/13/kpmg-pulls-report-on-ai-usage-due-to-apparent-hallucinations/ ↩ 回到正文 · back to text
  22. 22 State Attorneys General Are Investigating OpenAI. Sourcehttps://www.nytimes.com/2026/06/13/technology/states-investigating-openai.html ↩ 回到正文 · back to text
  23. 23 Derbyshire Police officer accused of using AI to 'create evidence'. Sourcehttps://www.bbc.com/news/articles/cy8wppwdxl6o ↩ 回到正文 · back to text
  24. 24 Police officer investigated for using AI to 'create evidence' in multiple cases. Sourcehttps://news.sky.com/story/derbyshire-police-officer-investigated-for-using-ai-to-create-evidence-in-multiple-cases-13553661 ↩ 回到正文 · back to text
  25. 25 Rio de Janeiro's "homegrown" LLM appears to be a merge of an existing model. GitHubhttps://github.com/nex-agi/Nex-N2/issues/4 ↩ 回到正文 · back to text
  26. 26 Arch Linux AUR Hit by Another Wave of Now More Sophisticated Malware Attack. Sourcehttps://www.phoronix.com/news/Arch-Linux-AUR-More-Malware ↩ 回到正文 · back to text
  27. 27 ReactOS achieves 3D-accelerated Half-Life on real hardware. Sourcehttps://www.phoronix.com/news/ReactOS-Running-Half-Life ↩ 回到正文 · back to text
  28. 28 Linux 7.1. Sourcehttps://lore.kernel.org/lkml/CAHk-=wi4BF4bMhZNZ1tqs+FFV4OuZRe3ZqdWB+LxRLmRweUzQw@mail.gmail.com/T/#u ↩ 回到正文 · back to text
  29. 29 Phoenix LiveView 1.2. Sourcehttps://phoenixframework.org/blog/phoenix-liveview-1-2-released ↩ 回到正文 · back to text
  30. 30 Pyodide 314.0: WebAssembly wheels for PyPI. Sourcehttps://blog.pyodide.org/posts/314-release/ ↩ 回到正文 · back to text
  31. 31 WASI 0.3. Sourcehttps://news.ycombinator.com/item?id=48504063 ↩ 回到正文 · back to text
  32. 32 Open source AI must win. Sourcehttps://news.ycombinator.com/item?id=48511908 ↩ 回到正文 · back to text
  33. 33 Don't trust large context windows. Sourcehttps://garrit.xyz/posts/2026-05-06-dont-trust-large-context-windows ↩ 回到正文 · back to text
  34. 34 No, everyone is not using AI for everything. Sourcehttps://gabrielweinberg.com/p/people-are-consuming-ai-like-they ↩ 回到正文 · back to text
  35. 35 AI coding at home without going broke. Sourcehttps://stephen.bochinski.dev/blog/2026/06/13/ai-coding-at-home-without-going-broke/ ↩ 回到正文 · back to text
  36. 36 Human Routers of Machine Words. Sourcehttps://borretti.me/article/human-routers-of-machine-words ↩ 回到正文 · back to text
  37. 37 The future of Siri, or: why private inference isn’t private enough. Sourcehttps://blog.cryptographyengineering.com/2026/06/09/apples-siri-ai-or-more-shouting-into-the-void-about-private-agents/ ↩ 回到正文 · back to text
  38. 38 Welcome to the AGI era of AI governance. Sourcehttps://www.interconnects.ai/p/welcome-to-the-agi-era-of-ai-governance ↩ 回到正文 · back to text
  39. 39 The Sequence Radar #877. Sourcehttps://thesequence.substack.com/p/the-sequence-radar-877-last-week ↩ 回到正文 · back to text
  40. 40 Publishing WASM wheels to PyPI for use with Pyodide. Sourcehttps://simonwillison.net/2026/Jun/13/publishing-wasm-wheels/#atom-everything ↩ 回到正文 · back to text
  41. 41 Mapping SQLite result columns back to their source table.column. Sourcehttps://simonwillison.net/2026/Jun/13/sqlite-column-provenance/#atom-everything ↩ 回到正文 · back to text
  42. 42 luau-wasm 0.1a0. Sourcehttps://simonwillison.net/2026/Jun/13/luau-wasm/#atom-everything ↩ 回到正文 · back to text
  43. 43 Formal Methods and the Future of Programming. Sourcehttps://blog.janestreet.com/formal-methods-at-jane-street-index/?from_theconsensus=1 ↩ 回到正文 · back to text
  44. 44 Swift at Apple: Migrating the TrueType hinting interpreter. Sourcehttps://www.swift.org/blog/migrating-truetype-hinting-to-swift/ ↩ 回到正文 · back to text
  45. 45 The experience of rendering Arabic typography and its technical debt. Sourcehttps://lr0.org/blog/p/arabic/ ↩ 回到正文 · back to text
  46. 46 Caddy compatibility for zeroserve. Sourcehttps://su3.io/posts/zeroserve-caddy-compat ↩ 回到正文 · back to text
  47. 47 Building a serial and VGA "everything console". Sourcehttp://oldvcr.blogspot.com/2026/06/building-serial-and-vga-everything.html ↩ 回到正文 · back to text
  48. 48 andrewyng/aisuite. GitHubhttps://github.com/andrewyng/aisuite ↩ 回到正文 · back to text
  49. 49 reflex-dev/reflex. GitHubhttps://github.com/reflex-dev/reflex ↩ 回到正文 · back to text
  50. 50 scikit-learn/scikit-learn. GitHubhttps://github.com/scikit-learn/scikit-learn ↩ 回到正文 · back to text
  51. 51 NVIDIA/physicsnemo. GitHubhttps://github.com/NVIDIA/physicsnemo ↩ 回到正文 · back to text
  52. 52 skypilot-org/skypilot. GitHubhttps://github.com/skypilot-org/skypilot ↩ 回到正文 · back to text
  53. 53 swc-project/swc. GitHubhttps://github.com/swc-project/swc ↩ 回到正文 · back to text
  54. 54 rerun-io/rerun. GitHubhttps://github.com/rerun-io/rerun ↩ 回到正文 · back to text
  55. 55 tauri-apps/tauri. GitHubhttps://github.com/tauri-apps/tauri ↩ 回到正文 · back to text
  56. 56 apache/arrow-rs. GitHubhttps://github.com/apache/arrow-rs ↩ 回到正文 · back to text
  57. 57 databendlabs/databend. GitHubhttps://github.com/databendlabs/databend ↩ 回到正文 · back to text
  58. 58 vercel/ai. GitHubhttps://github.com/vercel/ai ↩ 回到正文 · back to text
  59. 59 lobehub/lobehub. GitHubhttps://github.com/lobehub/lobehub ↩ 回到正文 · back to text
  60. 60 addyosmani/agent-skills. GitHubhttps://github.com/addyosmani/agent-skills ↩ 回到正文 · back to text
  61. 61 huggingface/OpenEnv. GitHubhttps://github.com/huggingface/OpenEnv ↩ 回到正文 · back to text