Pulse (last 3d) · Research 66 · Agents 47 · Products 31 · Legal 19 · Industry 18 · Open Source 18 · Models 17 · Releases 15 · Policy 14 · Media 9

Trending · Anthropic 10 · OpenAI 10 · Claude Code 5 · Codex 5 · GPT-6 Astra 5 · Google 5 · Jev 5 · Gemini 4 · Hugging Face 4 · ChatGPT 3 · Claude 3 · FDA 3


Three of today's strongest items are the same story told from different angles: the agent harness is becoming the product, and its supply chain is unaudited. Google open-sourced a Kubernetes-shaped control plane for agent fleets whose gRPC surface ships with no authentication; Zhipu's desktop coding agent was caught shipping entire Git histories to Aliyun object storage; and Claude Code moved auto-mode's permission classifier server-side in a way that silently re-bills you if a gateway strips the safeguards field. Meanwhile three separate arXiv entries attack the same thing from research: distill the harness into the model, self-improve the harness, benchmark agent memory on cost as well as accuracy. If you are standing up agent squads on clinical data, the thing to audit this quarter is not the model, it is everything between the model and the sandbox. agentexecutor.io | blog.ferstar.org | code.claude.com

  • Google open-sourced AX + Agent Substrate: full-state suspend/resume for agent actors, ~10x sandbox density, sub-500ms resume, and a v1alpha1 control plane with no auth. agentexecutor.io
  • Zhipu's ZCode desktop agent uploads the whole workspace including .git objects (86.6% of payload) to Aliyun OSS under a server-supplied RSA key you cannot decrypt. blog.ferstar.org
  • FDA already has a Model Master File framework that treats a validated model as a shareable regulatory reference object, DMF-style. fda.gov
  • Anthropic confirmed it runs a Bay Area wet lab where Claude directs physical biology experiments, built on a $400M Coefficient Bio acquisition. techcrunch.com
  • OpenAI stood up a math advisory group after claiming its models resolved 100+ open problems; the underlying claim is still vendor-reported. techcrunch.com
  • Claude Code 2.1.277 reads AGENTS.md, but only when no CLAUDE.md exists anywhere, and the whole feature sits behind a server-side statsig flag. raw.githubusercontent.com
  • DFlash block-diffusion speculative decoding measured at 2.95x on Qwen3.6-27B-4bit on Apple Silicon, 33.3 to 98.1 tok/s, with a published bench script. github.com

Four items today describe the same layer: the runtime, control plane and instruction files that sit between your model and your data. All four have a hole in them.

Google's AX gives you agent-fleet density, and a control plane that ships without authentication AX (agentexecutor.io, 577 points on HN) sits on Agent Substrate, a Kubernetes-backed runtime that multiplexes stateful agent actors onto a small worker pool using full-state suspend and resume: claimed 10x sandbox density, sub-500ms resume, 500+ suspend/resume cycles. The architectural idea is the real news, because it treats an agent as a suspendable actor rather than a long-lived container, which is exactly the shape you want when a hundred squad agents are each idle 95% of the time. But the v1alpha1 gRPC control plane ships with no authentication, so this is a v1-and-wait dependency, not a Q4 adoption. For an agent squad running on clinical data, "the control plane has no authN" is a full stop, not a caveat: read the design, do not run the code. agentexecutor.io | github.com

ZCode silently uploads full Git history to Aliyun OSS, encrypted so only the vendor can read it Zhipu's ZCode desktop coding agent packages the complete workspace, with .git objects making up 86.6% of the payload (full commit history, LFS cache, reflogs), plus source and global app config, encrypts it with a server-supplied RSA public key, and ships it to Aliyun object storage. The private key is cloud-only, so the ciphertext is unreadable to the user, which means you cannot audit what left your machine. This is single-source reverse engineering from one blog, not a vendor disclosure or a CVE, so treat the mechanism as reported rather than confirmed. The generalizable lesson for anyone running coding agents on a machine that has ever touched patient-adjacent code: a desktop agent's telemetry path is a data-egress path, and full Git history carries far more than the working tree. blog.ferstar.org

Claude Code's server-side safety classifier re-bills you when a gateway strips its fields Claude Code 2.1.278 defaults auto mode's permission classifier to server-side execution for API, Enterprise, Bedrock, Vertex and Foundry sessions, at no charge. The failure mode is the interesting part: if a gateway or proxy in the request path strips the safeguards field or rewrites safeguardresults, the classifier falls back to a billed path silently. That is an instrument that fails toward a plausible outcome rather than an error, which is the hardest class of failure to notice. If you run a LiteLLM or similar gateway in front of Claude Code for your squads, the safeguards field is now a thing your proxy config must be verified to preserve, and the evidence is your bill rather than a log line. code.claude.com

AGENTS.md support in Claude Code is total-precedence and flag-gated, which changes the consolidation call Version 2.1.277 reads AGENTS.md as project instructions, the first time Anthropic's flagship tool natively consumes the standard OpenAI contributed to the Linux Foundation's Agentic AI Foundation. Two details decide whether you act on it: the fallback is all-or-nothing, so any CLAUDE.md, CLAUDE.local.md or .claude/CLAUDE.md anywhere in the tree suppresses AGENTS.md entirely, and the feature sits behind a server-side statsig flag (tenguagentsmdmod), so behavior can differ between two machines on the same version. Consolidating to a single AGENTS.md is safe for a repo used by both Claude Code and Codex; it is not safe for a Bedrock or Vertex deployment where you cannot see which side of the flag a given session lands on. Check the flag state before you delete a CLAUDE.md you would have to recreate. raw.githubusercontent.com | theregister.com

Five papers today, from three sources, all treat scaffolding as the trainable object. That is a different bet from "wait for the next model."

SIFT gets a self-improving coding agent to 35.1% on Polyglot-225 at a tenth the CPU hours SIFT ranks candidates in a self-improving coding agent's tree search using a cheap pairwise LLM judge with Bradley-Terry scoring, reporting 35.1% on Polyglot-225 with o3-mini against DGM's 30.7%, at roughly 10x less compute. The cost ratio matters more than the accuracy delta: it says the bottleneck in self-improving agents was candidate ranking, not candidate generation. This is a preprint with no independent replication. If it holds, the pattern transfers directly to any agent squad that generates many candidate fixes and needs a cheap way to order them before spending a frontier model on verification. arxiv.org

Two papers try to delete the harness by folding it into the model, and one tries to make it improve itself Harness-Zero distills agent-harness behavior into the underlying model using an agent-as-harness setup, and RRSI proposes a regularized recursive self-improvement loop for harnesses under constraints. Read together with SIFT they form one thesis: the scaffolding you hand-wrote is training data, and the regularization terms are what stop it from wandering. All three are unreplicated preprints. The practical read for a squad owner is defensive rather than adoptive: any harness logic you write today is a candidate for being absorbed into a model in 12 months, so keep the parts that encode your domain constraints separate from the parts that encode generic agent plumbing. arxiv.org | arxiv.org

DolphinBench maps agent memory on accuracy against cost, and says prior memory benchmarks asked the wrong question DolphinBench charts the Pareto frontier of agent memory systems on both accuracy and cost, and explicitly criticizes the conversational-QA format that earlier memory benchmarks used. That critique is the contribution: conversational QA rewards recall of things a human said, which is not the workload an agent memory actually serves. Jev-Mem, separately, proposes a fast System-One-style controller governing memory operations for efficiency, which is a candidate point on exactly that frontier. If you are choosing a memory layer for agent squads, a cost-aware frontier is the evaluation you can actually spend against, and neither of these has independent replication yet. arxiv.org | huggingface.co

Two evaluation papers make the same argument from opposite directions: your checker is unmeasured Mutation analysis on GPU-kernel benchmark oracles finds that current random-input, loose-tolerance checkers are weak at catching incorrect kernels. OSWorld-Pro extends the computer-use benchmark to score how an agent completed a task rather than only whether the final state matched. Both say the same thing: an outcome-only oracle certifies whatever passes it, and nobody had measured the oracle. This is the most directly transferable idea in today's feed for clinical AI work, where the acceptance test is usually the weakest link in the chain and the one nobody funds. huggingface.co | arxiv.org

One regulatory item and one industry item, pointing at the same emerging question: who validates a model that acts on biology, and what artifact does that validation produce.

FDA's Model Master File is a DMF-style framework for sharing a validated model as a regulatory reference object The agency already operates a Model Master File mechanism, structurally analogous to the Drug Master File: a validated model is submitted once and referenced by other submissions rather than revalidated in each. It has been used mostly in generics, and the open question flagged here is whether QMIN is the program where it breaks out of that lane. This matters more than most policy items because it is a mechanism that exists rather than a proposal: it defines what a "validated model" is as a regulatory artifact, which is the thing product teams normally have to invent per submission. If you ship models into life-sciences workflows, the MMF is the existing path by which your validation work becomes reusable across customers rather than being repeated per engagement. fda.gov

Anthropic confirmed a Bay Area wet lab where Claude directs physical biology experiments The lab is built on the $400M Coefficient Bio acquisition, and the framing is that Claude directs the experiments rather than analyzes their results. A frontier lab vertically integrating into wet-lab biology changes the competitive picture for anyone whose moat is proprietary assay data: the model vendor is now a party that generates biological data, not only a party that reads yours. This is a confirmation reported through a newsletter citing TechCrunch, so the operational detail (scale, assay types, what "directs" means) is thin. Worth watching specifically for whether the data generated there flows back into model training, because that determines whether this is a research capability or a competing data moat. techcrunch.com

The frontier is announcing parameter counts in the trillions while the practical wins are all in making small models fast on hardware you already own. Both are real. Only one of them is a budget line you control.

DFlash on Apple Silicon: 2.95x measured on Qwen3.6-27B-4bit, with the bench script published bstnxbt/dflash-mlx (785 stars) publishes a full baseline-versus-DFlash table: Qwen3.6-27B-4bit goes from 33.3 tok/s autoregressive to 98.1 tok/s with block-diffusion speculative decoding, at 84.7% acceptance on 1K tokens, holding roughly 2.8-3.1x across the range. The important part is that the benchmark script ships with it, so this is reproducible on your own M4 Max rather than a claimed number. A 3x on local inference changes which workloads are worth keeping off a metered gateway entirely, which is a direct line in your inference budget rather than a research curiosity. github.com

The trillion-parameter announcements are all reported plans, not shipped models Alibaba reportedly plans models at 5 to 10 trillion parameters alongside a new in-house chip, and DeepSeek is reportedly training a 2T model with an 8T planned. Both are secondhand reports via Reuters and Reddit respectively, with no weights, no benchmarks and no dates. Set against Huawei shelving its global AI chip rollout because Chinese domestic demand has exhausted supply, the pattern is capacity-constrained ambition rather than imminent availability. Nothing here changes a procurement decision this quarter; it is a reason to keep your serving stack model-agnostic rather than to plan for a specific ceiling. reuters.com | reddit.com | tomshardware.com

Kev ships open Jev-like decision models, and its own table shows the Qwen3.5 base is a trap on Apple Silicon Jared Palmer released Kev (Apache-2.0), a 0.8B/4B/9B family of Jev-like decision models on Qwen3.5 bases, with training code, frozen eval suites and a server speaking TypeSafe's System One API. The 9B fits a 32GB Mac. The honest detail is in the repo's own serving table: the Qwen3.5 generation runs 4-7x slower on Apple Silicon than the alternatives, so a local-first decision-model deployment on Mac hardware gets a controlled experiment and a performance penalty in the same package. Useful as a reference implementation for a judge or gating model you can actually train, less useful as something to put in a latency-sensitive path on a Mac. github.com | reddit.com

Distillation gradient estimation may need only 1% of tokens A new paper reports that as little as 1% of tokens can suffice for gradient estimation in on-policy distillation. If it replicates, it collapses the cost of the distillation step specifically, which is the step between "a frontier model solves this" and "a model I can afford to serve solves this." Single-source preprint, no independent replication. Flagging it because the distillation budget is usually the reason a good frontier result never becomes a shipped product feature. huggingface.co

One story, three sources, and a genuine disagreement between what the viral version says and what the company published.

OpenAI formed a math advisory group after claiming 100+ resolved open problems, and the sourcing degrades as the claim gets bigger The verifiable fact is the advisory group: OpenAI published it, and TechCrunch covered it as a response to its AI resolving more than 100 open math problems. The viral X version goes considerably further, claiming an internal model trained for only 24 days did the work, with an independent assessment group including Witten, Gowers and Hairer. OpenAI's own post announces the advisory group and does not carry the 24-day training claim, so believe the advisory group, treat "100+ open problems" as vendor-reported without a public problem list, and discount the 24-day figure entirely until someone names a source. What it changes for you: if frontier models are genuinely closing open problems in a formally verifiable domain, the same verification argument does not transfer to clinical inference, where there is no proof checker, and that asymmetry is worth having ready the next time someone in a leadership meeting reasons from the math result to a medical one. openai.com | techcrunch.com | x.com

  • Arcjet - runtime security primitives called inside your app to detect prompt injection and authorize agent tool calls before the action happens, which is the missing layer in every harness item above. producthunt.com
  • ProgressGate - uses TypeSafe Jev to detect an agent taking different actions without making progress, returning CONTINUE/WARN/REPLAN/HALT before the next model call. producthunt.com
  • Sai - fleet of autonomous computers driving legacy desktop apps and internal portals by screen interaction, claiming 73% on OSWorld, relevant wherever a life-sciences system has no API. producthunt.com
  • Pirate Face - checksum-verified torrent mirrors of Hugging Face open-weights models, so a deleted model falls back to a peer swarm with identical bytes; a real answer to reproducibility when a weight file disappears. pirateface.co
  • phantom-kv - removes refusals by injecting an ~18MB trained KV-cache bank with no weight changes, unloadable at any time, which is a jailbreak vector that leaves no model-file diff to audit. reddit.com
  • SLICEChat - progressive in-encoder token pruning to make whole-slide pathology vision-language models tractable, the one directly clinical-imaging item in today's arXiv batch. arxiv.org
  • The Copy Ceiling - an input-exposure control governing how much an ontology-grounded generator copies from a curated corpus versus generates freely, which is the shape of a real guardrail for RAG over proprietary data. arxiv.org
  • Pinocchio - fast uncertainty estimates for black-box, API-only language models, the case you are actually in when the model is a vendor endpoint. arxiv.org
  • SELF-INDEX - an LLM loop rewrites index keys of under-retrieved documents, lifting BM25 BRIGHT nDCG@10 from 14.5 to 20.4; the announced code repo is empty, so the gain is unverified. arxiv.org
  • Nabsun - MIT-licensed Chromium with a local Qwen3 1.7B assistant that runs offline on CPU, asks before any mutating action, and exposes itself as an MCP server. producthunt.com
  • Gradio Workflow - visual node canvas wiring Hugging Face Spaces, models, datasets and your own Python, with intermediate inputs inspectable and a REST endpoint. producthunt.com
  • Amazon blocked Meta's Muse agent after Meta refused a removal request, the first real access-control fight over third-party shopping agents. theverge.com | reddit.com
  • DOJ brief calling AI training fair use in NYT v. OpenAI reportedly blindsided the Copyright Office and patent office. axios.com
  • Universal and Sony sued Suno again over 60,202 recordings, arguing that training v6 on an infringing model's outputs launders the infringement; a distillation-provenance theory worth tracking. musicbusinessworldwide.com
  • New state chatbot-safety laws carry exemptions matching Google-lobbied language that could cover ChatGPT, Claude and Gemini. npr.org
  • Politico's inside account of the White House's 19-day June standoff with Anthropic over Claude Fable. politico.com
  • Reported "rogue AI escapes" were network-connected software sandboxes, not air-gapped systems, which reframes them as infrastructure failures. reddit.com
  • Linear reworked CI because AI-generated code volume made it the bottleneck, with the discussion arguing review and human testing are now the real constraint. linear.app
  • Cloudflare Python Workers hit GA, running Python on V8 isolates via WASM. blog.cloudflare.com
  • Emergent Collusion in Long-Horizon LLM Agent Interaction - whether multi-agent systems collude over long horizons, a governance question for any multi-agent squad. arxiv.org
  • Human-LLM Deliberation as Interactive Proof - conditions under which outputs are verifiable without transparency, directly relevant to validating a vendor model you cannot inspect. arxiv.org
  • Critical-State RL - identifies which states in a multi-turn tool-use trajectory are worth training on. arxiv.org
  • Supra2-IMG - a 100M-parameter text-to-image DiT trained in under 10 hours on one H100, open release, claiming SOTA at 256x256. reddit.com
  • Yandex AliceAI-Foundation-80B-A3B-Base - Russian open-weight MoE base positioned against Qwen 35B and DeepSeek V4 Flash. reddit.com
  • Meta's Muse took the #1 US free iPhone spot from ChatGPT and is outpacing ChatGPT's early mobile curve. 9to5mac.com | techcrunch.com
  • Google Labs opened CC, a family agent running calendars, forms and meal plans on its own cloud computer, US-only by invite. labs.google.com
  • Manus raising $500M at $4B after the $2B Meta sale collapsed in April. techcrunch.com
  • California tightened rules on AI data center energy and water use; Virginia banned state NDAs on data center projects and formed an AI task force. theverge.com | cardinalnews.org
  • House China committee chair urged tighter chip controls before Xi's visit, calling China "not a long term market for American AI". 933thedrive.com
  • Zvi's September roundup is out, if you want the month in one pass. thezvi.substack.com
  • OpenAI published its position on building standards for the next phase of AI. openai.com
  • mathmain npm package used an encrypted loader; JFrog research cracked it and revealed the second stage, a live supply-chain case in the dependency tree your agents install from. safedep.io
  • M5 Ultra Mac Studio reviewed as a local-agent machine, relevant if the DFlash numbers above tempt you toward more local serving. macstories.net
  • Fruit-fly-inspired olfactory model learns new odors from few samples with a far smaller memory footprint, a real few-shot efficiency result outside the transformer lane. reddit.com
  • Robotics/VLA batch: transferring VLM intelligence to robot control, CARE corrective execution, world-model distillation into compact policies, HuRo robotizing human video, Grounded Action Model, DexTacWAM visuo-tactile manipulation, WorldCrafter 3D-aware video memory. Adjacent to your lane, moving fast, no action today. huggingface.co | huggingface.co | huggingface.co | huggingface.co | huggingface.co | arxiv.org | arxiv.org
  • onPanda - token-level correction for cheap on-policy alignment data annotation. arxiv.org
  • Conformalized quantile regression under known covariate shift - minimax limits of fixed-score calibration, the theory behind any deployed uncertainty guarantee that must survive a distribution shift. arxiv.org
  • Symbolic distillation of prognostic variables for climate convective parameterizations - an interpretability method for scientific ML that transfers beyond climate. arxiv.org
  • OmniEdu - open foundation models purpose-built for learning and teaching. huggingface.co

Dropped 21 items: leaderboard screenshots and community benchmark charts with no methodology (Grok 4.7 vs Fable 5.1, Step 5 Preview, Mimo v2.6, the Jev calibration gallery, the frontier-model comparison thread), aggregator roundup tweets, opinion essays with no new fact ("Mathematics Is Effectively Dead", the senior-engineer essay), a transformer explainer, duplicate arXiv/HuggingFace postings of papers already covered above, and non-AI items (fusion tokamak, Runway frame rate, voice-AI procurement signal, game-agent and social-simulation benchmarks with no clinical or agent-squad transfer).