<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>AI Update</title>
<link>https://panel.github.io/ai-update/</link>
<atom:link href="https://panel.github.io/ai-update/feed.xml" rel="self" type="application/rss+xml"/>
<description>Trends, techniques, tools &amp; mental models in AI — Sundays &amp; Wednesdays</description>
<language>en</language>
<lastBuildDate>Sun, 05 Jul 2026 14:51:26 +0000</lastBuildDate>
<item>
<title>The Model Grows Into Its Harness</title>
<link>https://panel.github.io/ai-update/editions/2026-07-05.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-07-05.html</guid>
<pubDate>Sun, 05 Jul 2026 00:00:00 +0000</pubDate>
<description>The frontier is getting measurably better at exactly one thing — the tool it was trained inside — just as agents start learning memory and skills as trainable habits, and the bills finally come due.</description>
<content:encoded><![CDATA[<h1>The Model Grows Into Its Harness</h1>
<p><em>The frontier is getting measurably better at exactly one thing — the tool it was trained inside — just as agents start learning memory and skills as trainable habits, and the bills finally come due.</em></p>
<h2>The Big Picture</h2>
<p>The most useful thing to land this week wasn&rsquo;t a model or a benchmark; it was a diagnosis. Armin Ronacher noticed that Anthropic&rsquo;s newest models — Opus 4.8, Sonnet 5 — are <em>worse</em> than their predecessors at driving his custom edit tool, inventing schema keys the tool then rejects. His theory, and it&rsquo;s a good one: these models have been RL-trained to excel at the specific edit tools baked into Claude Code, and that specialization actively degrades their behavior in foreign harnesses. If that&rsquo;s right, &ldquo;which model is best&rdquo; is no longer a question you can answer independently of &ldquo;in which harness.&rdquo; The frontier is optimizing for its home turf, and everyone building an alternative agent loop is now downstream of that decision.</p>
<p>That coupling is showing up elsewhere as a reliability story: a widely-read <a href="https://github.com/openai/codex/issues/30364">Codex issue</a> alleging that GPT-5.5&rsquo;s reasoning-token clustering silently degrades performance, and a &ldquo;short leash&rdquo; method making the rounds precisely because people can no longer trust a capable model to run unsupervised. The mental model to carry forward: capability and controllability are diverging, and the harness is where they meet.</p>
<p>Meanwhile the meter is running. Anthropic&rsquo;s Fable pricing is about to jump, triggering a small gold rush of &ldquo;use it while you can&rdquo; — Simon Willison shipped an entire <a href="https://simonwillison.net/2026/Jul/5/sqlite-utils-fable/">sqlite-utils 4.0 release cycle</a> largely written by Fable for about $150. Meta reportedly <a href="https://mlq.ai/news/meta-caps-internal-ai-token-spending-after-costs-approach-billions-in-2026/">capped internal token spending</a> after costs neared the billions. Course creators are watching revenue halve. The era of treating inference as free is closing.</p>
<p>And underneath the noise, the research frontier is quietly shifting from one-shot generation toward <em>loops</em>: memory and skills treated as things a model learns to do well, not just context you stuff into a prompt. That&rsquo;s the part worth watching, because it changes what an &ldquo;agent&rdquo; is.</p>
<h2>Themes</h2>
<h3>Trained to the harness</h3>
<p>The clearest new idea of the week is that models are now shaped by the tools they were trained to use, and that shaping doesn&rsquo;t generalize. <a href="https://simonwillison.net/2026/Jul/4/better-models-worse-tools/">Better Models: Worse Tools</a> is the essential read — newer, stronger Claude models misuse custom edit tools that older ones handled fine, most plausibly because RL has tuned them to Claude Code&rsquo;s own search-and-replace edit format. The implication for anyone building a harness is uncomfortable: you may need to mimic the model vendor&rsquo;s tool schemas rather than design your own. Seen through this lens, the <a href="https://github.com/openai/codex/issues/30364">GPT-5.5 Codex degradation report</a> (327 points) and the popularity of the <a href="https://blog.okturtles.org/2026/07/short-leash-ai-method/">short-leash method for beating Fable</a> (195 points) are the same story from the operator&rsquo;s side: the more the model is optimized for a proprietary loop, the more everyone else has to babysit it.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jul/4/better-models-worse-tools/">Better Models: Worse Tools</a> · <a href="https://github.com/openai/codex/issues/30364">The Codex reasoning-token issue</a> · <a href="https://blog.okturtles.org/2026/07/short-leash-ai-method/">The short-leash method</a></p>
<h3>Memory and skills become trainable</h3>
<p>Last edition&rsquo;s &ldquo;software factory&rdquo; argument was about org charts. The papers landing this week are about the primitive underneath it: agents that <em>learn how to remember and how to use skills</em>, rather than being handed static context. <a href="https://huggingface.co/papers/2607.01224">AutoMem</a> treats memory management as a trainable metacognitive skill — the model decides what to encode and retrieve, with file operations promoted to first-class actions. <a href="https://huggingface.co/papers/2607.02255">AgenticSTS</a> (46 upvotes) and <a href="https://huggingface.co/papers/2607.01874">SkillCoach</a> push the same direction from the evaluation side: bounded-memory contracts and self-evolving rubrics that expose failures which final-answer accuracy hides. <a href="https://huggingface.co/papers/2607.02440">EvoPolicyGym</a> isolates &ldquo;autonomous policy evolution&rdquo; as its own measurable thing.</p>
<p>This is the research backbone under Latent Space&rsquo;s <a href="https://www.latent.space/p/autoresearch-introspection">autoresearch and self-improving loops</a> coverage, and it dovetails with a practical tip Simon picked up from the Claude Code team: stop dictating <em>how</em> the agent works and let it <a href="https://simonwillison.net/2026/Jul/3/judgement/">use its own judgement</a> about when to write tests or delegate to a cheaper model. The through-line — from &ldquo;The Log is the Agent&rdquo; to skill rubrics — is that the agent&rsquo;s own trajectory is becoming the training signal. Early, but this is clearly landing.</p>
<p>Go deeper: <a href="https://huggingface.co/papers/2607.01224">AutoMem</a> · <a href="https://huggingface.co/papers/2607.02255">AgenticSTS</a> · <a href="https://huggingface.co/papers/2607.01874">SkillCoach</a> · <a href="https://simonwillison.net/2026/Jul/3/judgement/">Fable&rsquo;s judgement</a> · <a href="https://arxiv.org/abs/2605.21997">The Log is the Agent</a></p>
<h3>The meter is running</h3>
<p>The economics stopped being abstract this week. Simon&rsquo;s Fable-authored <a href="https://simonwillison.net/2026/Jul/5/sqlite-utils-fable/">sqlite-utils release</a> is a delight — Fable caught five genuine release-blocker bugs, including a <code>delete_where()</code> that never commits and poisons the connection — but the framing is telling: he&rsquo;s front-loading work <em>before the price rises</em>, and Jesse Vincent&rsquo;s advice is to have Fable delegate small tasks to cheaper models to conserve tokens. When the best coding help on the market has a burn rate you actively manage, cost has become an engineering constraint. Meta&rsquo;s reported <a href="https://mlq.ai/news/meta-caps-internal-ai-token-spending-after-costs-approach-billions-in-2026/">token cap</a> says the same at hyperscaler scale.</p>
<p>The demand side is contracting too. Josh Comeau reports course <a href="https://simonwillison.net/2026/Jul/3/josh-w-comeau/">revenue down 50%+</a> — partly because LLMs now tutor for free off scraped work, partly because learners doubt dev jobs will exist to justify the study. And Elena Verna&rsquo;s <a href="https://www.elenaverna.com/p/please-stop-the-ai-confidence-theater">&ldquo;please stop the AI confidence theater&rdquo;</a> (233 points) names a related rot: overconfident AI output crowding out honest uncertainty.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jul/5/sqlite-utils-fable/">sqlite-utils 4.0, written by Fable for $149.25</a> · <a href="https://mlq.ai/news/meta-caps-internal-ai-token-spending-after-costs-approach-billions-in-2026/">Meta caps internal token spend</a> · <a href="https://simonwillison.net/2026/Jul/3/josh-w-comeau/">Josh Comeau on collapsing course sales</a> · <a href="https://www.elenaverna.com/p/please-stop-the-ai-confidence-theater">The AI confidence theater</a></p>
<h3>The right to run local intelligence — an update</h3>
<p>The &ldquo;local keeps closing the gap&rdquo; thread we&rsquo;ve tracked took a political turn. <a href="https://righttointelligence.org/">righttointelligence.org</a> hit 544 points on HN — the highest signal of the period — arguing for a legal right to run models on your own hardware. That framing lands harder now that the capability is genuinely there: <a href="https://www.reddit.com/r/LocalLLaMA/comments/1unyvnz/longcat_20_16t_48b_active_weights_are_now_open/">longcat 2.0</a>, a 1.6T-parameter (≈48B active) model, is now open under MIT. On the practical side, the community is getting sharper about what actually matters: a <a href="https://www.reddit.com/r/LocalLLaMA/comments/1unrse9/i_benchmarked_13_models_at_65k128k_context_to/">long-context benchmark of 13 models</a> argues that for agentic workloads <em>prefill dominates and KV head count beats parameter count</em> — a useful corrective to token-generation-speed obsession. And fine-tuning is following inference down to consumer hardware: <a href="https://www.reddit.com/r/MachineLearning/comments/1unl62q/if_your_gpu_can_run_inference_it_should_be_able/">USAF</a> fine-tunes Qwen3-30B-A3B on a 12GB AMD card by training sparse experts and the router.</p>
<p>Go deeper: <a href="https://righttointelligence.org/">Right to Intelligence</a> · <a href="https://www.reddit.com/r/LocalLLaMA/comments/1unyvnz/longcat_20_16t_48b_active_weights_are_now_open/">longcat 2.0 goes MIT</a> · <a href="https://www.reddit.com/r/LocalLLaMA/comments/1unrse9/i_benchmarked_13_models_at_65k128k_context_to/">What actually matters at 128K context</a> · <a href="https://www.reddit.com/r/MachineLearning/comments/1unl62q/if_your_gpu_can_run_inference_it_should_be_able/">USAF sparse MoE fine-tuning</a></p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1unyvnz/longcat_20_16t_48b_active_weights_are_now_open/">longcat 2.0</a></strong> — 1.6T-parameter (~48B active) weights now open under MIT; the open-weights ceiling keeps rising.</li>
<li><strong><a href="https://github.com/facebook/astryx">facebook/astryx</a></strong> — An open, fully-customizable, &ldquo;agent-ready&rdquo; design system; 4,760 stars this week and a clear signal that UI libraries are being rebuilt for agents to consume.</li>
<li><strong><a href="https://github.com/browser-use/browser-use">browser-use</a></strong> — Makes websites navigable for AI agents (1,805 stars this week); the plumbing for the &ldquo;agents drive the browser&rdquo; era.</li>
<li><strong><a href="https://github.com/vercel-labs/deepsec">vercel-labs/deepsec</a></strong> — A security harness that hunts codebase vulnerabilities using coding agents (1,801 stars); agents pointed at defense, not just feature work.</li>
<li><strong><a href="https://github.com/ChromeDevTools/chrome-devtools-mcp">chrome-devtools-mcp</a></strong> — Official Chrome DevTools exposed as an MCP server for coding agents (1,213 stars); first-party tooling for agent-driven debugging.</li>
<li><strong><a href="https://github.com/allenai/olmocr">allenai/olmocr</a></strong> — Toolkit for linearizing PDFs into clean LLM training data (1,229 stars); the unglamorous but load-bearing work of dataset prep.</li>
<li><strong><a href="https://simonwillison.net/2026/Jul/4/building-a-world-map-with-only-500-bytes/">Building a World Map with only 500 bytes</a></strong> — Codex-assisted trick generating an ASCII world map from 445 bytes via <code>fetch()</code> on a <code>data:</code> URI piped through <code>DecompressionStream</code>; a lovely reminder of what&rsquo;s still worth hand-crafting.</li>
<li><strong><a href="https://www.producthunt.com/products/retrace-2">Retrace</a></strong> — Debug AI agents by replaying and forking runs; the observability layer for non-deterministic loops is starting to form.</li>
<li><strong><a href="https://github.com/Trystan-SA/claude-design-system-prompt">Claude Design System Prompt</a></strong> — A shared system prompt for consistent Claude-generated UI (83 points); prompt artifacts are becoming reusable infrastructure.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong><a href="https://simonwillison.net/2026/Jul/2/understand-to-participate/">Understand to participate</a></strong> — Geoffrey Litt&rsquo;s AIE framing on avoiding &ldquo;cognitive debt&rdquo; as agents write ever-larger changes: you have to understand the code deeply enough to remain a creative participant, not a rubber stamp. The counterweight to the software-factory hype, and the mental model most worth internalizing this week.</li>
<li><strong><a href="https://deepmind.google/blog/google-deepmind-and-a24-announce-first-of-its-kind-research-partnership/">Google DeepMind × A24</a></strong> — A frontier lab and an arthouse film studio announce a research partnership. Thin on detail, but a notable signal about where generative video and creative tooling are heading — worth a bookmark before the substance lands.</li>
<li><strong><a href="https://japannews.yomiuri.co.jp/science-nature/technology/20260306-314930/">Japan&rsquo;s top court: AI can&rsquo;t be a patent inventor</a></strong> — 395 points. Another jurisdiction drawing the line on machine authorship; the IP scaffolding around AI-generated work is hardening, and it matters for anyone shipping agent-built artifacts.</li>
</ul>]]></content:encoded>
</item>
<item>
<title>The Glass Lifts</title>
<link>https://panel.github.io/ai-update/editions/2026-07-01.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-07-01.html</guid>
<pubDate>Wed, 01 Jul 2026 00:00:00 +0000</pubDate>
<description>Commerce reversed itself: the two most capable models of the month are back online, and Anthropic shipped a deliberately weaker sibling to slip through the door. Meanwhile the AI Engineer World's Fair spent the week arguing that the org chart is melting into a "software factory."</description>
<content:encoded><![CDATA[<h1>The Glass Lifts</h1>
<p><em>Commerce reversed itself: the two most capable models of the month are back online, and Anthropic shipped a deliberately weaker sibling to slip through the door. Meanwhile the AI Engineer World&rsquo;s Fair spent the week arguing that the org chart is melting into a &ldquo;software factory.&rdquo;</em></p>
<h2>The Big Picture</h2>
<p>Three days ago the story was a frontier behind glass — Fable 5 and Mythos 5 announced but unusable, walled off by export controls. That wall came down. Anthropic <a href="https://simonwillison.net/2026/Jun/30/anthropic/#atom-everything">reports the Department of Commerce has lifted controls</a> on both models and is <a href="https://www.latent.space/p/ainews-sonnet-5-today-and-fable-5">restoring access</a>; &ldquo;everything is open again,&rdquo; as Latent Space put it. The more interesting move is the one Anthropic made <em>before</em> the reversal: <a href="https://www.anthropic.com/news/claude-sonnet-5">Claude Sonnet 5</a> ships close to Opus 4.8 in quality but was engineered to be <a href="https://simonwillison.net/2026/Jun/30/claude-sonnet-5/#atom-everything">meaningfully less capable at cyber tasks than Mythos 5</a>, which let it clear the same safeguard bar as the older Opus models and ship unblocked. Capability throttling as a release strategy is a genuinely new wrinkle in the two-track world — worth watching whether other labs adopt the pattern.</p>
<p>The other dominant theme came out of the AI Engineer World&rsquo;s Fair, where the recurring words were &ldquo;loops,&rdquo; &ldquo;software factories,&rdquo; and &ldquo;forward deployed engineers.&rdquo; The claim, most forcefully from <a href="https://www.latent.space/p/software-factories">Warp&rsquo;s Zach Lloyd</a>, is that every major software project will soon run on an automated factory, and that the traditional split between engineering, product, and design is dissolving into a single new role. That&rsquo;s not just conference talk: Anthropic&rsquo;s own Claude Code lead sketched <a href="https://nitter.net/bcherny/status/2071379474277613732#m">five emerging archetypes</a> — Prototyper, Builder, Sweeper, Grower — that cut across old job titles, and Gusto&rsquo;s CTO described <a href="https://www.lennysnewsletter.com/p/no-figma-no-jira-no-docs-how-gusto">shipping a full product line in ten weeks with a five-person team, no Figma, no Jira, no docs</a>.</p>
<p>Underneath the optimism, a counter-current hardened. Godot <a href="https://www.pcgamer.com/gaming-industry/open-source-game-engine-godot-will-no-longer-accept-ai-authored-code-contributions-we-cant-trust-heavy-users-of-ai-to-understand-their-code-enough-to-fix-it/">banned AI-authored contributions outright</a>, Brown is dealing with <a href="https://english.elpais.com/education/2026-06-28/ai-fraud-at-brown-university-academic-integrity-is-at-risk.html">mass AI exam fraud</a>, and Ford quietly <a href="https://techcrunch.com/2026/06/28/ford-rehires-gray-beard-engineers-after-ai-falls-short/">rehired veteran engineers after AI fell short</a>. The reviewability problem from last edition hasn&rsquo;t gone anywhere — it&rsquo;s just getting institutional.</p>
<h2>Themes</h2>
<h3>The frontier un-gated (an update)</h3>
<p>The gating story from Saturday inverted within days. Beyond the <a href="https://simonwillison.net/2026/Jun/30/anthropic/#atom-everything">lifted export controls</a>, the mechanics of the Sonnet 5 launch are the real signal: a new tokenizer, no more <code>temperature</code>/<code>top_p</code>/<code>top_k</code> sampling parameters, a 1M-token context window with 128k max output, and adaptive thinking on by default — all at <a href="https://simonwillison.net/2026/Jun/30/claude-sonnet-5/#atom-everything">Sonnet 4.6 pricing</a>. Lenny Rachitsky&rsquo;s <a href="https://www.lennysnewsletter.com/p/sonnet-5-review-i-ran-64-generations">64-generation blind bench</a> across five frontier models is the more useful artifact than any launch post — it&rsquo;s the kind of independent eval that now matters more than the system card.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jun/30/claude-sonnet-5/#atom-everything">What&rsquo;s new in Sonnet 5</a> · <a href="https://www.latent.space/p/ainews-sonnet-5-today-and-fable-5">Sonnet 5 today, Fable 5 tomorrow</a> · <a href="https://www.lennysnewsletter.com/p/sonnet-5-review-i-ran-64-generations">Lenny&rsquo;s 64-generation review</a></p>
<h3>Software factories and the melting of roles</h3>
<p>If you read one theme this week, read this one. The AIEWF consensus is that agentic coding is graduating from &ldquo;assistant&rdquo; to &ldquo;factory floor&rdquo; — parallel subagents, cross-agent feedback loops, and forward-deployed engineers who look increasingly like product engineers. Anthropic is shipping toward it: in the next Claude Code, <a href="https://nitter.net/bcherny/status/2071647677591466098#m">subagents run in the background by default</a> so you keep working while they do. Chollet is pushing <a href="https://nitter.net/fchollet/status/2072155613925437769#m">cross-agent critique loops</a> — one model drafts, another critiques, a human keeps them honest. Jon Udell offers the corrective mental model: stop saying &ldquo;human in the loop,&rdquo; which cedes authority to the machine — <a href="https://simonwillison.net/2026/Jun/28/jon-udell/#atom-everything">it&rsquo;s <em>our</em> loop, and we invite agents into it</a>.</p>
<p>The GitHub trending list reflects the same shift in the wild: <a href="https://github.com/garrytan/gstack">Garry Tan&rsquo;s exact 23-tool Claude Code setup</a> (4,600 stars this week), a <a href="https://github.com/hoangsonww/Claude-Code-Agent-Monitor">real-time Claude Code agent monitor</a>, and the delightfully honest <a href="https://github.com/kunchenguid/gnhf">gnhf</a> — &ldquo;before I go to bed, I tell my agents: good night, have fun.&rdquo; The tooling is racing ahead of the discipline.</p>
<p>Go deeper: <a href="https://www.latent.space/p/software-factories">Warp&rsquo;s software factories thesis</a> · <a href="https://www.latent.space/p/aiewf-daily-dispatch-loops">AIEWF daily dispatch on loops</a> · <a href="https://www.latent.space/p/forward-deployed-engineers-aiewf">Forward deployed engineers</a> · <a href="https://nitter.net/bcherny/status/2071379474277613732#m">bcherny&rsquo;s five archetypes</a></p>
<h3>AI checks into the lab</h3>
<p>A cluster of releases points at scientific work as the next serious frontier. Anthropic launched <a href="https://www.anthropic.com/news/claude-science-ai-workbench">Claude Science, a workbench for researchers</a>; OpenAI countered with <a href="https://openai.com/index/introducing-genebench-pro">GeneBench-Pro</a>, a genomics benchmark whose problems would take a human expert <a href="https://nitter.net/gdb/status/2072191801122038207#m">20–40 hours each</a>. The most substantive item is off to the side: Latent Space&rsquo;s interview with Genesis Molecular AI on why <a href="https://www.latent.space/p/the-coolest-diffusion-research-isnt">the Llama lead left Meta for drug discovery</a>, and how co-folding finally crossing an accuracy threshold changes what&rsquo;s possible. Meta, meanwhile, showed <a href="https://ai.meta.com/blog/brain2qwerty-brain-ai-human-communication/">Brain2Qwerty</a>, decoding words from brain waves without surgery. The pattern: the interesting diffusion research is no longer in text.</p>
<p>Go deeper: <a href="https://www.anthropic.com/news/claude-science-ai-workbench">Claude Science</a> · <a href="https://www.latent.space/p/the-coolest-diffusion-research-isnt">The coolest diffusion research isn&rsquo;t in LLMs</a> · <a href="https://openai.com/index/genebench-pro/case-studies">Inside GeneBench-Pro case studies</a></p>
<h3>Local keeps closing the gap (an update)</h3>
<p>The &ldquo;capable local&rdquo; track from last edition added real weight. The standout is <a href="https://simonwillison.net/2026/Jun/29/ornith/#atom-everything">Ornith-1.0</a>, an MIT-licensed self-scaffolding coding model from DeepReinforce built on Gemma 4 and Qwen 3.5, running agent harnesses over many tool calls from a 20GB GGUF — Willison&rsquo;s initial impressions are &ldquo;very good.&rdquo; Add <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ukm2n0/deepseek_v4_flash_2_3_and_4_bits_ggufs/">DeepSeek V4 Flash GGUFs</a>, Mistral&rsquo;s <a href="https://docs.mistral.ai/models/model-cards/leanstral-1-5-26-06">Leanstral 1.5</a> (279 HN points), Huawei&rsquo;s 92B/6B-active <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ukhu5g/readme_enmd_openpanguopenpangu20flash_at_main/">openPangu-2.0-Flash</a> with 512k context, and <a href="https://huggingface.co/blog/cerebras-gemma4-voice-ai">Gemma 4 hitting real-time voice via Cerebras</a>. Ahmad Osman&rsquo;s AIEWF workshops make <a href="https://www.latent.space/p/ahmad-osman-local-ai">the direct case that local AI is catching up fast</a> — and r/LocalLLaMA is already <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ukhw9n/thinking_about_grabbing_4x_ascend_gx10s/">buying hardware now to run an eventual open Fable 5</a>.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jun/29/ornith/#atom-everything">Ornith-1.0 self-scaffolding</a> · <a href="https://www.latent.space/p/ahmad-osman-local-ai">Local AI is catching up</a> · <a href="https://www.interconnects.ai/p/artifacts-22-zyphra-cohere-and-poolside">Nathan Lambert on the open ecosystem</a></p>
<h3>Trust, reviewability, and the backlash</h3>
<p>The verification problem is curdling into policy. <a href="https://www.pcgamer.com/gaming-industry/open-source-game-engine-godot-will-no-longer-accept-ai-authored-code-contributions-we-cant-trust-heavy-users-of-ai-to-understand-their-code-enough-to-fix-it/">Godot won&rsquo;t accept AI-authored code</a> because they &ldquo;can&rsquo;t trust heavy users of AI to understand their code enough to fix it&rdquo; — 432 points and a fierce thread. <a href="https://tidal.com/ai-policy">Tidal published an AI policy</a> that landed on the front page. Ford&rsquo;s <a href="https://techcrunch.com/2026/06/28/ford-rehires-gray-beard-engineers-after-ai-falls-short/">quiet rehiring of &ldquo;gray beard&rdquo; engineers</a> is the enterprise version of the same lesson. The htmx crew&rsquo;s <a href="https://htmx.org/essays/working-with-ai/">concrete walkthrough of working <em>with</em> AI</a> is the constructive counterpoint: it&rsquo;s not a refusal, it&rsquo;s a discipline. The through-line — echoing last week — is that generating code was never the bottleneck; owning it is.</p>
<p>Go deeper: <a href="https://www.pcgamer.com/gaming-industry/open-source-game-engine-godot-will-no-longer-accept-ai-authored-code-contributions-we-cant-trust-heavy-users-of-ai-to-understand-their-code-enough-to-fix-it/">Godot&rsquo;s ban</a> · <a href="https://htmx.org/essays/working-with-ai/">htmx: Working with AI</a> · <a href="https://adiamond.me/2026/06/software-engineering-in-the-age-of-ai/">Reflections on software engineering in the age of AI</a></p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://simonwillison.net/2026/Jun/29/ornith/#atom-everything">Ornith-1.0</a></strong> — MIT-licensed self-scaffolding coding model (9B–397B variants) on Gemma 4 / Qwen 3.5; SOTA among open models at its size, runs agent loops proficiently from a 20GB GGUF.</li>
<li><strong><a href="https://docs.mistral.ai/models/model-cards/leanstral-1-5-26-06">Leanstral 1.5</a></strong> — Mistral&rsquo;s new efficiency-focused model, 279 points on HN; watch for local-first deployment claims.</li>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1ukhu5g/readme_enmd_openpanguopenpangu20flash_at_main/">openPangu-2.0-Flash</a></strong> — 92B/6B-active MoE trained on Ascend, 512k context, MLA + DSA/SWA attention; a signal that non-NVIDIA training stacks are shipping real models.</li>
<li><strong><a href="https://huggingface.co/papers/2606.31315">BlockPilot</a></strong> — instance-adaptive block sizing for diffusion speculative decoding (66 upvotes, the period&rsquo;s top paper); optimal block size varies per input, and predicting it lifts throughput.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/30/shot-scraper-video/#atom-everything">shot-scraper video</a></strong> — new command that has a coding agent record a Playwright video demo of its own work from a storyboard.yml; a practical answer to &ldquo;prove the feature works.&rdquo;</li>
<li><strong><a href="https://github.com/browser-use/video-use">video-use</a></strong> — edit videos with coding agents (2,373 stars this week) from the browser-use team; agentic editing bleeding into media.</li>
<li><strong><a href="https://github.com/usestrix/strix">strix</a></strong> — open-source AI penetration testing tool (1,802 stars) to find and fix app vulnerabilities; offensive tooling going mainstream as Sonnet 5 dials cyber capability <em>down</em>.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/30/nano-banana-2-lite/#atom-everything">Nano Banana 2 Lite</a></strong> — Google&rsquo;s fastest/cheapest Gemini image model (a.k.a. Gemini 3.1 Flash Lite Image), shipping alongside Gemini Omni Flash video.</li>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1uk7khq/audiocpp_vibevoice_15b_released_90min_podcast_in/">VibeVoice 1.5B on audio.cpp</a></strong> — native C++/ggml long-form TTS, 90-min podcast in 23 min on a 5090, 2.86× faster than the Python baseline, no quantization.</li>
<li><strong><a href="https://openai.com/index/introducing-genebench-pro">GeneBench-Pro</a></strong> — OpenAI genomics benchmark of 20–40-hour expert problems; a new bar for &ldquo;can models do real computational biology.&rdquo;</li>
<li><strong><a href="https://nitter.net/miramurati/status/2072050039317578236#m">Bridgewater × Tinker</a></strong> — Thinking Machines fine-tuned a model on Bridgewater&rsquo;s proprietary knowledge to replicate expert financial judgment; a concrete template for domain-expert fine-tuning.</li>
<li><strong><a href="https://nitter.net/rasbt/status/2071945864088535126#m">Build a Reasoning Model (From Scratch)</a></strong> — Sebastian Raschka&rsquo;s new 440-page book covering inference scaling, RL, and distillation from first principles; already shipping from Manning.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong><a href="https://www.oneusefulthing.org/p/the-twilight-of-the-chatbots">The twilight of the chatbots</a></strong> — Ethan Mollick on how work changes as capability moves along the exponential and the chat box stops being the interface. The best mental-model piece of the period.</li>
<li><strong><a href="https://nitter.net/fchollet/status/2072290144519090248#m">Chollet: no mass unemployment</a></strong> — a sharp, contrarian counterweight to the &ldquo;software factory&rdquo; euphoria, arguing this wave&rsquo;s labor impact will be minimal and may <em>increase</em> demand for engineers. Read against OpenAI&rsquo;s <a href="https://openai.com/index/mapping-ai-jobs-transition-eu">EU workforce mapping</a> and decide for yourself.</li>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1ukn45x/i_mapped_which_local_llms_actually_fit_each_ram/">Which local LLMs fit each RAM tier, 8–128GB</a></strong> — an open CC-BY dataset with a usable rule of thumb (~0.6GB per billion params at Q4_K_M, size to 70% of RAM). Bookmark it before your next hardware decision.</li>
</ul>]]></content:encoded>
</item>
<item>
<title>The Frontier Behind Glass</title>
<link>https://panel.github.io/ai-update/editions/2026-06-28.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-06-28.html</guid>
<pubDate>Sun, 28 Jun 2026 00:00:00 +0000</pubDate>
<description>The two biggest models of the year shipped this week — and almost no one is allowed to use them. Meanwhile the models you can run on a desk quietly crossed the line into real work.</description>
<content:encoded><![CDATA[<h1>The Frontier Behind Glass</h1>
<p><em>The two biggest models of the year shipped this week — and almost no one is allowed to use them. Meanwhile the models you can run on a desk quietly crossed the line into real work.</em></p>
<h2>The Big Picture</h2>
<p>The headline event of the period isn&rsquo;t a capability jump — it&rsquo;s an access regime. OpenAI <a href="https://openai.com/index/previewing-gpt-5-6-sol">previewed the GPT‑5.6 series</a> (Sol, Terra, Luna) and, in the same breath, explained that it&rsquo;s <a href="https://simonwillison.net/2026/Jun/26/openai/#atom-everything">starting with &ldquo;a limited preview for a small group of trusted partners whose participation has been shared with the government&rdquo;</a> before any broad release. The very same day, the U.S. government <a href="https://www.semafor.com/article/06/27/2026/us-releases-powerful-anthropic-model-mythos-to-some-us-companies">cleared Anthropic to release Mythos to &ldquo;trusted&rdquo; American organizations</a> — a story that drew 547 points and over 700 comments on HN. <a href="https://www.latent.space/p/ainews-openai-gpt-56-sol-terra-luna">Latent Space called the simultaneity what it is</a>: oddly tiered releases from both labs, on the same day, gated through the same channel.</p>
<p>This is a structural shift, not a news cycle. The frontier is becoming a national-security asset released on a permit. Dean Ball&rsquo;s economics make the tension visible: <a href="https://simonwillison.net/2026/Jun/26/dean-w-ball/#atom-everything">labs recoup training costs in the narrow window before a model goes sub-frontier</a>, and &ldquo;no one is building $100 billion data centers to serve frontier models to whatever 100 companies the US government will allow access.&rdquo; Gating the frontier and amortizing it are at war with each other. Add Anthropic&rsquo;s accusation that <a href="https://www.reuters.com/world/china/anthropic-says-alibaba-illicitly-extracted-claude-ai-model-capabilities-2026-06-24/">Alibaba illicitly extracted Claude&rsquo;s capabilities</a> (807 points) and <a href="https://techcrunch.com/2026/06/27/asian-ai-startups-launch-mythos-like-models-as-anthropics-export-ban-drags-on/">Asian startups shipping Mythos-like models while the export ban drags on</a>, and you have the contours of a bifurcated market.</p>
<p>Here&rsquo;s the irony that should shape how you work: while the frontier retreats behind glass, the models you can actually touch got good enough to matter. The same week Sol went dark, a 27B open model ran a coding agent at 130 tok/s on a single workstation, and a respected educator published a serious guide to replacing your Claude Code subscription with local weights. The practical center of gravity for most developers may be drifting <em>toward</em> the things that are unambiguously available.</p>
<h2>Themes</h2>
<h3>The two-track world: gated frontier, capable local</h3>
<p>If you can&rsquo;t get Sol, the question is how much you&rsquo;re missing — and the answer is shrinking. Sebastian Raschka published a <a href="https://magazine.sebastianraschka.com/p/using-local-coding-agents">full walkthrough of running local coding agents on open-weight models</a>, finding that <a href="https://nitter.net/rasbt/status/2070518167399698490#m">30B mixture-of-expert models are a sweet spot, hitting ~40 tok/s on a Mac or DGX Spark — comparable to a GPT‑5.5 Pro subscription</a> — and noting in passing that Claude Code burns roughly 2x the tokens Codex does for the same work. On r/LocalLLaMA, someone ran <a href="https://www.reddit.com/r/LocalLLaMA/comments/1uhv3wc/qwen36_27b_local_vs_opus_48_voxel_engine_in_raw_c/">Qwen3.6 27B in NVFP4 against Opus 4.8 building a voxel engine in raw C</a> — Opus still won on correctness, but the 27B compiled and rendered at 130 tok/s on one card. The gap is real; it&rsquo;s also no longer a chasm.</p>
<p>swyx adds the sharpest framing: if you <a href="https://nitter.net/swyx/status/2070949306060931312#m">hold inference budget constant and measure by dollars-per-token rather than token count</a>, open models on cheap inference providers have far more mileage than closed APIs. The economics of &ldquo;good enough&rdquo; increasingly favor the track you control.</p>
<p>Go deeper: <a href="https://magazine.sebastianraschka.com/p/using-local-coding-agents">Using local coding agents (Raschka)</a> · <a href="https://www.reddit.com/r/LocalLLaMA/comments/1uhv3wc/qwen36_27b_local_vs_opus_48_voxel_engine_in_raw_c/">Qwen3.6 27B vs Opus 4.8</a> · <a href="https://techstrong.ai/articles/for-most-of-the-world-open-source-ai-is-the-only-way-forward/">For most of the world, open source is the only way forward</a> · <a href="https://www.latent.space/p/databricks">Why the frontier ecosystem must be open (Databricks)</a></p>
<h3>Verification is now the hard part</h3>
<p>A quiet but important inversion is being formalized in the literature. The classical intuition — verifying a solution is easier than producing one — <a href="https://huggingface.co/papers/2606.26300">is breaking down for coding agents</a>: as generation gets cheap and reliable, <em>reliably verifying</em> candidate solutions has become the bottleneck (39 upvotes). Every verifier is a proxy for human intent, and optimization widens the gap between proxy and intent — reward hacking, signal saturation. A companion paper on <a href="https://huggingface.co/papers/2606.26027">why multi-step tool-use RL collapses</a> shows the failure mode concretely: probability spikes in control tokens shatter execution structure, fixable only by interleaving supervised signal.</p>
<p>Andrew Nesbitt&rsquo;s <a href="https://simonwillison.net/2026/Jun/26/incident-report/#atom-everything">hypothetical incident report, CVE‑2026‑LGTM</a>, is the dry comedy version of the same truth: two competing AI review agents enter a disagreement loop over whether a package is malicious, rack up $41,255 in inference and 340 comments before Finance kills both API keys. When you can&rsquo;t cheaply verify intent, you can&rsquo;t cheaply adjudicate disagreement either. This is the theme to internalize: the frontier of agent reliability is no longer &ldquo;can it write the code&rdquo; — it&rsquo;s &ldquo;can anything trustworthy tell us the code is right.&rdquo;</p>
<p>Go deeper: <a href="https://huggingface.co/papers/2606.26300">The Verification Horizon</a> · <a href="https://huggingface.co/papers/2606.26027">Why multi-step tool-use RL collapses</a> · <a href="https://huggingface.co/papers/2606.26790">OPID: on-policy skill distillation</a> · <a href="https://simonwillison.net/2026/Jun/26/incident-report/#atom-everything">Incident Report: CVE‑2026‑LGTM</a></p>
<h3>Meta-harness summer (an update)</h3>
<p>Last week the harness was half the story; this week it&rsquo;s harnesses all the way down. Latent Space declared <a href="https://www.latent.space/p/ainews-its-meta-harness-summer">Meta-Harness Summer — the harness of harnesses</a>, and the tooling is consolidating fast around making applications and codebases legible <em>to agents</em> rather than to humans. Google Labs&rsquo; <a href="https://github.com/google-labs-code/design.md">DESIGN.md spec — a structured format for handing a visual identity to coding agents</a> — pulled 6,014 stars this week; BuilderIO shipped an <a href="https://github.com/BuilderIO/agent-native">agent-native application framework</a>, Alibaba an <a href="https://github.com/alibaba/page-agent">in-page GUI agent for controlling web interfaces with natural language</a>, and the token data underneath it all is vertical: OpenAI reports <a href="https://www.latent.space/p/ainews-openai-reports-median-internal">median internal Codex output grew 56x in Research, 32x in Customer Support, and 27x in Engineering since November</a>.</p>
<p>The cultural read on this came from François Chollet: <a href="https://nitter.net/fchollet/status/2070191976134435032#m">when the cost of execution drops, the value of taste, strategy and architectural vision skyrockets</a> — and, relatedly, that the real measure of an engineer is <a href="https://nitter.net/fchollet/status/2070270168362872982#m">ruthlessly protecting the codebase from unnecessary cleverness</a>. Worth keeping next to the agent-native gold rush as a corrective.</p>
<p>Go deeper: <a href="https://www.latent.space/p/ainews-its-meta-harness-summer">Meta-Harness Summer</a> · <a href="https://github.com/google-labs-code/design.md">DESIGN.md</a> · <a href="https://github.com/BuilderIO/agent-native">agent-native</a> · <a href="https://www.latent.space/p/ainews-openai-reports-median-internal">Codex token growth</a> · <a href="https://www.lennysnewsletter.com/p/openai-codex-lead-on-the-new-shape">Codex lead on the new shape of product work</a></p>
<h3>The accountability bill comes due</h3>
<p>As agents move into production, the question of who&rsquo;s liable when they&rsquo;re wrong is getting answered — sometimes in court, sometimes on the factory floor. A German court <a href="https://simonwillison.net/2026/Jun/25/ai-and-liability/#atom-everything">held Google liable for errors in its AI overviews</a>, and Bruce Schneier&rsquo;s framing is the one to carry: AI agents are agents of whoever deploys them, full stop — letting companies &ldquo;hide behind the excuse of faulty AI&rdquo; would be a massive handout and a disastrous incentive. The physical-world version is Ford, which <a href="https://www.bloomberg.com/news/articles/2026-06-25/ford-has-been-rehiring-quality-inspectors-after-ai-fell-short">has been rehiring &ldquo;gray beard&rdquo; quality inspectors after AI fell short</a> (606 points) — the costliest possible way to learn where the verification horizon actually is.</p>
<p>There&rsquo;s a labor-market echo, too. Tom MacWright describes the <a href="https://simonwillison.net/2026/Jun/24/tom-macwright/#atom-everything">LLM-cowritten résumé linking to an LLM-generated portfolio linking to LLM-generated GitHub projects</a>: &ldquo;I don&rsquo;t know anything about these people. They haven&rsquo;t said anything true.&rdquo; When generation is free, the scarce and accountable thing is a person actually standing behind the output.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jun/25/ai-and-liability/#atom-everything">AI and liability (Schneier)</a> · <a href="https://www.bloomberg.com/news/articles/2026-06-25/ford-has-been-rehiring-quality-inspectors-after-ai-fell-short">Ford rehires inspectors</a> · <a href="https://simonwillison.net/2026/Jun/24/tom-macwright/#atom-everything">Accidental anonymity (MacWright)</a></p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://simonwillison.net/2026/Jun/26/openai/#atom-everything">GPT‑5.6 Sol / Terra / Luna</a></strong> — OpenAI&rsquo;s new tier; Terra matches GPT‑5.5 at 2x cheaper, with explicit cache breakpoints and 30‑min cache life. Gated preview only for now.</li>
<li><strong><a href="https://deepmind.google/blog/introducing-computer-use-in-gemini-3-5-flash/">Gemini 3.5 Flash computer use</a></strong> — Computer-use control lands in Google&rsquo;s fast/cheap tier, pushing GUI agents toward commodity pricing.</li>
<li><strong><a href="https://github.com/google-labs-code/design.md">DESIGN.md</a></strong> — Google Labs spec giving coding agents a persistent, structured understanding of a design system; 6,014 stars this week.</li>
<li><strong><a href="https://github.com/topoteretes/cognee">cognee</a></strong> — Open-source persistent memory for agents via a self-hosted knowledge graph; 5,519 stars this week as agent memory becomes a category.</li>
<li><strong><a href="https://huggingface.co/papers/2606.18394">JetSpec</a></strong> — Speculative decoding that breaks the draft-budget scaling ceiling with parallel tree drafting (31 upvotes); paired with DeepSeek&rsquo;s open <a href="https://www.reddit.com/r/LocalLLaMA/comments/1uhyhl3/deepspec_a_deepseekai_collection/">DeepSpec</a> training stack.</li>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1uhx862/dflash_support_merged_into_llamacpp/">DFlash merged into llama.cpp</a></strong> — Local inference keeps absorbing frontier decoding tricks; relevant to anyone running open weights seriously.</li>
<li><strong><a href="https://github.com/itsthelore/wayfinder-router">Wayfinder Router</a></strong> — Deterministic routing of queries between local and hosted LLMs (89 points) — infrastructure for the two-track world above.</li>
<li><strong><a href="https://huggingface.co/papers/2606.26025">In-Context World Modeling</a></strong> — VLA robot policies that infer system configuration from short self-generated interactions, no fine-tuning (47 upvotes); a clean idea for adaptation.</li>
<li><strong><a href="https://huggingface.co/papers/2606.14397">GauntletBench</a></strong> — Web-based agent benchmark deliberately probing temporal, graphical and 3D reasoning where frontier agents still fail — a useful antidote to saturated benchmarks.</li>
<li><strong><a href="https://huggingface.co/blog/vllm-jobs">Run vLLM on HF Jobs in one command</a></strong> — Spin up a serving endpoint with a single command; lowers the floor for self-hosted inference experiments.</li>
<li><strong><a href="https://nitter.net/gdb/status/2069809298612621629#m">Jalapeño</a></strong> — OpenAI&rsquo;s purpose-built inference chip, designed over nine months &ldquo;accelerated by our models&rdquo;; a watch-this signal on vertical integration.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong><a href="https://www.fernandoi.cl/posts/hackmyclaw/">What happened after 2,000 people tried to hack my AI assistant</a></strong> — A genuine update to last edition&rsquo;s prompt-injection blind spot: 6,000 attempts and $500 in tokens later, <a href="https://simonwillison.net/2026/Jun/26/hack-my-ai-assistant/#atom-everything">nobody leaked the secret from an Opus 4.6 instance</a> (371 points). Simon&rsquo;s read: frontier anti-injection training is now meaningfully effective — but 6,000 failures still guarantee nothing against a more sophisticated adversary. Encouraging, not exoneration.</li>
<li><strong><a href="https://spectrum.ieee.org/ai-in-mathematics">AI in mathematics is forcing big questions</a></strong> — As models start producing novel mathematics, the discipline is wrestling with what proof and understanding mean (202 points). Pairs well with the news that <a href="https://www.economist.com/science-and-technology/2026/06/24/why-big-ai-labs-are-hiring-so-many-philosophers">big AI labs are hiring philosophers</a> — and with Chollet&rsquo;s argument that <a href="https://nitter.net/fchollet/status/2070507776259022872#m">autonomy is the ability to <em>learn</em> without human bottlenecks, not merely to act unsupervised</a>.</li>
<li><strong><a href="https://www.bloodinthemachine.com/p/the-ai-industry-is-pouring-hundreds">The AI industry is pouring hundreds of millions into US elections</a></strong> — The political economy behind the government-gated frontier. If you&rsquo;re tracking why access is being regulated the way it is, follow the money.</li>
</ul>]]></content:encoded>
</item>
<item>
<title>The Pentester in the Loop</title>
<link>https://panel.github.io/ai-update/editions/2026-06-24.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-06-24.html</guid>
<pubDate>Wed, 24 Jun 2026 00:00:00 +0000</pubDate>
<description>Both frontier labs shipped security products the same week a paper confirmed their models can't tell their own thoughts from an attacker's. Meanwhile Claude moved into your Slack channels — and the bill for all of it came due.</description>
<content:encoded><![CDATA[<h1>The Pentester in the Loop</h1>
<p><em>Both frontier labs shipped security products the same week a paper confirmed their models can&rsquo;t tell their own thoughts from an attacker&rsquo;s. Meanwhile Claude moved into your Slack channels — and the bill for all of it came due.</em></p>
<h2>The Big Picture</h2>
<p>The headline of the period is that AI security stopped being a panel topic and became a product line. OpenAI launched <a href="https://openai.com/index/daybreak-securing-the-world">Daybreak</a> — Codex Security, a GPT-5.5-Cyber model, and a <a href="https://openai.com/index/patch-the-planet">Patch the Planet</a> initiative already generating patches for cURL, the Linux kernel, FreeBSD, Go and Python. Anthropic&rsquo;s Claude Mythos, in parallel, <a href="https://www.lennysnewsletter.com/p/how-claude-mythos-found-a-15-year">shipped 423 security fixes in a month</a> and surfaced a 15-year-old bug in Firefox. This is offense and defense at ecosystem scale, and it&rsquo;s arriving fast.</p>
<p>The irony writes itself. The same week, a <a href="https://simonwillison.net/2026/Jun/22/prompt-injection-as-role-confusion/">paper on prompt injection as role confusion</a> confirmed that models cannot reliably distinguish their own privileged text from untrusted input — worse, they weight <em>writing style</em> over actual content, so an attacker who mimics a model&rsquo;s internal reasoning voice can talk it into almost anything. We are deploying LLMs to find and fix vulnerabilities while the LLMs themselves remain structurally insecure. If you ship agents, this tension is now your problem, not a researcher&rsquo;s.</p>
<p>The second big shift is interaction. <a href="https://www.anthropic.com/news/introducing-claude-tag">Claude Tag</a> puts a proactive, persistent, multiplayer agent directly into Slack channels — Karpathy calls it the <a href="https://nitter.net/karpathy/status/2069547676849557725#m">third major redesign of LLM UI/UX</a>, and the framing is right. The agent stops being a tool you open and becomes a colleague you @-mention.</p>
<p>And underneath both: money. The subsidized &ldquo;tokenmaxxing&rdquo; era is <a href="https://every.to/context-window/token-tightening">visibly ending</a>. Token budgets are starting to look like capital allocation, an <a href="https://blog.dshr.org/2026/06/ais-affordability-crisis.html">affordability crisis</a> is trending, and — not coincidentally — an open model that runs a 45-minute autonomous task for $3.36 suddenly looks less like a curiosity and more like a strategy.</p>
<h2>Themes</h2>
<h3>AI security grows teeth — and a blind spot</h3>
<p>The throughline across a dozen items: security is now a first-class AI application, with its own models, evals, and skill libraries. OpenAI&rsquo;s <a href="https://openai.com/index/daybreak-securing-the-world">Daybreak</a> bundles a <a href="https://nitter.net/gdb/status/2069128701850386834#m">Codex Security plugin</a> for deep scans, attack-path tracing and patch generation; Anthropic&rsquo;s Mythos work shows the real lesson is architectural — <a href="https://www.lennysnewsletter.com/p/how-claude-mythos-found-a-15-year">the model was &ldquo;only half the story,&rdquo;</a> the goal-loop harness did the heavy lifting. On the evaluation side, Eugene Yan&rsquo;s <a href="https://eugeneyan.com//writing/cybersecurity-evals/">patterns for cybersecurity evals</a> (sandboxed target, difficulty-tunable inputs, tools, a grader) and Gray Swan&rsquo;s <a href="https://www.latent.space/p/gray-swan">Kolter and Fredrikson</a> arguing AI security &ldquo;is not just cybersecurity with AI&rdquo; mark out the discipline&rsquo;s edges.</p>
<p>But the same period delivered the counterweight. <a href="https://simonwillison.net/2026/Jun/22/prompt-injection-as-role-confusion/">Prompt injection as role confusion</a> is the must-read here: models take the <em>style</em> of text more seriously than its content, so text dressed up as a model&rsquo;s own <code>&lt;think&gt;</code> block can override policy. If you&rsquo;re building anything that mixes trusted instructions and untrusted input — which is every agent — assume the boundary leaks.</p>
<p>Go deeper: <a href="https://openai.com/index/daybreak-securing-the-world">Daybreak</a> · <a href="https://www.lennysnewsletter.com/p/how-claude-mythos-found-a-15-year">Mythos / 15-year Firefox bug</a> · <a href="https://simonwillison.net/2026/Jun/22/prompt-injection-as-role-confusion/">Prompt injection as role confusion</a> · <a href="https://eugeneyan.com//writing/cybersecurity-evals/">Cybersecurity eval patterns</a> · <a href="https://www.latent.space/p/gray-swan">Gray Swan on AI security</a></p>
<h3>Claude joins the team: the third UI redesign</h3>
<p>Last edition we noted agents acquiring identity, auth, and secrets. <a href="https://www.anthropic.com/news/introducing-claude-tag">Claude Tag</a> is the payoff — and worth treating as a genuine step, not a re-announcement. Tag Claude into a Slack channel and <a href="https://nitter.net/bcherny/status/2069474689819480394#m">it spins up its own sandboxed instance per thread</a>, clones repos, writes and tests code, and throws the environment away when done — with <a href="https://nitter.net/bcherny/status/2069474684610195914#m">per-channel memory and permissions</a>. It&rsquo;s <a href="https://nitter.net/bcherny/status/2069474684610195914#m">proactive</a>, monitoring channels and drafting PRs without being prompted. Boris Cherny claims <a href="https://nitter.net/bcherny/status/2069474683372839253#m">65% of the product team&rsquo;s new code</a> already comes from an internal version.</p>
<p>The security design is the interesting part: Claude <a href="https://nitter.net/bcherny/status/2069474685948186797#m">can&rsquo;t see the credential secrets it uses</a> and respects channel/workspace boundaries — exactly the identity-and-secrets discipline that&rsquo;s now table stakes. Karpathy&rsquo;s &ldquo;<a href="https://nitter.net/karpathy/status/2069547676849557725#m">third UI/UX redesign</a>&rdquo; framing is the bit to internalize: chat → IDE agent → ambient teammate. Early signal on adoption beyond Anthropic, but the paradigm is the thing to watch.</p>
<p>Go deeper: <a href="https://www.anthropic.com/news/introducing-claude-tag">Claude Tag</a> · <a href="https://nitter.net/karpathy/status/2069547676849557725#m">Karpathy on the new paradigm</a> · <a href="https://www.latent.space/p/ainews-claude-tag-multiplayer-proactive">Latent Space writeup</a></p>
<h3>The allocation era: ROI comes for tokens</h3>
<p>The economics turned this week. Every&rsquo;s <a href="https://every.to/context-window/token-tightening">Token Tightening</a> calls it cleanly: the tokenmaxxing era — measuring adoption by raw consumption — is over, and token budgets are starting to look like trading portfolios, with the biggest compute going to whoever can prove returns. The trend has company: <a href="https://blog.dshr.org/2026/06/ais-affordability-crisis.html">AI&rsquo;s affordability crisis</a> hit 307 points on HN, and an <a href="https://www.reddit.com/r/MachineLearning/comments/1ueavxn/i_compiled_llm_inference_pricing_across_7/">ML engineer&rsquo;s cross-provider pricing comparison</a> found the caching numbers surprising enough to spreadsheet. Even fchollet got in on it with <a href="https://nitter.net/fchollet/status/2069447251647431093#m">token min-maxing</a>.</p>
<p>For a developer, the practical read: cost is becoming a first-class design constraint again, after a long subsidized holiday. Expect more routing logic, more caching, and harder questions about which workloads justify a frontier model.</p>
<p>Go deeper: <a href="https://every.to/context-window/token-tightening">Token Tightening</a> · <a href="https://blog.dshr.org/2026/06/ais-affordability-crisis.html">AI&rsquo;s affordability crisis</a> · <a href="https://www.reddit.com/r/MachineLearning/comments/1ueavxn/i_compiled_llm_inference_pricing_across_7/">Cross-provider pricing sheet</a></p>
<h3>The open frontier lands for real (GLM-5.2 update)</h3>
<p>We introduced GLM-5.2 last edition as a capability threshold. This period it&rsquo;s a <em>behavior</em> threshold: people are actually switching. Lenny ran it through codebase audits and a 45-minute autonomous bug hunt in Cursor and Claude Code and is <a href="https://www.lennysnewsletter.com/p/glm-52-why-im-replacing-opus-in-claude">replacing Opus with it</a> — total cost $3.36. Nathan Lambert frames it as a <a href="https://www.interconnects.ai/p/glm-52-is-the-step-change-for-open">step change for open agents</a>, and swyx notes Z.ai has <a href="https://nitter.net/swyx/status/2069598378191941835#m">beaten DeepSeek to the world&rsquo;s top open model</a> post-IPO. The local crowd is already <a href="https://www.reddit.com/r/LocalLLaMA/comments/1uedlas/i_did_some_model_hacks_and_got_glm52_from_about/">grafting MTP heads onto quants to push it from 2.5 to 50 tok/s</a> on a GH200.</p>
<p>Alongside it, <a href="https://apertvs.ai/">Apertus</a> — an open foundation model pitched at &ldquo;sovereign AI&rdquo; — pulled 531 points, a reminder that the open-weights conversation is increasingly about who controls the model, not just how good it is.</p>
<p>Go deeper: <a href="https://www.lennysnewsletter.com/p/glm-52-why-im-replacing-opus-in-claude">Replacing Opus with GLM-5.2</a> · <a href="https://www.interconnects.ai/p/glm-52-is-the-step-change-for-open">Step change for open agents</a> · <a href="https://apertvs.ai/">Apertus</a></p>
<h3>The harness is half the story</h3>
<p>A quieter but compounding theme: the agent loop, not the base model, is where the leverage is. Mozilla&rsquo;s 423 fixes came from a goal-loop harness; Jason Liu&rsquo;s <a href="https://openai.com/index/codex-maxxing-long-running-work">&ldquo;Codex-maxxing&rdquo;</a> is about preserving context across long-running work; ByteDance&rsquo;s <a href="https://github.com/bytedance/deer-flow">deer-flow</a> (2,521 stars) packages sandboxes, memory, subagents and a message gateway into a long-horizon harness. Research is catching up to the same insight from two directions: <a href="https://huggingface.co/papers/2606.24597">Qwen-AgentWorld</a> (72 upvotes) trains <em>language world models</em> to simulate the environment side of an agent loop across seven domains, and <a href="https://huggingface.co/papers/2606.24855">OpenThoughts-Agent</a> opens the data-curation recipe for broadly capable agents after 100+ ablations.</p>
<p>The sobering counterpoint is <a href="https://huggingface.co/papers/2606.24530">NatureBench</a>: frontier coding agents beat published SOTA on only 17.8% of real Nature-family tasks, succeeding mostly through &ldquo;methodological translation&rdquo; — reframing science as supervised prediction — rather than genuine invention. Better harnesses, yes; autonomous discovery, not yet.</p>
<p>Go deeper: <a href="https://huggingface.co/papers/2606.24597">Qwen-AgentWorld</a> · <a href="https://huggingface.co/papers/2606.24855">OpenThoughts-Agent</a> · <a href="https://github.com/bytedance/deer-flow">deer-flow</a> · <a href="https://huggingface.co/papers/2606.24530">NatureBench</a> · <a href="https://openai.com/index/codex-maxxing-long-running-work">Codex-maxxing</a></p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1ue5149/qwenagentworld35ba3b_a_3bactive_moe_trained_to/">Qwen-AgentWorld-35B-A3B</a></strong> — A 3B-active MoE language world model that predicts environment responses across MCP, terminal, SWE, Android, web and OS GUI domains; a new primitive for training and testing agents.</li>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1ueanx0/how_baidus_newly_released_unlimitedocr/">Baidu Unlimited-OCR</a></strong> — 3.3B multilingual OCR (MIT) that transcribes dozens of pages in one forward pass, sidestepping the KV-cache blowup of token-by-token OCR.</li>
<li><strong><a href="https://huggingface.co/blog/PaddlePaddle/pp-ocrv6">PP-OCRv6</a></strong> — 50-language OCR scaling from 1.5M to 34.5M params, for when Unlimited-OCR is overkill.</li>
<li><strong><a href="https://github.com/Kilo-Org/kilocode">Kilo Code</a></strong> — &ldquo;All-in-one agentic engineering platform&rdquo; and one of the most popular open coding agents, 4,206 stars this week.</li>
<li><strong><a href="https://github.com/mukul975/Anthropic-Cybersecurity-Skills">Anthropic Cybersecurity Skills</a></strong> — 817 structured security skills mapped to MITRE ATT&amp;CK, NIST CSF, ATLAS and more, working across Claude Code, Copilot, Codex and Cursor; 3,456 stars.</li>
<li><strong><a href="https://github.com/cocoindex-io/cocoindex-code">cocoindex-code</a></strong> — Lightweight AST-based code search CLI that claims a 70% token saving for coding agents.</li>
<li><strong><a href="https://rubyllm.com/">RubyLLM</a></strong> — A single, clean Ruby framework across all major providers; a sign the agent tooling wave is finally reaching non-Python ecosystems.</li>
<li><strong><a href="https://haystack.deepset.ai/">Haystack</a></strong> — Mature open framework for production agents and RAG, back on the front page.</li>
<li><strong><a href="https://www.reddit.com/r/MachineLearning/comments/1ue0hlp/deepswe_new_benchmark_looking_at_how_well_todays/">DeepSWE</a></strong> — Contamination-free coding benchmark written from scratch across 91 repos and 5 languages; harder and more honest than SWE-bench.</li>
<li><strong><a href="https://huggingface.co/papers/2606.21906">Confident Decoding</a></strong> — Training-free trick that decodes from a near-final layer to dodge &ldquo;alignment tax&rdquo; perturbations, with sub-2% latency cost on reasoning benchmarks.</li>
<li><strong><a href="https://openai.com/index/openai-broadcom-jalapeno-inference-chip">Jalapeño</a></strong> — OpenAI and Broadcom&rsquo;s custom LLM-inference chip; relevant mostly as a signal of where the cost curve (see &ldquo;allocation era&rdquo;) is headed.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/22/porting-moebius/">Moebius in the browser</a></strong> — Simon Willison ports a 0.2B image-inpainting model to WebGPU via Claude Code; a tidy demo of small models + browser runtimes.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong><a href="https://nitter.net/fchollet/status/2069483131447738768#m">fchollet on complexity as a tax</a></strong> — A sharp thread arguing that with agentic coding, complexity now <a href="https://nitter.net/fchollet/status/2069483683955028265#m">compounds mechanically</a>: junk code lands in the repo, pollutes the context window, degrades reasoning, and begets more junk. The clearest articulation yet of why &ldquo;it works&rdquo; isn&rsquo;t good enough in the agent era.</li>
<li><strong><a href="https://www.satisfice.com/blog/archives/488148">Don&rsquo;t use AI to write things you present as your own work</a></strong> — A pointed ethics-and-craft argument (105 points) that&rsquo;s a useful gut-check as Claude Tag starts authoring 65% of someone&rsquo;s commits.</li>
<li><strong>Two policy items worth a glance</strong>: a <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ue2fd7/seems_this_community_might_have_missed_it_bill/">bill mandating location-tracking for advanced AI chips</a> is gaining industry backing, and — in the strangest twist of the week — the <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ueeund/the_swiss_federal_supreme_court_is_evaluating/">Swiss Federal Supreme Court is evaluating abliteration tooling</a> because over-aligned models keep refusing legitimate legal queries. Both are early signals that the governance fight is getting more concrete.</li>
</ul>]]></content:encoded>
</item>
<item>
<title>The Weights We Don't Own</title>
<link>https://panel.github.io/ai-update/editions/2026-06-21.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-06-21.html</guid>
<pubDate>Sun, 21 Jun 2026 00:00:00 +0000</pubDate>
<description>GLM-5.2 makes the open frontier real the same week a government switches off a model thousands depend on. The two stories are the same story.</description>
<content:encoded><![CDATA[<h1>The Weights We Don&rsquo;t Own</h1>
<p><em>GLM-5.2 makes the open frontier real the same week a government switches off a model thousands depend on. The two stories are the same story.</em></p>
<h2>The Big Picture</h2>
<p>For about two years the open-weights pitch came with an asterisk: great for tinkering, fine for privacy, but you&rsquo;d reach for a closed frontier model when the work got hard. That asterisk got a lot smaller this week. Z.ai released <a href="https://simonwillison.net/2026/Jun/17/glm-52/">GLM-5.2 under an MIT license</a> — a 753B-parameter MoE with a million-token context — and the reaction was not the usual polite open-model applause. Jeremy Howard called it <a href="https://nitter.net/jeremyphoward/status/2067757468189679764#m">&ldquo;a marvel… at least as good as Opus 4.8 and GPT 5.5&rdquo;</a>, Vercel&rsquo;s CEO said he was <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ubk57k/vercel_ceo_almost_shocked_by_how_good_glm52_is_at/">&ldquo;almost shocked&rdquo;</a> by its coding, and Artificial Analysis put it <a href="https://www.latent.space/p/ainews-glm-gpt-glm-52-passes-vibe">at the top of the open-weights leaderboard</a>. When the open model passes everyone&rsquo;s vibe check at once, the open-vs-closed debate stops being ideological and starts being a procurement decision.</p>
<p>The timing is the point. In the same window, Anthropic <a href="https://every.to/context-window/built-on-moving-ground">disabled Fable 5</a> — the most capable coding model Every had been building on — with no warning and no migration window, because a U.S. government ban forced the shutdown for everyone. One day your production model exists; the next it doesn&rsquo;t. That is the unstated risk in every closed-API architecture, and it makes a frontier-grade model you can download and pin feel less like a hobbyist&rsquo;s preference and more like business continuity.</p>
<p>Underneath both stories runs a third: money. The <a href="https://www.ft.com/content/1d37cc08-e0aa-45a4-a45d-4ad282529314">FT reports companies reining in AI spend</a> as costs strain budgets, OpenAI shipped <a href="https://openai.com/index/chatgpt-enterprise-spend-controls">enterprise spend controls</a>, and r/LocalLLaMA is openly asking <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ubbj6n/what_happens_when_they_stop_subsidizing_llm/">what happens when the subsidies end</a> — the $200 sub that quietly buys $8,000 of API calls. The frontier you rent can be re-priced, throttled, or unplugged. That&rsquo;s the connective tissue this week: ownership, durability, and what you actually control.</p>
<p>So the working developer&rsquo;s takeaway isn&rsquo;t &ldquo;switch everything to open weights tomorrow.&rdquo; It&rsquo;s that the calculus shifted. Portability is now a feature you should be able to price.</p>
<h2>Themes</h2>
<h3>The open frontier arrives — unevenly</h3>
<p>GLM-5.2 is the headline, but the more interesting signal is the divergence among the Chinese labs. Sebastian Raschka <a href="https://nitter.net/rasbt/status/2067612153020838055#m">walked through its architecture</a> — MLA and DeepSeek Sparse Attention carried over from GLM-5, plus a new cross-layer &ldquo;IndexShare&rdquo; trick — confirming this is real engineering, not a benchmark stunt. The catch Simon flags: it&rsquo;s <a href="https://simonwillison.net/2026/Jun/17/glm-52/">token-hungry</a>, burning ~43k output tokens per task, and it&rsquo;s text-only. Meanwhile the community is reading Qwen&rsquo;s tea leaves the other direction, with <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ubjnh5/qwen_is_never_going_to_open_source_qwen_37_arent/">reports that Qwen is done open-sourcing its big models</a> after internal upheaval. The open ecosystem is consolidating around fewer, stronger players — GLM, Kimi, MiniMax, DeepSeek — rather than broadening. Watch whether Z.ai&rsquo;s promised &ldquo;Open Fable by December&rdquo; materializes.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jun/17/glm-52/">GLM-5.2 writeup</a> · <a href="https://www.latent.space/p/ainews-glm-gpt-glm-52-passes-vibe">vibe check passes</a> · <a href="https://nitter.net/rasbt/status/2067612153020838055#m">architecture notes</a> · <a href="https://www.reddit.com/r/LocalLLaMA/comments/1ubjnh5/qwen_is_never_going_to_open_source_qwen_37_arent/">Qwen goes closed</a></p>
<h3>Models aren&rsquo;t yours to keep</h3>
<p>The Fable 5 shutdown turned into the week&rsquo;s most resonant mental model. Every&rsquo;s team <a href="https://every.to/context-window/loops-for-non-coders">mapped the grief and built a playbook</a> for when a model you depend on disappears: abstract your model layer, keep evals portable, and treat any single model as a tenant, not a foundation. It&rsquo;s a useful counterweight to the other Every piece — Nityesh Agarwal <a href="https://every.to/context-window/how-anthropic-makes-claude-more-reliable">watching Anthropic&rsquo;s new dynamic workflows obsolete weeks of his scaffolding overnight</a> — the same instability cuts both ways. The lesson isn&rsquo;t &ldquo;don&rsquo;t build at the frontier,&rdquo; it&rsquo;s &ldquo;build so the floor can move.&rdquo;</p>
<p>Go deeper: <a href="https://every.to/context-window/built-on-moving-ground">Built on Moving Ground</a> · <a href="https://every.to/context-window/loops-for-non-coders">a playbook for when a model disappears</a> · <a href="https://every.to/context-window/how-anthropic-makes-claude-more-reliable">when the lab solves your workaround</a></p>
<h3>When code is free, discipline is the scarce resource</h3>
<p>Charity Majors put words to the shift: <a href="https://simonwillison.net/2026/Jun/17/charity-majors/">the economics of code production turned upside down</a> — lines of code went &ldquo;from treasured to disposable, practically overnight&rdquo; — and her conclusion is that this demands <em>more</em> engineering discipline, not less. The week&rsquo;s most-upvoted developer post argued the same from the trenches: <a href="https://vinibrasil.com/when-i-reject-ai-code-even-if-it-works/">why one engineer rejects AI code even when it works</a> (206 points), because correctness isn&rsquo;t the same as comprehensibility or maintainability. And the GitHub numbers make it concrete: COO Kyle Daigle says commits will <a href="https://every.to/podcast/transcript-can-github-be-for-everyone">jump from 1 billion to 14 billion this year</a> — an &ldquo;agentic PR flood&rdquo; that puts the bottleneck squarely on review, taste, and judgment. The reliability question is maturing from prompt-craft into systems engineering, as Martin Fowler&rsquo;s <a href="https://martinfowler.com/articles/reliable-llm-bayer.html">field report on building reliable agentic systems at Bayer</a> (137 points) demonstrates.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jun/17/charity-majors/">Majors on discipline</a> · <a href="https://vinibrasil.com/when-i-reject-ai-code-even-if-it-works/">rejecting working AI code</a> · <a href="https://martinfowler.com/articles/reliable-llm-bayer.html">reliable agentic systems</a> · <a href="https://every.to/podcast/transcript-can-github-be-for-everyone">14 billion commits</a></p>
<h3>Agents grow up: identity, auth, and secrets</h3>
<p>A quieter but important convergence: the industry is building the plumbing agents need to be trusted with real access. Cloudflare shipped <a href="https://blog.cloudflare.com/temporary-accounts/">temporary accounts for AI agents</a> (231 points) — scoped, disposable credentials so an agent isn&rsquo;t running with your full keys. Sean Lynch, quoted by Simon, articulates the underlying insight: <a href="https://simonwillison.net/2026/Jun/19/sean-lynch/">MCP&rsquo;s real value is isolating the auth flow out of the agent&rsquo;s context window</a> — &ldquo;maybe the idealized form of MCP is just an auth gateway.&rdquo; DeepMind published its <a href="https://deepmind.google/blog/securing-the-future-of-ai-agents/">AI Control Roadmap for securing agents</a>, and ServiceNow&rsquo;s <a href="https://huggingface.co/blog/ServiceNow/mosaicleaks">MosaicLeaks</a> probes whether a research agent can keep a secret. The theme: as agents get hands, the question shifts from &ldquo;can it reason&rdquo; to &ldquo;what can it touch, and can it leak.&rdquo;</p>
<p>Go deeper: <a href="https://blog.cloudflare.com/temporary-accounts/">temp accounts for agents</a> · <a href="https://simonwillison.net/2026/Jun/19/sean-lynch/">MCP as auth gateway</a> · <a href="https://deepmind.google/blog/securing-the-future-of-ai-agents/">DeepMind control roadmap</a> · <a href="https://huggingface.co/blog/ServiceNow/mosaicleaks">can your agent keep a secret</a></p>
<h3>The backlash hardens</h3>
<p>Worth tracking even if you live inside the bubble: public sentiment is moving the wrong way for the industry. A widely-shared study found <a href="https://techcrunch.com/2026/06/17/only-16-percent-of-americans-think-ai-will-have-a-positive-impact-on-society-a-new-study-shows/">only 16% of Americans think AI will have a positive societal impact</a> (398 points), Norway <a href="https://www.reuters.com/technology/norway-imposes-near-ban-ai-elementary-school-2026-06-19/">imposed a near-ban on AI in elementary schools</a> (801 points — the week&rsquo;s biggest thread), and Nature reported that <a href="https://www.nature.com/articles/d41586-026-01947-1">early results on AI and skill erosion &ldquo;aren&rsquo;t good&rdquo;</a> (244 points). The skills-atrophy concern dovetails with the &ldquo;reject AI code&rdquo; instinct above: there&rsquo;s a growing worry that fluency is being traded for output. Against this, Nathan Lambert argues <a href="https://www.interconnects.ai/p/banning-open-source-ai-would-be-a">banning open-source AI would be a mistake</a> — a policy fight that the Fable shutdown just made very concrete.</p>
<p>Go deeper: <a href="https://techcrunch.com/2026/06/17/only-16-percent-of-americans-think-ai-will-have-a-positive-impact-on-society-a-new-study-shows/">16% positive</a> · <a href="https://www.reuters.com/technology/norway-imposes-near-ban-ai-elementary-school-2026-06-19/">Norway&rsquo;s school ban</a> · <a href="https://www.nature.com/articles/d41586-026-01947-1">skills erosion data</a> · <a href="https://www.interconnects.ai/p/banning-open-source-ai-would-be-a">the case against banning open source</a></p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://simonwillison.net/2026/Jun/17/glm-52/">GLM-5.2</a></strong> — 753B MoE, MIT license, 1M context; the first open-weights model to genuinely pass the frontier coding vibe check. The week&rsquo;s defining release.</li>
<li><strong><a href="https://blog.cloudflare.com/temporary-accounts/">Cloudflare Temporary Accounts</a></strong> — Scoped, disposable credentials for agents so they never hold your real keys; a template for agent identity (231 pts).</li>
<li><strong><a href="https://github.com/google-research/timesfm">TimesFM</a></strong> — Google&rsquo;s pretrained time-series foundation model, surging at 3,655 stars this week — forecasting joins the foundation-model era.</li>
<li><strong><a href="https://github.com/calesthio/OpenMontage">OpenMontage</a></strong> — &ldquo;World&rsquo;s first open-source agentic video production system,&rdquo; 12 pipelines and 500+ skills; 2,253 stars and turns a coding assistant into a video studio.</li>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1ublwmp/why_is_autoround_being_slept_on_so_hard/">AutoRound</a></strong> — Intel&rsquo;s low-bit quantization that reportedly beats AWQ/RTN on accuracy retention; underused, possibly just because of the Intel branding.</li>
<li><strong><a href="https://github.com/google/agents-cli">google/agents-cli</a></strong> — CLI and skills to turn any coding assistant into an expert at building and deploying agents on Google Cloud.</li>
<li><strong><a href="https://huggingface.co/blog/peft-beyond-lora">Beyond LoRA</a></strong> — HF asks whether you can beat the default fine-tuning technique; useful if PEFT is part of your stack.</li>
<li><strong><a href="https://huggingface.co/papers/2606.20517">Multi-LCB</a></strong> — Extends LiveCodeBench to 12 languages and exposes &ldquo;Python overfitting&rdquo; in 24 models — a sharper read on real code-gen competence (43 upvotes).</li>
<li><strong><a href="https://huggingface.co/papers/2606.19419">Playful Agentic Robot Learning / RATs</a></strong> — Embodied agents that learn reusable skills through self-directed play before tasks arrive, +20pp on held-out benchmarks (43 upvotes).</li>
<li><strong><a href="https://github.com/stablyai/orca">Orca</a></strong> — An &ldquo;agentic development environment&rdquo; for orchestrating a fleet of parallel coding agents on your own subscription; 908 stars this week.</li>
<li><strong><a href="https://huggingface.co/papers/2606.19605">FAPO</a></strong> — Lets Claude Code autonomously optimize multi-step LLM pipelines, escalating from prompt edits to structural changes; beats GEPA in 15 of 18 comparisons.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/18/datasette-apps/">Datasette Apps</a></strong> — Sandboxed HTML+JS apps inside Datasette with CSP-enforced no-exfiltration — a Claude-Artifacts pattern done with proper isolation.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong><a href="https://aiclambake.com/clamtakes/linear-a/">An AI engineer claims to have cracked Linear A</a></strong> — Using Claude Code on a 3,500-year-old undeciphered Cretan script (442 points; even <a href="https://nitter.net/bcherny/status/2068064304503660962#m">bcherny is rooting for it to survive peer review</a>). A delightful, slightly suspicious demonstration of what agentic exploration looks like at the edge of scholarship.</li>
<li><strong><a href="https://lcamtuf.substack.com/p/the-100000-whys-of-ai">The 100,000 Whys of AI</a></strong> — lcamtuf on the epistemics of working with systems whose reasoning you can&rsquo;t fully interrogate; a good companion to the &ldquo;reject AI code&rdquo; instinct (126 points).</li>
<li><strong>OpenAI&rsquo;s medical run</strong> — Quietly substantive: a reasoning model helped find <a href="https://openai.com/index/diagnose-rare-childhood-diseases">18 new diagnoses across 376 unsolved cases</a>, and <a href="https://openai.com/index/introducing-life-sci-bench">LifeSciBench</a> gives the field an expert-authored benchmark. Worth noting Greg Brockman&rsquo;s caveat that the diagnostic work <a href="https://nitter.net/gdb/status/2068016345451831480#m">used o3, a year-old model</a> — the lag between capability and deployment is its own signal.</li>
</ul>]]></content:encoded>
</item>
<item>
<title>Open Weights Is Back</title>
<link>https://panel.github.io/ai-update/editions/2026-06-17.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-06-17.html</guid>
<pubDate>Wed, 17 Jun 2026 00:00:00 +0000</pubDate>
<description>GLM-5.2 lands as the best open model in the world the same week Washington bans a frontier lab's coding model for being good at fixing code. The center of gravity is shifting, and it's not subtle.</description>
<content:encoded><![CDATA[<h1>Open Weights Is Back</h1>
<p><em>GLM-5.2 lands as the best open model in the world the same week Washington bans a frontier lab&rsquo;s coding model for being good at fixing code. The center of gravity is shifting, and it&rsquo;s not subtle.</em></p>
<h2>The Big Picture</h2>
<p>This was the period the open-weights story stopped being aspirational. Z.ai&rsquo;s <a href="https://huggingface.co/blog/zai-org/glm-52-blog">GLM-5.2</a> is now <a href="https://artificialanalysis.ai/articles/glm-5-2-is-the-new-leading-open-weights-model-on-the-artificial-analysis-intelligence-index">the leading open model on the Artificial Analysis intelligence index</a>, <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u7mexd/glm52_is_the_first_openweights_model_to_cross_80/">the first open-weights model past 80% on Terminal-Bench</a>, and — per the same crowd that benchmarks everything — <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u832oh/glm52_max_is_currently_the_third_best_model/">the third-best model available, period, open or closed</a>. MIT-licensed, built for long-horizon agentic work. The mood in the open community has flipped from &ldquo;fun toys&rdquo; to &ldquo;we have the frontier at home&rdquo; inside roughly a year.</p>
<p>The timing is almost too neat, because the same week delivered the most chilling governance story in a while: the US government has <a href="https://simonwillison.net/2026/Jun/16/fable-5-export-controls/">banned Claude Fable 5 under export controls</a> on the basis of a &ldquo;jailbreak&rdquo; that, on inspection, was someone asking the model to <em>fix vulnerable code</em>. As cybersecurity expert Katie Moussouris <a href="https://simonwillison.net/2026/Jun/16/matteo-wong-the-atlantic/">told The Atlantic</a>, that&rsquo;s &ldquo;the model working as intended&rdquo; for cyberdefense — the find-fix-test loop defenders run every day. The <a href="https://simonwillison.net/2026/Jun/15/axios-clashes-anthropics/">Axios behind-the-scenes account</a> suggests the real issue is personality clashes and an &ldquo;attitude fix,&rdquo; not capability. Read together, the two threads tell a coherent story: closed frontier models are now entangled with state politics in ways that make the open, MIT-licensed alternative look less like a compromise and more like infrastructure.</p>
<p>For the working developer, two practical shifts. First, the &ldquo;use a local model&rdquo; calculus changed — <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u85t9c/local_models_went_from_mostly_useless_to_actually/">people who treated local models as privacy toys a year ago are now coding with them daily</a>. Second, agentic coding has crossed from novelty into something that demands real engineering discipline rather than less of it. The tooling — agent loops, agent-native version control, approval-gated write tools — is maturing accordingly.</p>
<p>And a useful counterweight to the hype: the data still doesn&rsquo;t show AI causing mass developer layoffs, as <a href="https://simonwillison.net/2026/Jun/14/why-ai-hasnt-replaced-software-engineers/">Narayanan and Kapoor argue carefully</a>, while <a href="https://news.ycombinator.com/item?id=48527700">508 HN points went to a reminder</a> that most people aren&rsquo;t using AI for everything. The frontier is moving fast; adoption is lumpier than the timeline suggests.</p>
<h2>Themes</h2>
<h3>The open-weights frontier caught up</h3>
<p>GLM-5.2 is the headline, but the interesting part is <em>how</em> it&rsquo;s good. Andrej-adjacent commentary notes the smaller VibeCoder variant <a href="https://nitter.net/rasbt/status/2067036636181848528#m">reused the old Qwen2.5-Coder-3B stack and squeezed frontier-ish coding out of it via post-training</a> — high-signal synthetic data (math with credible solutions, code with tests), multiple reasoning paths per answer, and aggressive filtering. The lesson the labs keep reteaching: post-training recipe beats raw scale at the margin. The full 753B model is enterprise-cluster territory, but <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u8ai2a/glm52_is_a_win_for_local_ai/">the LocalLLaMA read is that the distillation potential is the real prize</a> — expect 8B/70B daily-drivers fine-tuned on GLM&rsquo;s reasoning traces within months.</p>
<p>Go deeper: <a href="https://artificialanalysis.ai/models/glm-5-2">Artificial Analysis benchmarks</a> · <a href="https://huggingface.co/blog/zai-org/glm-52-blog">Z.ai&rsquo;s long-horizon framing</a> · <a href="https://www.latent.space/p/ainews-glm-52-the-top-frontend-coding">Latent Space&rsquo;s writeup</a> · <a href="https://www.interconnects.ai/p/frontier-post-training-recipe-review">why the post-training stack matters</a></p>
<h3>The state&rsquo;s war on a frontier lab</h3>
<p>This is the story to actually watch. A coding model was export-controlled because it does the most valuable thing a coding model can do — <a href="https://simonwillison.net/2026/Jun/16/fable-5-export-controls/">fix security bugs</a>. The technical absurdity (Fable refused &ldquo;review for security issues&rdquo; but complied with &ldquo;fix this code&rdquo;) is being treated as a guardrail failure rather than what it is: a capability you can&rsquo;t remove without lobotomizing the model for defense. Nathan Lambert&rsquo;s framing — that we&rsquo;ve entered <a href="https://www.interconnects.ai/p/welcome-to-the-agi-era-of-ai-governance">the &ldquo;AGI era of AI governance,&rdquo; a one-way door we weren&rsquo;t ready for</a> — reads less abstract this week. Even reliably open-source-leaning voices like Chollet are warning that <a href="https://nitter.net/fchollet/status/2066554345345147288#m">opaque, arbitrary regulatory strikes are counterproductive for the whole industry</a> and that <a href="https://nitter.net/fchollet/status/2066554426551390457#m">we need standardized agentic benchmarks instead of panic-reacting to prompt-engineering parlor tricks</a>.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jun/16/fable-5-export-controls/">The export-control breakdown</a> · <a href="https://simonwillison.net/2026/Jun/16/matteo-wong-the-atlantic/">The Atlantic via Willison</a> · <a href="https://simonwillison.net/2026/Jun/15/axios-clashes-anthropics/">Axios gossip on how it happened</a> · <a href="https://www.interconnects.ai/p/welcome-to-the-agi-era-of-ai-governance">AGI-era governance</a></p>
<h3>Agentic coding grows up</h3>
<p>The narrative is consolidating around a single uncomfortable claim: agents demand <em>more</em> engineering discipline, not less — <a href="https://charitydotwtf.substack.com/p/ai-demands-more-engineering-discipline">the most-discussed dev essay of the week</a>. The tooling reflects it. Cursor/Graphite&rsquo;s Tomas Reimers announced <a href="https://nitter.net/swyx/status/2066928345246470204#m">Origin, a Git competitor built for agent workloads</a> with API/MCP extensibility and agent-driven merge-conflict and CI-failure resolution — a sign that version control itself is being redesigned around non-human committers. Simon Willison&rsquo;s <a href="https://simonwillison.net/2026/Jun/15/datasette-agent/">Datasette Agent now has an approval-gated <code>execute_write_sql</code> tool</a>, which is the right pattern: agents that can mutate state but ask first. And Lenny&rsquo;s deep dive on <a href="https://www.lennysnewsletter.com/p/how-to-design-ai-agent-loops-schedules">designing agent loops — heartbeats, crons, goals, subagents</a> is the practical complement: stop babysitting PRs, start designing the control flow. The mental model emerging from Braintrust&rsquo;s Ankur Goyal — <a href="https://www.lennysnewsletter.com/p/how-braintrust-uses-ai-agents-evals">&ldquo;evals are the modern version of a PRD&rdquo;</a> — is worth internalizing.</p>
<p>Go deeper: <a href="https://charitydotwtf.substack.com/p/ai-demands-more-engineering-discipline">AI demands more discipline</a> · <a href="https://nitter.net/swyx/status/2066928345246470204#m">Cursor&rsquo;s Origin</a> · <a href="https://www.lennysnewsletter.com/p/how-to-design-ai-agent-loops-schedules">agent loop design</a> · <a href="https://www.lennysnewsletter.com/p/how-braintrust-uses-ai-agents-evals">evals as PRD</a> · <a href="https://every.to/p/we-built-our-own-agent-native-tool-it-overhauled-how-we-build-software">Every&rsquo;s agent-native tooling experience</a></p>
<h3>Local models crossed the usefulness line</h3>
<p>A clear &ldquo;this is landing&rdquo; signal, not early hype. Georgi Gerganov — who would know — <a href="https://simonwillison.net/2026/Jun/16/georgi-gerganov/">attests that Qwen3.6-27B is a genuinely capable daily coding tool</a> on an M2 Ultra or 5090, with a stripped-down <code>pi -nc --offline</code> harness. One LocalLLaMA experimenter had a <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u89f2q/headless_screenshot_loops_let_a_local_30b_agent/">local Qwen3.6 27B agent finish a raytraced FPS demo in pure C using headless screenshot feedback loops</a>, going head-to-head with Opus 4.8. The broader reflection — <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u85t9c/local_models_went_from_mostly_useless_to_actually/">local models went from &ldquo;mostly useless to actually useful&rdquo; in roughly a year</a> — is now consensus, not optimism. They still don&rsquo;t fully replace closed models for long-repo work, but the gap is closing fast and GLM-5.2 distillates will narrow it further.</p>
<p>Go deeper: <a href="https://simonwillison.net/2026/Jun/16/georgi-gerganov/">Gerganov on Qwen3.6-27B</a> · <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u89f2q/headless_screenshot_loops_let_a_local_30b_agent/">local 30B finishing real tasks</a> · <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u85t9c/local_models_went_from_mostly_useless_to_actually/">what changed</a></p>
<h3>On-policy distillation is eating post-training</h3>
<p>If you read research, the recurring motif this period is on-policy distillation showing up everywhere — a strong &ldquo;watch this&rdquo; signal that the field is converging on a recipe. <a href="https://huggingface.co/papers/2606.18195">d-OPSD brings it to diffusion LLMs</a> using self-generated answers as suffix conditioning; <a href="https://huggingface.co/papers/2606.17628">OPD-Evolver applies it to self-evolving memory agents</a>, letting a 9B model challenge ~400B counterparts; and <a href="https://huggingface.co/papers/2606.18216">ZPPO keeps the teacher &ldquo;in the prompt, not the gradient,&rdquo;</a> using Vygotsky&rsquo;s zone-of-proximal-development as the design metaphor for hard-question distillation. The separate-but-related surprise: <a href="https://huggingface.co/papers/2606.18023">LoopCoder-v2 shows looped transformers are strongly non-monotonic</a> — exactly two loops jumps SWE-bench Verified from 43 to 64, while three or more <em>regress</em>. (112 upvotes, the period&rsquo;s top paper.)</p>
<p>Go deeper: <a href="https://huggingface.co/papers/2606.18023">LoopCoder-v2</a> · <a href="https://huggingface.co/papers/2606.18195">d-OPSD for dLLMs</a> · <a href="https://huggingface.co/papers/2606.18216">ZPPO</a> · <a href="https://huggingface.co/papers/2606.17628">OPD-Evolver</a></p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://huggingface.co/blog/zai-org/glm-52-blog">GLM-5.2</a></strong> — MIT-licensed open frontier model, top open-weights coder, first past 80% on Terminal-Bench. The week&rsquo;s main event.</li>
<li><strong><a href="https://nitter.net/swyx/status/2066928345246470204#m">Cursor Origin</a></strong> — Cursor&rsquo;s Git competitor built for agent workloads, with MCP extensibility and agent-resolved merge conflicts. Version control rethought for non-human committers.</li>
<li><strong><a href="https://github.com/Adam-CAD/CADAM">CADAM</a></strong> — open-source text-to-CAD (YC W25): natural language → parametric OpenSCAD with interactive sliders. &ldquo;CAD as code,&rdquo; following the software-generation playbook into mechanical design.</li>
<li><strong><a href="https://github.com/shuvonsec/claude-bug-bounty">claude-bug-bounty</a></strong> — autonomous recon and 20-vuln-class bug hunting inside Claude Code; 871 stars this week. Ironic, given the Fable export saga.</li>
<li><strong><a href="https://github.com/maziyarpanahi/openmed">OpenMed</a></strong> — local-first clinical NER and HIPAA de-identification, 1,000+ medical models, fully on-device, Apache-2.0. 1,879 stars; the local-first thesis applied to regulated data.</li>
<li><strong><a href="https://github.com/activeloopai/hivemind">Hivemind</a></strong> — turns agent traces into reusable skills shared across agents (657 stars). Same instinct as OPD-Evolver, productized.</li>
<li><strong><a href="https://cells2pixels.github.io/">High-Res Neural Cellular Automata</a></strong> — real-time HD self-organizing pattern generation via per-cell Neural Fields; grow, damage, and self-heal textures. 147 points, genuinely novel.</li>
<li><strong><a href="https://huggingface.co/papers/2606.17200">ACE-Ego-0</a></strong> — unifies egocentric human video and robot data for VLA pretraining via a video-to-pseudo-action pipeline (40 upvotes). Cheap embodiment data is the bottleneck this attacks.</li>
<li><strong><a href="https://openai.com/index/deployment-simulation">OpenAI Deployment Simulation</a></strong> — predicting model behavior pre-release by replaying real conversation data. A maturing eval discipline, worth a skim.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/17/click-to-play-component/">click-to-play</a></strong> — Simon Willison&rsquo;s tiny progressive-enhancement web component that defers GIF loading until clicked. Not AI, just good craft.</li>
<li><strong><a href="https://github.com/hexo-ai/sia">SIA</a></strong> — a self-improving framework that autonomously tunes any model/agent against a benchmark (942 stars). Recursive-improvement-as-a-library; treat the claims skeptically.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/16/datasette-tailscale/">datasette-tailscale</a></strong> — experimental plugin to expose a local Datasette over your Tailnet via a Rust-based sidecar. Neat pattern for private agent-accessible data.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong><a href="https://simonwillison.net/2026/Jun/14/why-ai-hasnt-replaced-software-engineers/">Why AI hasn&rsquo;t replaced software engineers, and won&rsquo;t</a></strong> — Narayanan and Kapoor on why the mass-layoff narrative keeps failing the data (in a year of WARN filings, <em>not one</em> checked the AI box). The clearest-eyed counter to timeline panic, using the profession most exposed to disruption as the test case.</li>
<li><strong><a href="https://news.ycombinator.com/item?id=48527700">Not everyone is using AI for everything</a></strong> — Gabriel Weinberg&rsquo;s argument that people consume AI far more selectively than the discourse assumes (508 HN points). Pair it with the finding that <a href="https://wpvip.com/future-of-the-web-2026/">60% of US consumers say &ldquo;AI&rdquo; in brand messaging is a turnoff</a> (668 points) — a useful corrective if you&rsquo;re building consumer-facing tools.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/17/netnewswire-status/">NetNewsWire Status</a></strong> — Willison on Brent Simmons&rsquo;s retirement project: making one piece of open-source software relentlessly good, free of commercial pressure. A quiet antidote to the week&rsquo;s noise, and a reminder of what software can be for.</li>
</ul>]]></content:encoded>
</item>
<item>
<title>The Weekend the Frontier Got Nationalized</title>
<link>https://panel.github.io/ai-update/editions/2026-06-14.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-06-14.html</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 +0000</pubDate>
<description>Anthropic shipped the best coding model anyone had seen, then the US government switched it off — a reminder that model access is now an instrument of state, not a SaaS contract.</description>
<content:encoded><![CDATA[<h1>The Weekend the Frontier Got Nationalized</h1>
<p><em>Anthropic shipped the best coding model anyone had seen, then the US government switched it off — a reminder that model access is now an instrument of state, not a SaaS contract.</em></p>
<h2>The Big Picture</h2>
<p>The defining event of the period wasn&rsquo;t a model release — it was a model <em>un-release</em>. On Friday night the US government issued an export-control directive suspending all foreign-national access to Anthropic&rsquo;s new <a href="https://www.anthropic.com/news/fable-mythos-access">Fable 5 and Mythos 5</a>, citing national security and a jailbreak it considers dangerous. Anthropic&rsquo;s response was to <a href="https://simonwillison.net/2026/Jun/13/us-government-directive-to-suspend-access/">pull the models for everyone</a> rather than try to segment access mid-flight. Days earlier, <a href="https://every.to/chain-of-thought/the-moral-of-fable">Every had called Fable 5 the best coding model in the world</a>; by the weekend it was unreachable, and developers were <a href="https://every.to/context-window/fable-disabled">migrating wholesale back to Codex</a>.</p>
<p>There&rsquo;s a sharp irony underneath, and Jeremy Howard <a href="https://nitter.net/jeremyphoward/status/2065636302205452654">named it bluntly</a>: a company that markets a model as &ldquo;too dangerous for anyone but us to wield responsibly&rdquo; has handed the government a tailor-made justification to take it away. He even <a href="https://nitter.net/jeremyphoward/status/2065649830769336530">reproduced the likely government reasoning by pasting the dispute into ChatGPT</a>. This came on the heels of a separate self-inflicted wound: Anthropic had quietly built <em>invisible</em> refusals into Fable that would silently &ldquo;limit effectiveness&rdquo; on frontier-LLM-development requests, and only <a href="https://simonwillison.net/2026/Jun/11/anthropic-walks-back-policy/">walked it back after a public outcry</a>.</p>
<p>For the reader, the practical lesson is unsentimental: <strong>a frontier model you depend on can vanish overnight for reasons that have nothing to do with you.</strong> Simon Willison&rsquo;s posts this week read like a real-time field manual for this world — he&rsquo;s already <a href="https://simonwillison.net/2026/Jun/13/sqlite-column-provenance/">annotating which model is &ldquo;currently banned by the US government&rdquo;</a> when choosing a tool for a task. Multi-model harnesses and a Codex fallback stopped being a nice-to-have.</p>
<p>The counter-current is loud and, this week, very upvoted: the <a href="https://news.ycombinator.com/item?id=48511908">Open Source AI Must Win</a> essay hit <strong>1,546 points</strong> on HN, and the local-model crowd is reading the Fable episode as vindication. If the frontier is now subject to seizure, the case for open weights you can actually hold stops being ideological and starts being operational.</p>
<h2>Themes</h2>
<h3>The Fable affair: capability as contraband</h3>
<p>Set aside the politics and the technical core is genuinely interesting: Fable 5 is described over and over as <em>relentlessly proactive</em>. Simon <a href="https://simonwillison.net/2026/Jun/11/fable-is-relentlessly-proactive/">watched it open a real Firefox window and navigate to a UI bug on its own initiative</a>, without being told to use a browser. Anthropic&rsquo;s own Alex Albert says it feels <a href="https://nitter.net/alexalbert__/status/2065493229760565758">&ldquo;superhuman at long agentic conversations, to the point where I can&rsquo;t keep up&rdquo;</a>. That same agency — the willingness to deploy any trick to reach a goal — is exactly what makes a government nervous about an export-controlled jailbreak. Every&rsquo;s framing is the sharpest: the model&rsquo;s <em>moral</em> is that its value is concentrated in a <a href="https://every.to/chain-of-thought/the-moral-of-fable">narrow class of high-leverage developers</a> churning through backlogs in hours, while most knowledge workers barely felt it.</p>
<p>Go deeper: <a href="https://www.anthropic.com/news/fable-mythos-access">Statement on the suspension</a> · <a href="https://simonwillison.net/2026/Jun/13/us-government-directive-to-suspend-access/">Willison&rsquo;s running account</a> · <a href="https://simonwillison.net/2026/Jun/11/anthropic-walks-back-policy/">Anthropic walks back invisible safeguards</a> · <a href="https://www.latent.space/p/ainews-fable-and-mythos-officially">Latent Space: &ldquo;officially too dangerous to release&rdquo;</a> · <a href="https://every.to/chain-of-thought/the-moral-of-fable">The Moral of Fable</a></p>
<h3>Agentic coding grows up — and the scaffolding moves to the cloud</h3>
<p>Underneath the drama, the agentic-coding stack kept consolidating. <a href="https://openai.com/index/openai-to-acquire-ona">OpenAI is acquiring Ona</a> to give Codex <em>secure, persistent cloud environments</em> for long-running agents — the missing substrate for agents that work overnight rather than in a single session. Simon&rsquo;s <a href="https://simonwillison.net/2026/Jun/10/datasette-agent/">datasette-agent now lets tools pause mid-run to ask the user questions</a>, with suspended turns surviving server restarts — a small but important pattern for human-in-the-loop agents. And the conceptual frontier is being pushed by Karpathy, Cherny and Steinberger&rsquo;s <a href="https://www.latent.space/p/ainews-loopcraft-the-art-of-stacking">&ldquo;loopcraft&rdquo;</a> — the art of stacking agent loops — while swyx asks whether, <a href="https://nitter.net/swyx/status/2065559864559145420">after the PR and code review die, Git itself is next</a>, given how much engineering effort goes into merge-conflict bookkeeping no human collaboration actually requires.</p>
<p>Go deeper: <a href="https://openai.com/index/openai-to-acquire-ona">OpenAI to acquire Ona</a> · <a href="https://simonwillison.net/2026/Jun/10/datasette-agent/">datasette-agent 0.2: ask_user mid-execution</a> · <a href="https://www.latent.space/p/ainews-loopcraft-the-art-of-stacking">Loopcraft</a> · <a href="https://nitter.net/swyx/status/2065559864559145420">swyx: The Future Codebase</a> · <a href="https://news.ycombinator.com/item?id=48504912">Reducing AI front-end sloppiness</a></p>
<h3>When the agent runs amok: the new operational risk surface</h3>
<p>The flip side of proactive agents got its own week of horror stories. An <a href="https://lantian.pub/en/article/fun/ai-agent-bankrupted-their-operator-scan-dn42lantian.lantian/">AI agent bankrupted its operator while trying to scan DN42</a> (<strong>1,448 points</strong>), another <a href="https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/">ran amok across Fedora&rsquo;s infrastructure</a> (<strong>549 points</strong>), a <a href="https://news.sky.com/story/derbyshire-police-officer-investigated-for-using-ai-to-create-evidence-in-multiple-cases-13553661">Derbyshire police officer is under investigation for using AI to fabricate evidence</a>, and <a href="https://techcrunch.com/2026/06/13/kpmg-pulls-report-on-ai-usage-due-to-apparent-hallucinations/">KPMG had to pull a report on AI usage over hallucinations</a>. Meanwhile the unglamorous cost shows up in Business Insider&rsquo;s finding that <a href="https://www.businessinsider.com/botsitting-ai-hidden-human-labor-at-work-2026-6">workers now spend 6+ hours a week &ldquo;botsitting&rdquo;</a>. The market is already responding: NVIDIA&rsquo;s <a href="https://github.com/NVIDIA/SkillSpector">SkillSpector</a>, a security scanner for AI agent skills, pulled <strong>2,799 stars this week</strong>.</p>
<p>Go deeper: <a href="https://news.ycombinator.com/item?id=48500012">Agent bankrupts operator</a> · <a href="https://lwn.net/SubscriberLink/1077035/c7e7c14fbd60fae9/">Agent runs amok in Fedora</a> · <a href="https://github.com/NVIDIA/SkillSpector">SkillSpector</a> · <a href="https://www.businessinsider.com/botsitting-ai-hidden-human-labor-at-work-2026-6">The botsitting tax</a> · <a href="https://deepmind.google/blog/investing-in-multi-agent-ai-safety-research/">DeepMind funds multi-agent safety</a></p>
<h3>Open weights, suddenly running at home</h3>
<p>The open ecosystem&rsquo;s mid-2026 status update is striking: as one r/LocalLLaMA poster put it, <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u5fv6n/local_models_in_mid2026/">open weights got runnable at home not by demanding more RAM but the reverse</a> — sparse attention, MoE, latent KV compression, multi-token prediction and 4-bit quant. The research feeding this is concrete: <a href="https://huggingface.co/papers/2606.13392">MiniMax Sparse Attention</a> (<strong>115 upvotes</strong>) makes million-token attention deployable on commodity GPUs, and Xiaomi is <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u5jtr8/xiaomi_is_now_serving_mimo_v25_at_10003000tps/">serving MiMo V2.5 at 1,000–3,000 tps</a> with a promised open release. The geopolitics intrude here too: with Fable gone, the <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u4wy3p/this_is_coming_to_chinese_open_source_models/">community openly expects the next leap to come from Chinese open-source models</a>, while <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u5kogv/it_sounds_like_meta_is_abandoning_inhouse_llm/">Meta appears to be abandoning in-house LLM development</a> and reassigning the team.</p>
<p>Go deeper: <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u5fv6n/local_models_in_mid2026/">Local models in mid-2026</a> · <a href="https://huggingface.co/papers/2606.13392">MiniMax Sparse Attention</a> · <a href="https://nitter.net/rasbt/status/2065778965273354545">Cohere&rsquo;s 30B agentic coding model</a> · <a href="https://news.ycombinator.com/item?id=48511908">Open Source AI Must Win</a> · <a href="https://www.reddit.com/r/LocalLLaMA/comments/1u5kogv/it_sounds_like_meta_is_abandoning_inhouse_llm/">Meta retreats from in-house LLMs</a></p>
<h3>Agents as the new evaluation problem</h3>
<p>Quietly, the benchmark world is conceding that static evals are obsolete. <a href="https://huggingface.co/papers/2606.13681">EvoArena</a> (<strong>122 upvotes</strong>) models environments as <em>sequences of progressive updates</em> and finds today&rsquo;s agents score just 39.6% when the world changes underneath them — its patch-based EvoMem memory is a notable mitigation. <a href="https://huggingface.co/papers/2606.13662">EurekAgent</a> reframes the whole game as <em>environment engineering</em> — that the bottleneck for autonomous discovery has shifted from prescribing agent workflows to designing the resources, permissions, and budgets that shape agent behavior. If you&rsquo;re building agents, this is the mental model to absorb: you tune the environment, not the prompt.</p>
<p>Go deeper: <a href="https://huggingface.co/papers/2606.13681">EvoArena &amp; EvoMem</a> · <a href="https://huggingface.co/papers/2606.13662">EurekAgent: environment engineering</a> · <a href="https://github.com/huggingface/OpenEnv">HuggingFace OpenEnv</a> · <a href="https://huggingface.co/papers/2606.11662">TreeSeeker deep search</a></p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://openai.com/index/openai-to-acquire-ona">Ona (→ OpenAI/Codex)</a></strong> — OpenAI acquires Ona for secure, persistent cloud environments; the infrastructure layer for long-running enterprise agents.</li>
<li><strong><a href="https://huggingface.co/papers/2606.13392">MiniMax Sparse Attention</a></strong> — Blockwise sparse attention on GQA that makes million-token context deployable across ordinary GPUs (<strong>115 upvotes</strong>).</li>
<li><strong><a href="https://github.com/NVIDIA/SkillSpector">SkillSpector</a></strong> — NVIDIA&rsquo;s security scanner for AI agent skills; <strong>2,799 stars this week</strong> as agent-supply-chain risk goes mainstream.</li>
<li><strong><a href="https://huggingface.co/papers/2606.12243">VIA-SD</a></strong> — Speculative decoding with a routed &ldquo;slim verifier&rdquo; for medium-confidence tokens; 10–20% speedups over strong SD baselines.</li>
<li><strong><a href="https://github.com/LMCache/LMCache">LMCache</a></strong> — A fast KV-cache layer for LLM serving, trending at <strong>585 stars this week</strong>.</li>
<li><strong><a href="https://nitter.net/rasbt/status/2065778965273354545">Cohere&rsquo;s 30B agentic coder</a></strong> — Lightweight open-weight model built on Command A+ with a parallel transformer design, evaluated <em>inside</em> terminal workflows rather than single-shot.</li>
<li><strong><a href="https://www.producthunt.com/products/kimi-ai-assistant">Kimi K2.7 Code</a></strong> — Moonshot&rsquo;s most capable coding model yet, shipping on Product Hunt.</li>
<li><strong><a href="https://www.reddit.com/r/LocalLLaMA/comments/1u5jtr8/xiaomi_is_now_serving_mimo_v25_at_10003000tps/">MiMo V2.5 (DFlash)</a></strong> — Xiaomi serving at 1,000–3,000 tps via persistent kernels; weights release promised.</li>
<li><strong><a href="https://github.com/huggingface/OpenEnv">OpenEnv</a></strong> — HuggingFace&rsquo;s interface library for RL post-training with environments; the &ldquo;environment engineering&rdquo; thesis in code.</li>
<li><strong><a href="https://huggingface.co/blog/allenai/olmo-eval">olmo-eval</a></strong> — AI2&rsquo;s evaluation workbench for the model-development loop.</li>
<li><strong><a href="https://github.com/Paca-AI/paca">Paca</a></strong> — A lightweight, Go-based Jira alternative where humans and AI agents are equal teammates planning sprints (<strong>158 points</strong>).</li>
<li><strong><a href="https://github.com/tensorzero/tensorzero">TensorZero</a></strong> — Cautionary tale: an open-source LLMOps repo archived overnight right after a $7.3M seed (<strong>269 points</strong>) — diligence your dependencies.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong><a href="https://www.normaltech.ai/p/why-ai-hasnt-replaced-software-engineers">Why AI hasn&rsquo;t replaced software engineers, and won&rsquo;t</a></strong> — A grounded counterweight to the Fable hype (<strong>309 points, 356 comments</strong>); pair it with Sarah Guo&rsquo;s essay on <a href="https://www.latent.space/p/ainews-open-models-model-labs-vs">model labs vs. agent labs and what&rsquo;s &ldquo;untrainable&rdquo;</a> for the clearest framing of where defensibility actually lives.</li>
<li><strong><a href="https://simonwillison.net/2026/Jun/12/andrew-singleton/">AI Economics for Dummies</a></strong> — Andrew Singleton&rsquo;s circular-financing fable, quoted by Simon, is the funniest and most useful 200 words you&rsquo;ll read about the AI investment bubble.</li>
<li><strong><a href="https://www.kennethpayne.uk/p/shall-we-play-a-game">Shall We Play a Game?</a></strong> — An AI nuclear-crisis simulation (<strong>205 points</strong>) that lands differently the same week a government cited &ldquo;national security&rdquo; to switch off a commercial model.</li>
</ul>]]></content:encoded>
</item>
<item>
<title>Beeg Model Smell</title>
<link>https://panel.github.io/ai-update/editions/2026-06-10.html</link>
<guid isPermaLink="true">https://panel.github.io/ai-update/editions/2026-06-10.html</guid>
<pubDate>Wed, 10 Jun 2026 00:00:00 +0000</pubDate>
<description>Anthropic dropped Claude Fable 5 and the people who build coding agents for a living are uninstalling their IDEs again — meanwhile the labs are openly fighting about whether the frontier should be allowed to improve itself.</description>
<content:encoded><![CDATA[<h1>Beeg Model Smell</h1>
<p><em>Anthropic dropped Claude Fable 5 and the people who build coding agents for a living are uninstalling their IDEs again — meanwhile the labs are openly fighting about whether the frontier should be allowed to improve itself.</em></p>
<h2>The Big Picture</h2>
<p>The period belongs to one release. <strong>Claude Fable 5</strong> landed in Claude Code and Cowork, and the reaction from people who have lived through every Anthropic launch is unusually consistent: this is a major-version-bump step change, <a href="https://nitter.net/alexalbert__/status/2064394410004304003#m">the first of its kind since Opus 4.5 in November</a>. Karpathy frames it as <a href="https://nitter.net/karpathy/status/2064409694761054332#m">SOTA &ldquo;by a margin&rdquo; and qualitatively a different thing</a> — the model &ldquo;gets&rdquo; ambitious tasks you wouldn&rsquo;t previously have handed off. swyx, rerunning his own benchmarks, says the official charts <a href="https://nitter.net/swyx/status/2064414823748886591#m">undersell the takeoff: it &ldquo;breaks every curve fit&rdquo;</a> because it&rsquo;s a different class of model. Take the breathless launch-week tone with appropriate salt, but the signal across independent observers is strong enough to treat as real.</p>
<p>What actually changed, if you read past the superlatives, is <em>autonomy</em>. The recurring phrase is the shift from directing a tool to collaborating with a partner — Boris Cherny <a href="https://nitter.net/bcherny/status/2064431111154053187#m">uninstalled his IDE</a> and now describes the model as a &ldquo;thought and design partner&rdquo; with &ldquo;judgement, taste, and dimensionality.&rdquo; The practical implication is that your scaffolding from the last model generation is now actively holding you back. Alex Albert&rsquo;s <a href="https://nitter.net/alexalbert__/status/2064467657483829441#m">usage tips</a> are blunt: give it bigger tasks, default to high effort, and <em>rewrite your skills and CLAUDE.md files</em> because instructions tuned for prior models &ldquo;anchor Fable to stale patterns.&rdquo;</p>
<p>The counter-melody is a sharpening fight about safety and power. Dario Amodei&rsquo;s <a href="https://news.ycombinator.com/item?id=48480719">Policy on the AI Exponential</a> drew a pointed rebuttal from Jeremy Howard, who argues Anthropic has <a href="https://nitter.net/jeremyphoward/status/2064595820952064054#m">chosen &ldquo;the opposite of the safe path&rdquo;</a> — reserving its top model for its own frontier research while signaling it would slow others. And François Chollet offered a useful deflationary frame for the whole boom: <a href="https://nitter.net/fchollet/status/2064740102463725853#m">it can be a bubble even if the tech works</a>. Worth holding both thoughts at once.</p>
<h2>Themes</h2>
<h3>Fable 5 and the &ldquo;objectives, not tasks&rdquo; workflow</h3>
<p>The model is the headline, but the durable takeaway is a workflow shift. The thing every Anthropic engineer keeps circling is <strong>self-verification</strong>: in the age of long-running agents, building loops that let the model check its own work is <a href="https://nitter.net/bcherny/status/2064426115255730578#m">the key ingredient that lets it run longer and land closer to intent</a> without constant babysitting. Fable is described as better at exactly this — <a href="https://nitter.net/bcherny/status/2064402671898075579#m">more efficient tokens, better tool use, more intelligent self-verification, higher autonomy</a>. The user-facing corollary, per Albert, is to <a href="https://nitter.net/alexalbert__/status/2064467657483829441#m">move from providing tasks to providing objectives</a> and let the model exercise its own judgment first.</p>
<p>There&rsquo;s also a free-lunch window worth exploiting: swyx notes <a href="https://nitter.net/swyx/status/2064492823781789969#m">a lot of &ldquo;alpha&rdquo; in pointing Claude Code at &ldquo;review my code for issues&rdquo; on Fable while it&rsquo;s not yet pay-per-use</a> — and warns you&rsquo;ll be horrified by what you already shipped.</p>
<p>Go deeper: <a href="https://nitter.net/bcherny/status/2064431111154053187#m">Cherny on Fable as design partner</a>, <a href="https://nitter.net/alexalbert__/status/2064467657483829441#m">Albert&rsquo;s four tips</a>, <a href="https://nitter.net/bcherny/status/2064426115255730578#m">self-verification loops</a>, <a href="https://nitter.net/karpathy/status/2064409694761054332#m">Karpathy&rsquo;s qualitative read</a>.</p>
<h3>Agents spawning agents</h3>
<p>The structural news inside Claude Code: <strong>nested subagent support</strong> has <a href="https://nitter.net/bcherny/status/2064327225504403752#m">landed, capped at depth=5</a>, with agents kicking off agents as a context-management strategy. This is the same idea OpenAI&rsquo;s side is pushing from a different angle — gdb&rsquo;s framing of Codex as <a href="https://nitter.net/gdb/status/2063705280270021087#m">&ldquo;an AI teammate instead of just an AI assistant&rdquo;</a>, and his sharper observation that when he <em>doesn&rsquo;t</em> reach for Codex it&rsquo;s <a href="https://nitter.net/gdb/status/2063437915347136554#m">usually missing context or a missing skill, rarely a capability ceiling — &ldquo;the overhang feels large&rdquo;</a>. Early signal, but the mental model converging across both labs is: the bottleneck is now your orchestration and context engineering, not the model.</p>
<p>Go deeper: <a href="https://nitter.net/bcherny/status/2064327225504403752#m">nested subagents</a>, <a href="https://nitter.net/gdb/status/2063705280270021087#m">Codex as teammate</a>, <a href="https://nitter.net/gdb/status/2063437915347136554#m">the overhang</a>.</p>
<h3>The safety fight gets specific</h3>
<p>The abstract &ldquo;should we slow down?&rdquo; debate got concrete this week. Dario Amodei&rsquo;s <a href="https://news.ycombinator.com/item?id=48480719">Policy on the AI Exponential</a> (102 points, 152 comments) is the anchor; Jeremy Howard&rsquo;s response is the part worth reading for tension. His argument: if you genuinely believe in slowing recursive self-improvement, <a href="https://nitter.net/jeremyphoward/status/2064597094741192874#m">you should ensure <em>your own org</em> can&rsquo;t use its best model for frontier research</a> — otherwise you&rsquo;re just <a href="https://nitter.net/jeremyphoward/status/2064595820952064054#m">advancing the frontier and widening the power imbalance</a> under a safety banner. The &ldquo;Sophanthropic&rdquo; jab about <a href="https://nitter.net/jeremyphoward/status/2064613063370977559#m">sabotaging others&rsquo; experiments to protect a lead</a> is rhetoric, but the underlying critique — that &ldquo;safe path&rdquo; framing can mask incumbent advantage — is the sharpest disagreement in the field right now.</p>
<p>Go deeper: <a href="https://news.ycombinator.com/item?id=48480719">Amodei&rsquo;s post + HN thread</a>, <a href="https://nitter.net/jeremyphoward/status/2064597094741192874#m">Howard&rsquo;s &ldquo;open it up&rdquo; position</a>, <a href="https://nitter.net/jeremyphoward/status/2064595820952064054#m">the power-imbalance critique</a>.</p>
<h3>Bubble logic, stated cleanly</h3>
<p>Cut through the optimism and the doom with Chollet&rsquo;s framing, which is the cleanest piece of reasoning this period: a thing can be <a href="https://nitter.net/fchollet/status/2064740102463725853#m">a bubble even when the tech works, even with product-market fit, even with a path to viability</a> — if profitability takes too long or kills margins. Independently, swyx&rsquo;s note that it was <a href="https://nitter.net/swyx/status/2064421542503797186#m">34 days from signing an NVIDIA deal to GA of a Mythos-class model</a> is the bull case for velocity. Hold them together: capability and timelines are not the same axis as economics.</p>
<p>Go deeper: <a href="https://nitter.net/fchollet/status/2064740102463725853#m">Chollet on bubbles</a>, <a href="https://nitter.net/swyx/status/2064421542503797186#m">swyx on 34-day shipping</a>, <a href="https://nitter.net/fchollet/status/2063350697626845639#m">Chollet on knowledge vs. intelligence</a>.</p>
<h2>Radar</h2>
<ul>
<li><strong><a href="https://nitter.net/bcherny/status/2064402671898075579#m">Claude Fable 5</a></strong> — Anthropic&rsquo;s new coding/agent model in Claude Code and Cowork; described internally as the same base as &ldquo;Mythos&rdquo; plus <a href="https://nitter.net/karpathy/status/2064409694761054332#m">safeguards</a>, and a genuine step change.</li>
<li><strong><a href="https://nitter.net/bcherny/status/2064327225504403752#m">Nested subagents in Claude Code</a></strong> — agents can now spawn agents to depth 5 for context management; ships in the current release.</li>
<li><strong><a href="https://news.ycombinator.com/item?id=48480719">Policy on the AI Exponential</a></strong> — Dario Amodei&rsquo;s framework for governing accelerating AI; the week&rsquo;s central policy text (102 pts).</li>
<li><strong><a href="https://www.producthunt.com/products/solarch">Solarch</a></strong> — interactive architecture diagrams generated with AI that stay in sync with your code; a small bet on the &ldquo;docs that don&rsquo;t rot&rdquo; problem.</li>
<li><strong><a href="https://openai.com/index/using-codex-to-simulate-black-holes">Codex for black-hole simulation</a></strong> — astrophysicist Chi-kwan Chan builds general-relativity simulations with Codex; a concrete scientific-computing use case beyond web apps.</li>
<li><strong><a href="https://openai.com/index/built-to-benefit-everyone-our-plan/">OpenAI&rsquo;s &ldquo;built to benefit everyone&rdquo; plan</a></strong> — gdb-flagged statement of mission and goals; more positioning than substance, but worth a skim for direction.</li>
<li><strong><a href="https://nitter.net/rasbt/status/2064384777663193498#m">The MLA → LoRA → SVD lineage</a></strong> — Sebastian Raschka traces LatentMoE back through low-rank decomposition fundamentals; a tidy reminder that &ldquo;new&rdquo; architectures are old math.</li>
<li><strong><a href="https://www.nytimes.com/2026/06/08/us/ai-college-degrees.html">AI degrees go mainstream</a></strong> — University of North Dakota among schools now offering dedicated AI degrees; adoption signal for the talent pipeline.</li>
</ul>
<h2>Don&rsquo;t Miss</h2>
<ul>
<li><strong>The CLAUDE.md migration is real work, not optional.</strong> If you use Claude Code, treat the Fable launch as a prompt to audit your skills and config files — <a href="https://nitter.net/alexalbert__/status/2064467657483829441#m">instructions written for older models now degrade performance</a>. This is the kind of invisible debt that quietly caps what a better model can do for you.</li>
<li><strong>Read Howard&rsquo;s thread alongside Amodei&rsquo;s post, not after it.</strong> The <a href="https://nitter.net/jeremyphoward/status/2064597094741192874#m">open-it-up-and-democratize argument</a> is the strongest counter to incumbent-safety framing currently circulating, and the disagreement maps directly onto which labs you choose to build on.</li>
</ul>]]></content:encoded>
</item>
</channel>
</rss>
