Glean 拾遗
Daily · timeline

A few picks a day.

Tue, Jul 14, 2026 3picks
← 07-13
Calendar ▾
2026 · 07
MoTuWeThFrSaSu ··12345678910111213141516171819202122232425262728293031
has picks today
06:01

High-Severity CVEs Spike 3.5x After Claude Mythos Release

Claude Mythos 问世后高危 CVE 激增 3.5 倍

In April 2026, Anthropic announced that Claude Mythos Preview could autonomously discover software vulnerabilities. Since then, Project Glasswing partners including Microsoft, Google, Apple, and AWS have used it to find and fix over 10,000 high- or critical-severity bugs. Data from Epoch shows that the number of such CVEs disclosed by 21 notable organizations surged to ~1,500 in June 2026 — more than 3.5x the previous monthly record before Mythos. OpenAI's Daybreak product has pursued similar efforts. The spike reflects both proactive patching and an overall increase in vulnerability discovery driven by frontier models, raising important questions for security researchers, AI safety policy makers, and open-source maintainers.

epoch.ai · 2 min · Ai Safety · Anthropic · CVE · Vulnerability Discovery
06:01

Lightweight terminal-based coding agent with local execution and cloud integration

轻量级终端编码智能体,本地运行、云端协作

Codex CLI is a lightweight coding agent from OpenAI that runs locally in your terminal, powered by your ChatGPT subscription or API key. Unlike IDE plugins or desktop apps, it offers a pure CLI experience tailored for terminal-centric developers. It supports macOS, Linux, and Windows and can be installed via shell script, npm, or Homebrew. Built with Rust and Bazel, it emphasizes performance and portability. Open-sourced under Apache-2.0, it's ideal for developers exploring command-line AI coding assistants.

github.com · 5 min · AI Engineering · CLI · Coding Agent · Developer Tools · Open Source
06:00

Your Worker can now have its own cache in front of it

Workers 迎来专属缓存:一行配置让 Worker 不再为重复请求买单

Cloudflare launched Workers Cache, a tiered cache that sits in front of your Worker, enabled by a single line in wrangler.jsonc (`"cache": { "enabled": true }`). On a cache hit, the Worker does not run and CPU time is not billed; on a miss, the Worker runs and populates the cache. It supports stale-while-revalidate, Vary-based content negotiation, and multi-tenant isolation via ctx.props. Unlike zone-level caches, Workers Cache belongs to the Worker itself, working on custom domains, workers.dev, and Workers for Platforms. Most notably, the cache sits in front of every Worker entrypoint, including those invoked via service bindings and ctx.exports, enabling developers to compose an app as a chain of entrypoints with per-entrypoint caching control. Framework integrations (including Astro) are available.

blog.cloudflare.com · 32 min · Caching · Cloudflare Workers · Edge Computing · Multi-tenant · Performance · Serverless