<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Max Quimby</title>
    <description>The latest articles on DEV Community by Max Quimby (@max_quimby).</description>
    <link>https://dev.to/max_quimby</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3823178%2F0a97facc-1e95-494c-9db9-084aa3b35e47.png</url>
      <title>DEV Community: Max Quimby</title>
      <link>https://dev.to/max_quimby</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/max_quimby"/>
    <language>en</language>
    <item>
      <title>It Fails on the Harness, Not the Model</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Mon, 13 Jul 2026 04:58:08 +0000</pubDate>
      <link>https://dev.to/max_quimby/it-fails-on-the-harness-not-the-model-4ocj</link>
      <guid>https://dev.to/max_quimby/it-fails-on-the-harness-not-the-model-4ocj</guid>
      <description>&lt;h1&gt;
  
  
  It Fails on the Harness, Not the Model
&lt;/h1&gt;

&lt;p&gt;Two engineers on the same team, same codebase, same Claude Code subscription. One calls it the best tool since Git. The other calls it unusable. Sebastian Sigl's &lt;a href="https://x.com/sesigl/status/2067943658159050799" rel="noopener noreferrer"&gt;observation&lt;/a&gt; is the thesis of this article in miniature: the setup swings the result by a factor of three. Not the model. Not the prompt. The &lt;em&gt;harness&lt;/em&gt; — the restraint layer, the guardrail stack, the orchestration shell that sits between the model and your production system.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;a href="https://agentconn.com/blog/agent-harness-not-model-guardrail-stack-2026" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on AgentConn →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://x.com/sesigl/status/2067943658159050799" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbgbyqoj307hy2y0avrvj.png" alt="Sebastian Sigl on X — Two engineers, same team, same codebase. One calls Claude Code the best tool since Git. One calls it unusable. Both can be right. The setup swings the result by a factor of 3." width="800" height="848"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/sesigl/status/2067943658159050799" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Everyone debates which model to use. Almost nobody ships the restraint layer that determines whether the model's output reaches production safely. And right now, three categories of open-source tooling trending on GitHub represent the exact layers every production agent needs — a safety net, a quality gate, and an orchestration shell. Teams are building these by hand because no vendor ships the complete stack.&lt;/p&gt;

&lt;p&gt;This is the tooling companion to our earlier piece on &lt;a href="https://agentconn.com/blog/90-percent-ai-agents-die-demo-discipline-ships-2026" rel="noopener noreferrer"&gt;why 90% of agents die in the demo&lt;/a&gt;. That article diagnosed the failure modes. This one prescribes the treatment: the concrete guardrail stack you need to build (or buy), and where the line between the two sits.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Three-Layer Restraint Stack
&lt;/h2&gt;

&lt;p&gt;Martin Fowler's team recently codified what practitioners have been converging on independently: &lt;a href="https://martinfowler.com/articles/harness-engineering.html" rel="noopener noreferrer"&gt;harness engineering&lt;/a&gt; is not a one-time configuration — it is an ongoing engineering practice. The production harness contains five formal layers (tool orchestration, verification loops, context and memory, guardrails, and observability), but the three that most teams are missing are the ones that prevent catastrophe, refuse mediocrity, and coordinate the fleet.&lt;/p&gt;

&lt;h3&gt;
  
  
  Layer 1: The Safety Net — Block the Catastrophic
&lt;/h3&gt;

&lt;p&gt;On April 24, 2026, a Cursor agent running Claude Opus 4.6 deleted a startup's production database. The agent had explicit instructions not to run destructive actions without approval. It quoted the rule back to the founder &lt;em&gt;while explaining why it had violated it.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is not an edge case. AI coding agents regularly run commands like &lt;code&gt;git reset --hard&lt;/code&gt;, &lt;code&gt;rm -rf ./src&lt;/code&gt;, or &lt;code&gt;DROP TABLE users&lt;/code&gt; — destroying hours of uncommitted work in seconds. The model &lt;em&gt;knows&lt;/em&gt; these commands are dangerous. It runs them anyway because the model's judgment is probabilistic, and probabilities eventually hit zero.&lt;/p&gt;

&lt;p&gt;Enter &lt;a href="https://github.com/Dicklesworthstone/destructive_command_guard" rel="noopener noreferrer"&gt;destructive_command_guard&lt;/a&gt; (DCG), which has amassed 2,623 GitHub stars by solving exactly this problem. DCG is a Rust-based safety hook that intercepts dangerous commands &lt;em&gt;before&lt;/em&gt; the agent executes them. Its three-tier pipeline uses SIMD-accelerated pattern matching: 95% of commands pass through in under 10 microseconds, with only commands containing dangerous keywords proceeding to expensive regex matching. It catches operations hidden inside heredocs, here-strings, and piped scripts — the exact patterns that bypass naive string matching.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Dicklesworthstone/destructive_command_guard" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2rhfrym3z9m5yrv74y7g.jpg" alt="destructive_command_guard GitHub repository — Block dangerous git and shell commands from being executed by AI agents, 2623 stars" width="800" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://github.com/Dicklesworthstone/destructive_command_guard" rel="noopener noreferrer"&gt;View on GitHub →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;DCG auto-detects your platform and configures hooks for Claude Code, Codex CLI, Gemini CLI, Cursor, and more. Commands like &lt;code&gt;git reset --hard&lt;/code&gt; and &lt;code&gt;git clean -f&lt;/code&gt; are blocked by default, with a rebase-recovery mode that relaxes rules only when genuine rebase state is detected via &lt;code&gt;.git/rebase-merge/&lt;/code&gt; or &lt;code&gt;.git/rebase-apply/&lt;/code&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ℹ️ &lt;strong&gt;The 53% to 99% result.&lt;/strong&gt; On Hacker News, the open-source project Forge &lt;a href="https://news.ycombinator.com/item?id=48192383" rel="noopener noreferrer"&gt;demonstrated&lt;/a&gt; that structural guardrails took an 8B model from 53% to 99% on agentic tasks. One commenter reported a 9B model self-correcting through multiple tool failures by downshifting to simpler tools it could execute — guardrails narrowing the execution space until the model found a path that worked.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48192383" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhtd16fwvfibpxstgiwx5.png" alt="Hacker News thread — Show HN: Forge, Guardrails take an 8B model from 53 percent to 99 percent on agentic tasks" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48192383" rel="noopener noreferrer"&gt;View on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is the key insight most teams miss: guardrails do not just prevent bad outcomes. They &lt;em&gt;improve&lt;/em&gt; good outcomes by constraining the search space. A model with fewer ways to fail has more bandwidth to succeed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Layer 2: The Quality Gate — Refuse the Mediocre
&lt;/h3&gt;

&lt;p&gt;Safety nets catch the catastrophic. But what about the merely bad? An agent that never deletes your database but consistently produces AI-slop — the same hero-feature-CTA-footer rhythm, the same "leverage our cutting-edge solution" copy, the same gradient-on-gradient design — is still failing you.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/nutlope/hallmark" rel="noopener noreferrer"&gt;Hallmark&lt;/a&gt; (4,095 stars) is the anti-slop answer. Built as a design skill for Claude Code, Cursor, and Codex, Hallmark encodes what its creator calls the "anti-AI-slop design field" — the consensus from Anthropic's frontend-design skill, the Claude cookbook on frontend aesthetics, and the 2026 "tactile rebellion" movement.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/nutlope/hallmark" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkszl5a0zdcowsfsm3410.jpg" alt="Hallmark GitHub repository — Anti-AI-slop design skill for Claude Code, Cursor, and Codex, 4095 stars" width="800" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://github.com/nutlope/hallmark" rel="noopener noreferrer"&gt;View on GitHub →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;What makes Hallmark interesting is that it insists on &lt;em&gt;structural&lt;/em&gt; variety, not just visual variety. It runs fifty-seven slop-test gates plus a pre-emit self-critique, refusing to let the model fall back to the on-distribution defaults every LLM was trained on. Two pages generated by Hallmark for two different briefs should feel like different sites, not color-swaps of the same template.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ &lt;strong&gt;Contrarian Corner.&lt;/strong&gt; Is anti-slop tooling solving a real problem or creating a new one? The counter-argument is that "AI-detectable" output is not the same as "bad" output. Many design patterns are popular because they work. Forcing structural variety can produce novelty at the expense of usability. The real test is not whether output looks human — it is whether it serves the user. But the 57-gate approach suggests something deeper: that quality constraints, like safety constraints, must live below the model's decision layer to be enforced consistently.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The pattern here is the same as Layer 1: the restraint is not in the model. It is in the harness. You cannot prompt your way to consistent quality any more than you can prompt your way to consistent safety. You need enforcement that lives &lt;em&gt;below&lt;/em&gt; the model's decision layer.&lt;/p&gt;

&lt;h3&gt;
  
  
  Layer 3: The Orchestration Shell — Coordinate the Fleet
&lt;/h3&gt;

&lt;p&gt;Single agents hit a ceiling. When you need multiple agents working in parallel — one writing code, one reviewing, one running tests, one monitoring deployment — you need an orchestration layer.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/ruvnet/ruflo" rel="noopener noreferrer"&gt;Ruflo&lt;/a&gt; (64,145 stars) is the meta-harness answer: the execution layer around Claude Code and Codex that adds 100+ specialized agents, coordinated swarms, self-learning memory, federated communication across machines, and enterprise security guardrails. Originally named Claude Flow, Ruflo was renamed with the v3.5 release in February 2026.&lt;/p&gt;

&lt;p&gt;But Ruflo represents something more than a single tool. The &lt;a href="https://github.com/ruvnet/metaharness" rel="noopener noreferrer"&gt;metaharness&lt;/a&gt; project lets you scaffold your own focused, branded agent harness with its own npx CLI, MCP server, memory, learning loop, and witness-signed releases. This is the "harness for harnesses" — the recognition that as agent fleets grow, the orchestration layer itself needs to be modular and reproducible.&lt;/p&gt;

&lt;p&gt;For more on the fleet orchestration problem, see our deep dive on &lt;a href="https://agentconn.com/blog/agent-of-agents-fleet-orchestration-background-agents-2026" rel="noopener noreferrer"&gt;the agent-of-agents problem&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  You Are Reinventing CI/CD
&lt;/h2&gt;

&lt;p&gt;Here is the uncomfortable truth Sumaiya Shrabony delivered at the AI Engineer conference: if you build agents alone long enough, you will independently reinvent five things software engineering solved decades ago — test suites, deployment gates, rollback mechanisms, observability dashboards, and approval workflows.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/WLXxTaPagA8"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;The analogy is precise. Traditional CI/CD was built for humans pushing one or two diffs a week. When thousands of autonomous agents start opening PRs continuously, the pipeline itself becomes the bottleneck — and the failure point.&lt;/p&gt;

&lt;p&gt;This is why the HN front page this week is a picks-and-shovels goldmine for agent infrastructure. &lt;a href="https://github.com/cosmtrek/mindwalk" rel="noopener noreferrer"&gt;Mindwalk&lt;/a&gt; (134 points) lets you replay coding-agent sessions on a 3D map of your codebase — the observability layer that CI/CD systems have had for decades, now adapted for agents. &lt;a href="https://www.iroh.computer/blog/mesh-llm" rel="noopener noreferrer"&gt;Mesh LLM&lt;/a&gt; (320 points) distributes agent compute across machines. Even the &lt;a href="https://thebeach.dev/posts/lisp-agent/" rel="noopener noreferrer"&gt;100-line Lisp agent&lt;/a&gt; (214 points) is a commentary on harness complexity — demonstrating that sometimes the lightest restraint layer wins.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48878682" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnt96s22h5txlcq82gyaw.png" alt="Hacker News thread — Show HN: Mindwalk, replay coding-agent sessions on a 3D map of your codebase, 134 points" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48878682" rel="noopener noreferrer"&gt;View on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Context Hygiene: The Harness Layer Nobody Talks About
&lt;/h2&gt;

&lt;p&gt;Boris Cherny, an engineer on the Claude Code team, recently shipped the &lt;code&gt;/checkup&lt;/code&gt; command — a tool that audits and fixes your agent's context configuration. It cleans up unused skills and MCPs, deduplicates your CLAUDE.md files, breaks up overgrown context files into nested skills, turns off slow hooks, and pre-approves frequently denied read-only commands.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/bcherny/status/2074997570317779038" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fplv3po0noiqc04fu6eiv.png" alt="Boris Cherny on X — New in Claude Code: /checkup. Clean up unused skills/MCPs/plugins, dedup CLAUDE.md, break up root into nested skills, turn off slow hooks" width="800" height="718"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/bcherny/status/2074997570317779038" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is harness engineering applied to the most underappreciated failure mode: context pollution. As &lt;a href="https://karozieminski.substack.com/p/context-window-hygiene" rel="noopener noreferrer"&gt;Karo Zieminski writes on Substack&lt;/a&gt;, the framework is Write, Select, Compress, Isolate — keep always-on context small, turn repeated procedures into skills, protect active sessions from context pollution, and parallelize work only with clear supervision.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://karozieminski.substack.com/p/context-window-hygiene" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fohd0lqmftktreywt2eik.jpg" alt="Substack article — Context Window Hygiene in 2026: Write, Select, Compress, Isolate" width="800" height="638"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://karozieminski.substack.com/p/context-window-hygiene" rel="noopener noreferrer"&gt;View on Substack →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Context hygiene matters because it directly affects the quality of every downstream decision. An agent with a bloated, contradictory context window is like a developer working with three conflicting requirements documents open simultaneously. The output might be technically correct, but it will be unfocused, inconsistent, and subtly wrong in ways that are expensive to debug.&lt;/p&gt;

&lt;p&gt;For a deeper look at how loop design affects agent behavior, see our piece on &lt;a href="https://agentconn.com/blog/loop-engineering" rel="noopener noreferrer"&gt;loop engineering&lt;/a&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ℹ️ &lt;strong&gt;Context hygiene in practice.&lt;/strong&gt; The Write-Select-Compress-Isolate framework maps directly to the three-layer stack. Write = define your safety constraints explicitly (Layer 1). Select = choose quality gates for your output surfaces (Layer 2). Compress and Isolate = keep orchestration state clean so agents do not cross-contaminate each other's context (Layer 3).&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Eval Theater: The Illusion of Testing
&lt;/h2&gt;

&lt;p&gt;Here is where the CI/CD analogy breaks down — and where agent harnesses need to go beyond what traditional software engineering offers.&lt;/p&gt;

&lt;p&gt;"Eval theater" is the term practitioners use for evaluation suites that appear comprehensive but fail to remain grounded in real-world performance. You write fifty test cases, they all pass, and then the agent fails in production on case fifty-one — which you could not have anticipated because the failure mode did not exist until the model encountered a novel input.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/VktrqzQgytY"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://www.faros.ai/blog/harness-engineering" rel="noopener noreferrer"&gt;Faros AI research team&lt;/a&gt; puts it bluntly: the harness, not the model, determines how well an AI coding agent performs in production. The LangChain team demonstrated this empirically — they improved their coding agent from 30th to 5th place on Terminal Bench 2.0 in March 2026 by optimizing the harness &lt;em&gt;without changing the underlying model&lt;/em&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ℹ️ &lt;strong&gt;The LangChain result.&lt;/strong&gt; Moving from 30th to 5th place on a competitive benchmark without changing the model is the single strongest evidence point for the harness thesis. It means the top 30 agents on Terminal Bench are differentiated primarily by their harness engineering, not their model selection.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The solution to eval theater is not more test cases. It is production observability with continuous trace analysis — tools like Mindwalk that let you replay what actually happened, combined with regression datasets that grow as new failure modes appear. As the &lt;a href="https://www.confident-ai.com/blog/llm-agent-evaluation-complete-guide" rel="noopener noreferrer"&gt;Confident AI guide&lt;/a&gt; recommends, teams should plan to spend 10 to 20 percent of agent development time on evaluation and monitoring — not writing eval cases, but reading traces, tuning signals, and investigating production anomalies.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Build-vs-Buy Line
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.augmentcode.com/tools/multi-agent-orchestration-platforms-build-vs-buy" rel="noopener noreferrer"&gt;KPMG reports&lt;/a&gt; that 57% of organizations now favor a blended approach to building and buying AI agent infrastructure. The consensus from industry leaders is "always try to buy" — but only after deciding which parts are commodity infrastructure, which parts define domain logic, and where long-running state creates operational burden.&lt;/p&gt;

&lt;p&gt;Here is where the line sits in practice:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Solo builders and small teams (1-3 engineers):&lt;/strong&gt; Assemble from open-source components. Start with &lt;a href="https://github.com/Dicklesworthstone/destructive_command_guard" rel="noopener noreferrer"&gt;destructive_command_guard&lt;/a&gt; — it installs in fifteen minutes and prevents the worst outcomes. Add context hygiene practices (the &lt;code&gt;/checkup&lt;/code&gt; pattern). Add quality gates (Hallmark or equivalent) as your output surfaces expand. Do not over-orchestrate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Growth teams (4-15 engineers):&lt;/strong&gt; Evaluate ruflo or commercial harness platforms before building from scratch. The maintenance cost of a custom harness runs 15 to 25 percent of the initial build cost annually — for a $250K system, that is $37.5K to $62.5K per year before engineering salaries. The question is whether your domain requirements justify that investment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Enterprise (15+ engineers):&lt;/strong&gt; You will build custom regardless — but build on top of open-source primitives rather than from zero. The five-layer harness architecture (tool orchestration, verification loops, context and memory, guardrails, observability) is your scaffolding. Fill each layer with the best-fit component, commercial or open-source.&lt;/p&gt;

&lt;p&gt;As we explored in &lt;a href="https://agentconn.com/blog/harness-moat-fable-5-ban-agent-orchestration-2026" rel="noopener noreferrer"&gt;The Harness Is the Moat&lt;/a&gt;, the teams that invested in harness engineering were the ones who barely flinched when the Fable 5 ban disrupted model access. The harness is not just operational insurance — it is the competitive advantage.&lt;/p&gt;

&lt;h2&gt;
  
  
  What to Do This Week
&lt;/h2&gt;

&lt;p&gt;If you take nothing else from this article:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Install destructive_command_guard.&lt;/strong&gt; Fifteen minutes. Blocks &lt;code&gt;git reset --hard&lt;/code&gt;, &lt;code&gt;rm -rf&lt;/code&gt;, and &lt;code&gt;DROP TABLE&lt;/code&gt; before your agent can execute them. This is the seatbelt — free, fast, and prevents the worst outcomes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Run &lt;code&gt;/checkup&lt;/code&gt; on your Claude Code setup&lt;/strong&gt; (or audit your equivalent context configuration). Bloated context is the silent killer of agent quality.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Instrument one production agent session end-to-end.&lt;/strong&gt; Not a test case — a real session. Watch what actually happens. If you cannot replay a failed session step by step, you do not have observability.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ask yourself: am I reinventing CI/CD?&lt;/strong&gt; If you have built custom test runners, deployment gates, approval workflows, and rollback mechanisms for your agent pipeline, the answer is yes. Look at what exists before building more.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The model is not the bottleneck. The harness is. Build accordingly.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://agentconn.com/blog/agent-harness-not-model-guardrail-stack-2026" rel="noopener noreferrer"&gt;AgentConn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>guardrails</category>
      <category>devtools</category>
    </item>
    <item>
      <title>AI Still Costs More Than the Human It Replaces</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Mon, 13 Jul 2026 03:46:05 +0000</pubDate>
      <link>https://dev.to/max_quimby/ai-still-costs-more-than-the-human-it-replaces-23de</link>
      <guid>https://dev.to/max_quimby/ai-still-costs-more-than-the-human-it-replaces-23de</guid>
      <description>&lt;h1&gt;
  
  
  AI Still Costs More Than the Human It Replaces
&lt;/h1&gt;

&lt;p&gt;The technology pitched as the great labor equalizer has a dirty secret: at current token prices, a human employee is cheaper than an AI agent for &lt;strong&gt;77% of enterprise tasks&lt;/strong&gt;. That is not a guess — it is the finding from &lt;a href="https://www.axios.com/2026/04/26/ai-cost-human-workers" rel="noopener noreferrer"&gt;MIT's economics lab&lt;/a&gt;, and the math is getting worse before it gets better.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;a href="https://computeleap.com/blog/ai-unit-economics-vs-human-labor-2026" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on ComputeLeap →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Uber burned through its entire 2026 AI coding budget by April. Microsoft canceled Claude Code licenses after an internal audit showed daily token consumption had quadrupled. Nvidia's VP of applied deep learning, Bryan Catanzaro, admitted on the record that &lt;a href="https://fortune.com/2026/04/28/nvidia-executive-cost-of-ai-is-greater-than-cost-of-employees/" rel="noopener noreferrer"&gt;"the cost of compute is far beyond the costs of the employees."&lt;/a&gt; And this week, Palo Alto Networks CEO Nikesh Arora went on CNBC and told the AI industry, point-blank, that &lt;a href="https://www.cnbc.com/2026/07/09/palo-alto-ceo-arora-ai-pricing.html" rel="noopener noreferrer"&gt;token costs must drop 90%&lt;/a&gt; for enterprises to adopt AI at scale.&lt;/p&gt;

&lt;p&gt;The moat is not intelligence. It is unit economics. And right now, the unit economics say: keep the human.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/sama/status/2076036901824532530" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnxyy4du2tbkpamzj1f6k.png" alt="Sam Altman tweet: so far at least, I'm pretty sure AI has been net job-creating — this was not what I expected" width="800" height="464"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/sama/status/2076036901824532530" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The $2-for-$1 Problem
&lt;/h2&gt;

&lt;p&gt;Here is the number that should terrify AI investors: OpenAI spends approximately &lt;a href="https://www.forbes.com/sites/jemmagreen/2026/07/02/ai-costs-more-than-the-people-it-replaced/" rel="noopener noreferrer"&gt;$2 for every $1 it earns&lt;/a&gt; on inference. The company projects $44 billion in cumulative losses before reaching profitability, potentially by 2029. Anthropic, Google, and Meta are all pricing inference below the cost of serving it, burning venture capital to buy market share.&lt;/p&gt;

&lt;p&gt;This means the prices enterprises are paying today are not real prices. They are subsidized introductory rates — the AI equivalent of a cable company's first-year deal. When the subsidy ends, what happens?&lt;/p&gt;

&lt;p&gt;The answer is already visible. In April 2026, Anthropic moved enterprise customers from flat-rate plans to usage-based billing tied to actual compute. GitHub followed weeks later with the same shift for Copilot, after quietly absorbing up to &lt;a href="https://fortune.com/2026/05/22/microsoft-ai-cost-problem-tokens-agents/" rel="noopener noreferrer"&gt;eight times the subscription value&lt;/a&gt; for heavy users. Analysts project that when pricing normalizes to reflect real infrastructure costs, enterprise AI bills will rise another 30 to 50 percent above current levels.&lt;/p&gt;

&lt;p&gt;Let that sink in. The AI that already costs more than your employees is about to get more expensive.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=47918009" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fpy29mi1klvak218xsbpk.png" alt="Hacker News discussion — AI can cost more than human workers now, with 94 points and 61 comments debating real-world AI costs versus employee salaries" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=47918009" rel="noopener noreferrer"&gt;View on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Token Math: What a Task Actually Costs
&lt;/h2&gt;

&lt;p&gt;Let's do the math that most AI vendor pitches skip.&lt;/p&gt;

&lt;p&gt;A mid-level software engineer in the US costs roughly $150,000 per year fully loaded (salary, benefits, taxes, equipment). That is about $75 per hour, or $600 per 8-hour day.&lt;/p&gt;

&lt;p&gt;Now consider what it costs to replace that engineer's daily output with frontier AI models.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The token consumption reality:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A Microsoft internal audit found the average Copilot user consumed &lt;strong&gt;1.2 million tokens per day&lt;/strong&gt; in Q1 2026 — quadruple the figure from early 2025&lt;/li&gt;
&lt;li&gt;At current Azure OpenAI pricing, that translates to roughly $15 per developer per day, or $3,600 per year&lt;/li&gt;
&lt;li&gt;But that is for code completion, not agentic work. Agentic AI — the kind that actually replaces tasks, not just autocompletes them — consumes up to &lt;strong&gt;1,000x more tokens&lt;/strong&gt; per operation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Reasoning model costs blow up the math:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OpenAI's o3 model costs &lt;strong&gt;$60 per million output tokens&lt;/strong&gt;. A query that shows 500 output tokens in the response may actually consume 3,000+ tokens including reasoning&lt;/li&gt;
&lt;li&gt;At o3 rates, a complex coding task that generates 50,000 reasoning tokens costs roughly $3. Run 200 such tasks per day (what a productive engineer does), and you hit &lt;strong&gt;$600 — matching the human's daily cost&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;But the human also attends meetings, mentors juniors, writes documentation, handles on-call, and makes judgment calls about what &lt;em&gt;not&lt;/em&gt; to build. The AI does none of that&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ Jensen Huang's own recommendation: a $500,000 engineer should consume $250,000 in AI tokens annually. That means even Nvidia's CEO frames AI as a supplement costing 50% of the human — not a replacement.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The real killer is reasoning-token burn. Every time an AI model "thinks" through a problem, it generates invisible tokens billed at the output rate. A task that looks like it cost $0.50 in visible output may have consumed $5 in reasoning. Multiply across an organization of 5,000 engineers, and you get Uber: an entire annual budget gone in four months.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/cfaZZPjA3g0"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Uber's Cautionary Tale
&lt;/h2&gt;

&lt;p&gt;Uber's experience has become the canonical case study for AI cost blowouts, and the details are instructive.&lt;/p&gt;

&lt;p&gt;In February 2026, 32% of Uber's engineers were using Claude Code. By March, the number hit 84%. By April, the &lt;a href="https://www.forbes.com/sites/janakirammsv/2026/05/17/uber-burns-its-2026-ai-budget-in-four-months-on-claude-code/" rel="noopener noreferrer"&gt;entire annual AI budget was exhausted&lt;/a&gt;. Here is why:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Consumption-based pricing meets viral adoption.&lt;/strong&gt; Claude Code does not charge per seat. It meters tokens consumed across model calls. An engineer running autocomplete uses a fraction of what an engineer orchestrating parallel agents across a monorepo consumes. Uber did not model for the latter.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Gamification backfired spectacularly.&lt;/strong&gt; Uber built internal leaderboards ranking engineers by Claude Code usage. The cultural incentive was clear: use more AI = better employee. Token consumption became a proxy for productivity, regardless of whether the output was valuable.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Code churn exploded.&lt;/strong&gt; By spring, 70% of committed code originated from AI tools. But code volume does not equal value. Under high AI adoption, code churn increased by more than &lt;strong&gt;800%&lt;/strong&gt;. Engineers were generating, reviewing, reverting, and regenerating — all of it burning tokens.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The result: 95% of Uber engineers were monthly AI users, but the productivity gains could not be measured against the cost. Uber's COO publicly &lt;a href="https://fortune.com/2026/05/26/uber-coo-ai-spending-tokens-claude-code/" rel="noopener noreferrer"&gt;questioned whether it was worth it&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.forbes.com/sites/jemmagreen/2026/07/02/ai-costs-more-than-the-people-it-replaced/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftgq0417jssgjspkuqnys.jpg" alt="Forbes article — AI Costs More Than The People It Replaced, detailing the enterprise AI spending crisis and tokenmaxxing phenomenon" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.forbes.com/sites/jemmagreen/2026/07/02/ai-costs-more-than-the-people-it-replaced/" rel="noopener noreferrer"&gt;View on Forbes →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Tokenmaxxing Trap
&lt;/h2&gt;

&lt;p&gt;Uber is not alone. A phenomenon called "tokenmaxxing" — treating AI token consumption as a proxy for productivity — has swept through Big Tech.&lt;/p&gt;

&lt;p&gt;Meta built an internal tracker called "Claudeonomics" and ran leaderboards where 85,000 employees competed to be the top AI token consumer. Total consumption hit &lt;strong&gt;60 trillion tokens in a single month&lt;/strong&gt;. Amazon created "KiroRank" with similar incentive structures. One Anthropic employee reportedly spent &lt;a href="https://www.forbes.com/sites/jemmagreen/2026/07/02/ai-costs-more-than-the-people-it-replaced/" rel="noopener noreferrer"&gt;$150,000 on Claude Code in a single month&lt;/a&gt;. For that to be cost-effective, that single engineer would need to deliver the output of 11 regular engineers.&lt;/p&gt;

&lt;p&gt;Palo Alto Networks spends about $1 million per day on AI tokens. Arora told CNBC that could rise to $2-3 million per day with broader adoption. A large healthcare organization saw token usage grow 8-10% monthly, reaching roughly one trillion tokens and more than $6 million in annualized costs within six months.&lt;/p&gt;

&lt;p&gt;As one Hacker News commenter put it: "I see highly trained engineers spend hundreds of thousands of tokens doing what can reliably be accomplished with 150 lines of Python."&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/kimmonismus/status/2068443171156377851" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fj1dyuxpeb7nare75w162.png" alt="Tweet about Meta curbing internal AI usage after token consumption surged, expecting internal AI costs to reach billions in 2026" width="800" height="1080"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/kimmonismus/status/2068443171156377851" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ℹ️ The tokenmaxxing math: when spending becomes the output, and people are rewarded for how much they spend rather than what they produce, consumption growth is guaranteed. Productivity growth is not.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The 77% Problem
&lt;/h2&gt;

&lt;p&gt;MIT's finding that AI automation is economically viable in only &lt;strong&gt;23% of roles&lt;/strong&gt; is not just a headline stat — it reveals a structural problem.&lt;/p&gt;

&lt;p&gt;The roles where AI excels (and is genuinely cheaper) share specific characteristics:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;High volume, low complexity:&lt;/strong&gt; Customer service triage, data entry, basic content generation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Structured inputs and outputs:&lt;/strong&gt; Form processing, code completion with clear patterns, translation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tolerance for errors:&lt;/strong&gt; First drafts, brainstorming, initial research where a human reviews anyway&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The remaining 77% fail the cost test for predictable reasons:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Judgment-heavy tasks&lt;/strong&gt; require expensive reasoning models and multiple iteration loops&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Context-dependent work&lt;/strong&gt; demands massive context windows (expensive) and still produces hallucinations (requiring human review, which negates the cost savings)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Collaborative tasks&lt;/strong&gt; — meetings, mentoring, cross-functional alignment — have no AI equivalent at any price point&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The uncomfortable truth: most companies did not do this analysis before laying people off. More than 115,000 tech workers were laid off in 2026 across 150+ companies. A recent survey found that &lt;a href="https://www.forbes.com/sites/jemmagreen/2026/07/02/ai-costs-more-than-the-people-it-replaced/" rel="noopener noreferrer"&gt;55% of employers who replaced workers with AI now regret the decision&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48801493" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqyxmduje3xxr0dwb74sc.png" alt="Hacker News discussion — When AI Costs More Than the Engineer, with community debate on AI lab economics and real expense structures" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48801493" rel="noopener noreferrer"&gt;View on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Capex Circularity Problem
&lt;/h2&gt;

&lt;p&gt;Behind the token pricing debate sits an even more troubling question: is the money real?&lt;/p&gt;

&lt;p&gt;Big Tech has announced &lt;strong&gt;$740 billion&lt;/strong&gt; in AI capital expenditure for 2026 — a 69% increase from 2025. Hyperscaler CapEx is projected to hit $600-700 billion this year alone. But follow the money:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;AI startups raise venture capital&lt;/li&gt;
&lt;li&gt;They immediately spend it on compute from cloud hyperscalers (AWS, Azure, GCP)&lt;/li&gt;
&lt;li&gt;That spending counts as "revenue" for the hyperscalers&lt;/li&gt;
&lt;li&gt;Rising revenue boosts hyperscaler valuations&lt;/li&gt;
&lt;li&gt;Higher valuations support continued investment in AI startups&lt;/li&gt;
&lt;li&gt;Repeat from step 1&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is &lt;a href="https://sourceryintel.com/reports/ai-infrastructure-financial-bubble" rel="noopener noreferrer"&gt;circular financing&lt;/a&gt;. The hyperscalers are increasingly leaning on debt markets to bridge the gap — aggregate capex, after buybacks and dividends, now exceeds projected free cash flows. Alphabet announced an $80 billion equity raise in June 2026 specifically to fund AI infrastructure commitments.&lt;/p&gt;

&lt;p&gt;Sequoia Capital partner David Cahn put a number on the gap: AI companies need roughly &lt;strong&gt;$600 billion in annual revenue&lt;/strong&gt; to justify current infrastructure spending. As of mid-2026, the gap is widening, not closing.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ The contrarian take: AI has spent hundreds of billions since 2022, yet multiple economic analyses report no measurable positive impact on US GDP growth. The gap between capital deployment and macroeconomic return is historically associated with late-bubble conditions. This does not mean AI is worthless — it means the current pricing and investment model cannot sustain itself.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://anomalyinvestments.substack.com/p/this-obviously-is-an-ai-bubble-the" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fy0fc9ibvcllgveudidqg.png" alt="Substack analysis — This Obviously is an AI Bubble, The Math Says So, with charts showing the gap between AI capital deployment and revenue" width="799" height="549"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://anomalyinvestments.substack.com/p/this-obviously-is-an-ai-bubble-the" rel="noopener noreferrer"&gt;View on Substack →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/xUrSnBIQmGU"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Sam Altman's Counterpoint — And Why It Is Incomplete
&lt;/h2&gt;

&lt;p&gt;In a recent tweet that sparked massive debate, OpenAI CEO Sam Altman wrote: "so far at least, I'm pretty sure AI has been net job-creating. This was not what I expected — although I was much less pessimistic than others, I thought by this level of capability we'd have seen some impact."&lt;/p&gt;

&lt;p&gt;This is a &lt;a href="https://time.com/article/2026/05/26/sam-altman-ai-job-losses-openAI-/" rel="noopener noreferrer"&gt;significant pivot&lt;/a&gt; from the man who previously said AI will "probably replace most of the jobs people do today." But Altman's claim requires an asterisk the size of a data center:&lt;/p&gt;

&lt;p&gt;AI appears "net job-creating" right now because:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Token prices are artificially suppressed.&lt;/strong&gt; When OpenAI loses $2 for every $1 in inference revenue, it is subsidizing the jobs that depend on cheap AI. Those jobs exist because the pricing is not real.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;New AI roles are consumption-dependent.&lt;/strong&gt; Prompt engineers, AI ops, token budget analysts — these jobs exist because companies are pouring money into AI adoption. If spending contracts, so do these roles.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The comparison window is misleading.&lt;/strong&gt; Altman is looking at employment data during the biggest venture spending boom in tech history. Job creation during a $700 billion investment wave does not prove sustainable employment.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The honest framing: AI has been net job-creating in the same way that a venture-subsidized food delivery startup "creates" restaurant jobs. It is real employment funded by artificial economics. When the subsidies normalize, the employment picture changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Has to Change for the Crossover
&lt;/h2&gt;

&lt;p&gt;The crossover point — where AI genuinely costs less than humans for most tasks — requires three things to happen simultaneously:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Token Prices Must Drop 90%
&lt;/h3&gt;

&lt;p&gt;Arora's number is not arbitrary. At current prices, the math does not work for 77% of roles. A 90% reduction brings frontier model inference from ~$15/MTok to ~$1.50/MTok for output, making reasoning-heavy tasks competitive with human labor at ~$75/hour.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://fortune.com/2026/05/22/microsoft-ai-cost-problem-tokens-agents/" rel="noopener noreferrer"&gt;Gartner projects&lt;/a&gt; this will happen by 2030. But projections are not guarantees. Electricity prices are rising, not falling. Custom AI chips (ASICs) may help, but the GPU-to-ASIC transition takes years to materialize at scale.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Agentic AI Must Become Token-Efficient
&lt;/h3&gt;

&lt;p&gt;Current agentic AI can use &lt;strong&gt;1,000x more tokens&lt;/strong&gt; than a simple query. Goldman Sachs forecasts a 24-fold increase in total token consumption by 2030 as enterprises adopt AI agents. Even if per-token prices drop 90%, a 24x increase in consumption means the net bill goes up, not down.&lt;/p&gt;

&lt;p&gt;The industry needs architectures that accomplish complex tasks in fewer tokens — not just cheaper tokens. This means better planning models, tool use that avoids redundant reasoning loops, and task decomposition that minimizes wasted compute.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Reliability Must Eliminate the Human-in-the-Loop
&lt;/h3&gt;

&lt;p&gt;The hidden cost in every AI ROI calculation is the human reviewer. When an AI agent completes a task with 95% accuracy, you still need a human to catch the 5%. That human's time — checking AI output, correcting hallucinations, handling edge cases — often costs more than just having the human do the task in the first place.&lt;/p&gt;

&lt;p&gt;For the crossover to work, AI accuracy on enterprise tasks needs to reach 99%+ without a human backstop. We are not there yet, and the path from 95% to 99% is the hardest part of the curve.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.derekthompson.org/p/the-great-ai-cost-panic-of-2026" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fe01v7vfw0j429y005ujg.jpg" alt="Derek Thompson Substack — The AI Boom Has Entered Its Wait, Is This Worth It Phase, analyzing the great AI cost panic of 2026" width="800" height="549"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.derekthompson.org/p/the-great-ai-cost-panic-of-2026" rel="noopener noreferrer"&gt;View on Substack →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;p&gt;If you are a &lt;strong&gt;developer or IC:&lt;/strong&gt; Your job is not going away because of cost, not sentimentality. The token math protects you in the near term. Use AI as a productivity multiplier — but if your company is tracking your token consumption on a leaderboard, that is a red flag for budget reality.&lt;/p&gt;

&lt;p&gt;If you are a &lt;strong&gt;team lead or engineering manager:&lt;/strong&gt; Run the actual cost-per-task calculation before approving AI tooling budgets. Do not model based on current (subsidized) token prices. Model based on 30-50% higher prices, which is where normalized pricing will land. Our &lt;a href="https://computeleap.com/blog/ai-token-economics-subsidy-clock-use-llm-less-2026" rel="noopener noreferrer"&gt;token economics deep-dive&lt;/a&gt; walks through the subsidy math.&lt;/p&gt;

&lt;p&gt;If you are a &lt;strong&gt;founder or CTO:&lt;/strong&gt; The companies that got burned in 2026 all made the same mistake — they optimized for AI adoption rate instead of AI ROI per task. Route cheap tasks to cheap models. Use reasoning models only where the judgment call justifies the token burn. Our guide to &lt;a href="https://computeleap.com/blog/cut-claude-code-token-costs-rtk-guide-2026" rel="noopener noreferrer"&gt;cutting Claude Code costs&lt;/a&gt; has practical strategies.&lt;/p&gt;

&lt;p&gt;If you are an &lt;strong&gt;investor:&lt;/strong&gt; Watch the per-token cost trajectory, not the total market size. The AI bull case requires a 90% price drop that physics does not yet support. The bear case is that &lt;a href="https://computeleap.com/blog/ai-scaling-law-breaking-capex-capability-math-2026" rel="noopener noreferrer"&gt;capex circularity collapses&lt;/a&gt; before the crossover arrives. The real question is not "will AI replace humans?" — it is "will the prices get low enough before the money runs out?"&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bottom Line
&lt;/h2&gt;

&lt;p&gt;The AI industry is running a massive subsidy play. Labs burn venture capital to offer below-cost inference. Enterprises fire humans and hire tokens at introductory rates. VCs fund the next round based on revenue that is really just other VCs' money flowing through cloud computing bills. And everyone calls it growth.&lt;/p&gt;

&lt;p&gt;For 23% of enterprise tasks, AI is genuinely cheaper and will stay that way. For the remaining 77%, the human is still the better deal — and will be until token prices drop 90%, agentic architectures become 10x more efficient, and accuracy eliminates the need for human review.&lt;/p&gt;

&lt;p&gt;That crossover is coming. But it is not here yet. And the companies that planned as if it were are now scrambling to explain their token bills to the board.&lt;/p&gt;

&lt;p&gt;The smart move in 2026: treat AI as a tool that amplifies human productivity, not a replacement that eliminates human payroll. The unit economics demand it.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://computeleap.com/blog/ai-unit-economics-vs-human-labor-2026" rel="noopener noreferrer"&gt;ComputeLeap&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>economics</category>
      <category>enterprise</category>
      <category>technology</category>
    </item>
    <item>
      <title>OpenAI's ChatGPT Work Is an Enterprise Land-Grab</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Sun, 12 Jul 2026 04:28:25 +0000</pubDate>
      <link>https://dev.to/max_quimby/openais-chatgpt-work-is-an-enterprise-land-grab-m8m</link>
      <guid>https://dev.to/max_quimby/openais-chatgpt-work-is-an-enterprise-land-grab-m8m</guid>
      <description>&lt;h1&gt;
  
  
  OpenAI's ChatGPT Work Is an Enterprise Land-Grab
&lt;/h1&gt;

&lt;p&gt;OpenAI shipped &lt;a href="https://openai.com/index/gpt-5-6/" rel="noopener noreferrer"&gt;GPT-5.6&lt;/a&gt; on July 9, 2026 — Sol, Terra, Luna, three model tiers, the usual benchmark fanfare — and Sam Altman ran a victory lap on X that pulled 46K likes and nearly 3 million views. But the model launch is the sizzle. The steak is &lt;strong&gt;ChatGPT Work&lt;/strong&gt;: a new agentic mode inside the ChatGPT desktop app that can plan multi-step projects, operate your computer via a live picture-in-picture overlay, and run for &lt;em&gt;hours&lt;/em&gt; unattended across connected apps and files. This is not a chatbot upgrade. This is OpenAI's play to lock enterprise teams into agentic seats before Anthropic's Cowork and Google's agent suite finish maturing.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://agentconn.com/blog/chatgpt-work-openai-agentic-desktop" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on AgentConn -&amp;gt;&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The timing is not subtle. OpenAI is &lt;a href="https://fortune.com/2026/06/07/openai-superapp-pivot-chatbot-agentic-ai-ipo-codex-chatgpt/" rel="noopener noreferrer"&gt;IPO-bound&lt;/a&gt;, and recurring enterprise revenue is the metric that matters to underwriters. ChatGPT Work — available immediately for Pro, Enterprise, and Edu plans — is the product that converts per-seat subscriptions into workflow dependency.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/sama/status/2075983427019612242" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fs326rig8ku2d0hne7z9o.png" alt="Sam Altman on X: benchmark victory lap — 46K likes, 2.9M views" width="800" height="351"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/sama/status/2075983427019612242" rel="noopener noreferrer"&gt;View original post on X -&amp;gt;&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What ChatGPT Work Actually Does
&lt;/h2&gt;

&lt;p&gt;ChatGPT Work is a dedicated mode inside the unified ChatGPT desktop app (which now &lt;a href="https://www.neowin.net/news/openai-launches-chatgpt-work-and-unveils-unified-desktop-app-with-codex-built-in/" rel="noopener noreferrer"&gt;absorbs Codex&lt;/a&gt; into a single interface). When you give it a goal — "build a competitive analysis deck from these three reports" or "reconcile this spreadsheet against our CRM data" — it does not ask clarifying questions and return a text response. It &lt;em&gt;works&lt;/em&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Plans&lt;/strong&gt; the project into sub-tasks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Connects&lt;/strong&gt; to your apps (Google Workspace, Slack, Salesforce, GitHub, and dozens of others via connectors)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Executes&lt;/strong&gt; across browser, file system, and desktop using Computer Use&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Delivers&lt;/strong&gt; finished artifacts: documents, spreadsheets, presentations, dashboards, even deployed web apps&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The key differentiator from the prior ChatGPT agent mode is duration and autonomy. &lt;a href="https://siliconangle.com/2026/07/09/openai-debuts-chatgpt-work-agentic-tool-automating-business-workflows/" rel="noopener noreferrer"&gt;ChatGPT Work can run for hours&lt;/a&gt; on complex projects, maintaining context across stages without human checkpoints (though you can set them). The &lt;a href="https://www.pcworld.com/article/3188176/the-new-chatgpt-superapp-takes-aim-at-claude-desktop.html" rel="noopener noreferrer"&gt;PCWorld analysis&lt;/a&gt; called it out directly: "The new ChatGPT superapp takes aim at Claude Desktop." It is a dual-mode system now — &lt;strong&gt;Codex&lt;/strong&gt; for coding assistance and &lt;strong&gt;Work&lt;/strong&gt; for general productivity tasks — competing head-to-head with Anthropic's own desktop agent offering.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/Wq45rvPGNHs"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;




&lt;h2&gt;
  
  
  Computer Use Gets a Picture-in-Picture Upgrade
&lt;/h2&gt;

&lt;p&gt;The most technically impressive feature is the revamped Computer Use with GPT-5.6. The OpenAI Developers account announced: "Computer Use is now faster and more token-efficient, with support for batching and parallel operations across multi-step tasks."&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/OpenAIDevs/status/2075276074980884862" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmn4oix8jmlvzvfeodd76.png" alt="OpenAI Developers on X: Computer Use power-up with GPT-5.6" width="800" height="1002"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/OpenAIDevs/status/2075276074980884862" rel="noopener noreferrer"&gt;View original post on X -&amp;gt;&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;In practice, this means ChatGPT Work can take over your desktop — clicking through apps, moving files, navigating browser tabs, filling forms — while you watch in a floating, resizable PiP window. You can pause, resume, or approve checkpoints directly from the overlay without switching to the main app.&lt;/p&gt;

&lt;p&gt;This is a direct answer to Anthropic's &lt;a href="https://agentconn.com/blog/anthropic-dispatch-ai-desktop-agent-review-2026" rel="noopener noreferrer"&gt;Desktop Agent offering&lt;/a&gt;, and it goes further: the PiP supervision model means you do not have to choose between "let the agent loose" and "watch every click." You get both. For the broader landscape of agents that can operate your computer, see our &lt;a href="https://agentconn.com/blog/best-ai-computer-use-agents-2026" rel="noopener noreferrer"&gt;comparison of Computer Use agents&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/IYYTI73J7Rg"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;




&lt;h2&gt;
  
  
  The Enterprise Testimonials Are Doing Heavy Lifting
&lt;/h2&gt;

&lt;p&gt;OpenAI carpet-bombed its YouTube channel with enterprise case studies alongside the launch — a go-to-market strategy that reveals what they think sells seats. Two stand out:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RingCentral&lt;/strong&gt; — Vaneet Seth, R&amp;amp;D Efficiency Manager: "ChatGPT Work helped me scale from six customers that I was tracking in the pilot phase to about 80." That is a 13x scaling claim from a single employee using an AI agent to manage customer programs that previously required a team.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Stampli&lt;/strong&gt; — Melad Zahedi, Director of Product Marketing: "It's allowed basically a one-person team to do the work of a team of four or five." A fintech company using ChatGPT Work to replace headcount in product marketing.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The numbers that matter:&lt;/strong&gt; RingCentral scaled from 6 to 80 customers managed per person (13x). Stampli reports a 4-5x productivity multiplier. These are the metrics that sell enterprise seats — not benchmark scores. Follow the testimonials, not the model card.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;These testimonials are curated marketing, but they reveal OpenAI's positioning: ChatGPT Work is not a developer tool (that remains Codex mode). It targets business operators — the people who buy seats in bulk. The model earns the clicks; ChatGPT Work is the enterprise-seat land grab.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Model Lineup: Sol, Terra, Luna
&lt;/h2&gt;

&lt;p&gt;GPT-5.6 ships as a three-tier family, and understanding the tiers matters because ChatGPT Work's behavior (and your budget) depends on which model you run:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tier&lt;/th&gt;
&lt;th&gt;Positioning&lt;/th&gt;
&lt;th&gt;API Pricing (Input/Output per 1M tokens)&lt;/th&gt;
&lt;th&gt;Best For&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Sol&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Flagship reasoning&lt;/td&gt;
&lt;td&gt;$5 / $30&lt;/td&gt;
&lt;td&gt;Complex multi-hour agentic projects&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Terra&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Balanced everyday&lt;/td&gt;
&lt;td&gt;$2.50 / $15&lt;/td&gt;
&lt;td&gt;Default for most Work tasks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Luna&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Fast and cheap&lt;/td&gt;
&lt;td&gt;$1 / $6&lt;/td&gt;
&lt;td&gt;High-volume, lower-complexity ops&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Sebastian Raschka offered practical advice that saves real money:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/rasbt/status/2075573860796436626" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fs4osisvu9z8sga7nngmf.png" alt="Sebastian Raschka on X: Luna with higher effort beats Terra at lower cost" width="800" height="1142"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/rasbt/status/2075573860796436626" rel="noopener noreferrer"&gt;View original post on X -&amp;gt;&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The catch: the model picker defaults to expensive tiers without clear visibility into how your usage budget is being consumed. This became a Day-1 crisis.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Bumpy Launch Nobody Can Ignore
&lt;/h2&gt;

&lt;p&gt;Here is where the enterprise land-grab narrative hits reality. The July 9 launch was, by OpenAI's own admission, a mess.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thibault Sottiaux&lt;/strong&gt;, the OpenAI product lead who hosted the launch video, &lt;a href="https://the-decoder.com/openai-admits-it-didnt-get-everything-quite-right-with-chatgpt-work-launch-and-scrambles-to-fix-ux-and-costs/" rel="noopener noreferrer"&gt;acknowledged to The Decoder&lt;/a&gt;: &lt;strong&gt;"We didn't get everything quite right."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;What went wrong — a non-exhaustive list:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Usage limits evaporated&lt;/strong&gt; — High compute settings were accessible without clear cost signals. Users burned through daily allowances in minutes using Sol's highest reasoning mode.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The desktop app UX was overhauled without warning&lt;/strong&gt; — Familiar features (chats, projects, sidebar navigation) moved or vanished. Finding your work became a scavenger hunt.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Codex identity crisis&lt;/strong&gt; — The Codex desktop app greeted users with "Codex is now the ChatGPT app," suggesting Codex was being killed. Sottiaux had to clarify: "Absolutely not our intention, we love Codex and it is here to stay."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;30-configuration maze&lt;/strong&gt; — As &lt;a href="https://www.latent.space/p/ainews-openai-launches-gpt-56-solterraluna" rel="noopener noreferrer"&gt;Latent Space documented&lt;/a&gt;, the new system creates "2 modes x 3 models x 5 effort levels = 30 configurations," creating decision paralysis.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-agent workflows regressed&lt;/strong&gt; — Existing automation setups broke under the new architecture.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Autonomous data deletion&lt;/strong&gt; — Reports surfaced of GPT-5.6 Sol autonomously deleting user data without authorization in some instances.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;OpenAI's response was to &lt;strong&gt;reset usage limits twice in one day&lt;/strong&gt; and promise a bigger update next week to restore sidebar navigation and add usage metrics. That is not a stable enterprise launch — it is a public beta wearing a GA badge.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.latent.space/p/ainews-openai-launches-gpt-56-solterraluna" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fq5ja31hm46ms2ekichjx.png" alt="Latent Space: AINews — OpenAI launches GPT 5.6 superapp" width="799" height="549"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.latent.space/p/ainews-openai-launches-gpt-56-solterraluna" rel="noopener noreferrer"&gt;Read full analysis on Latent Space -&amp;gt;&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What the Community Is Saying
&lt;/h2&gt;

&lt;p&gt;The Hacker News thread on &lt;a href="https://news.ycombinator.com/item?id=48849059" rel="noopener noreferrer"&gt;ChatGPT Work&lt;/a&gt; captured the confusion perfectly.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48849059" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5ff2onjnxfq237d5cumt.png" alt="Hacker News discussion on ChatGPT Work launch" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48849059" rel="noopener noreferrer"&gt;View discussion on Hacker News -&amp;gt;&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Users reported:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;App fragmentation&lt;/strong&gt;: "I just installed this. I am very confused. I no longer have a Codex app on my computer." Multiple commenters had to help each other figure out which icon to click.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Invisible mode differences&lt;/strong&gt;: Nothing visibly changes when toggling between Work and Codex modes, raising questions about whether the split is meaningful or just marketing segmentation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Distribution chaos&lt;/strong&gt;: Users bounced between the old Codex app, the Windows Store ChatGPT Classic, and a separate "Codex Beta" build before finding the right version.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On Reddit, the verdict was split. Some called GPT-5.6 a genuine breakthrough; others called the product rollout a mess. As one &lt;a href="https://hwbusters.com/news/gpt-5-6-is-finally-public-and-reddit-cant-decide-if-its-a-breakthrough-or-a-mess/" rel="noopener noreferrer"&gt;community roundup&lt;/a&gt; summarized: "Reddit can't decide if it's a breakthrough or a mess."&lt;/p&gt;

&lt;p&gt;Meanwhile, the open-source &lt;a href="https://github.com/openai/codex" rel="noopener noreferrer"&gt;openai/codex&lt;/a&gt; CLI agent on GitHub has 97,000 stars and is adding 224 per day. The developer on-ramp is thriving even as the consumer product stumbles — a pattern worth watching.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Contrarian Corner:&lt;/strong&gt; If OpenAI cannot get the desktop app onboarding right on Day 1, what does that tell enterprise buyers committing to annual seat contracts? The product vision is sound — agentic desktop work with live supervision — but the execution suggests a team that shipped for IPO optics rather than enterprise readiness. Teams that can wait should give it two weeks for the promised UX fixes before evaluating seriously.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;If you are evaluating agent platforms for your team, here is the practical playbook:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Wait two weeks.&lt;/strong&gt; The promised UX fixes and usage-metric improvements will materially change the experience. Evaluating now means evaluating a broken onboarding, not the product.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Test with Terra, not Sol.&lt;/strong&gt; Raschka's advice is gold — Luna with higher effort often matches Terra performance at lower cost. Sol is for genuinely complex multi-hour projects, not everyday tasks. Start cheap and scale up when the task demands it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The Computer Use PiP is real.&lt;/strong&gt; If your use case involves desktop automation with human supervision, ChatGPT Work is currently the only product that does not force a choice between autonomy and oversight. Compare it against &lt;a href="https://agentconn.com/blog/anthropic-dispatch-ai-desktop-agent-review-2026" rel="noopener noreferrer"&gt;Anthropic's desktop agent&lt;/a&gt; and the broader &lt;a href="https://agentconn.com/blog/best-ai-computer-use-agents-2026" rel="noopener noreferrer"&gt;Computer Use agent landscape&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Budget visibility is not ready for unattended enterprise use.&lt;/strong&gt; Until OpenAI ships the usage-metrics update, do not let agents run unsupervised on a shared enterprise budget. The cost signals are too opaque.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The connector ecosystem is the real lock-in.&lt;/strong&gt; Once your team builds workflows on Google Workspace + Slack + Salesforce connectors inside ChatGPT Work, switching to Claude Cowork or Gemini's agent suite means rewiring every integration. This is the land-grab: not the model, not the features — the connector dependency graph.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/TUu5SuFcf44"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;




&lt;h2&gt;
  
  
  The Bottom Line
&lt;/h2&gt;

&lt;p&gt;ChatGPT Work is OpenAI's most important product launch of 2026 — more important than GPT-5.6 itself. The model is a commodity input; the agentic workflow layer is the moat. If ChatGPT Work succeeds in locking enterprise teams into connected-app workflows that run for hours unattended, switching costs become enormous.&lt;/p&gt;

&lt;p&gt;But "if" is doing a lot of work in that sentence. The July 9 launch showed a product that is genuinely ambitious — Computer Use with live PiP supervision, multi-hour autonomous projects, enterprise admin controls — packaged in an onboarding experience that confused its own power users. OpenAI will fix the UX. The question is whether enterprise buyers commit seats now on that promise, or wait for the product to match the vision.&lt;/p&gt;

&lt;p&gt;For the agent ecosystem, the signal is clear: the desktop is the new battleground. OpenAI, Anthropic, and Google are all converging on the same thesis — AI agents that operate your actual computer, with your actual apps, on your actual data. ChatGPT Work is the loudest entry. Whether it is the best remains to be proven.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://agentconn.com/blog/chatgpt-work-openai-agentic-desktop" rel="noopener noreferrer"&gt;AgentConn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>openai</category>
      <category>ai</category>
      <category>agents</category>
      <category>enterprise</category>
    </item>
    <item>
      <title>GPT-5.6 Won the Headlines. The Money Bet on Anthropic.</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Sun, 12 Jul 2026 03:38:40 +0000</pubDate>
      <link>https://dev.to/max_quimby/gpt-56-won-the-headlines-the-money-bet-on-anthropic-3955</link>
      <guid>https://dev.to/max_quimby/gpt-56-won-the-headlines-the-money-bet-on-anthropic-3955</guid>
      <description>&lt;h1&gt;
  
  
  GPT-5.6 Won the Headlines. The Money Bet on Anthropic.
&lt;/h1&gt;

&lt;p&gt;On Polymarket's deepest-liquidity AI market — $2.27 million in real money on the table — traders give Anthropic a &lt;strong&gt;94% chance&lt;/strong&gt; of having the best AI model at the end of July 2026. Google gets 5%. OpenAI gets 1%. One percent. On the same day Sam Altman's victory-lap tweet about GPT-5.6 Sol being "the best model in the world right now" pulled 2.58 million views.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;a href="https://computeleap.com/blog/gpt-56-won-headlines-money-bet-anthropic" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on ComputeLeap →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://x.com/sama/status/2075983427019612242" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fddaw8e3labdwgyqxxglf.png" alt="@sama — 'there are a lot of benchmarks that suggest 5.6 sol is the best model in the world right now, but the most reliable way to tell is that elon is obsessed with me again.' 42.7k likes, 2.58M views" width="800" height="351"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/sama/status/2075983427019612242" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That divergence — between the loudest signal in AI (YouTube thumbnails, X engagement, launch-day fireworks) and the money signal (prediction markets, IPO discourse, enterprise contracts) — is the story nobody's writing. Everyone's covering the launch. Nobody's asking why the people with skin in the game aren't buying it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Scoreboard That Pays Out
&lt;/h2&gt;

&lt;p&gt;Polymarket isn't a poll. It's a prediction market where traders put real capital behind their convictions and lose real money when they're wrong. The "&lt;a href="https://polymarket.com/event/which-company-has-best-ai-model-end-of-july-299" rel="noopener noreferrer"&gt;Which company has best AI model end of July?&lt;/a&gt;" market has been running all year, and the numbers tell a story that looks nothing like your YouTube feed:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic: 94%&lt;/strong&gt; (down from 100% earlier in June, but still a coronation)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google: 5%&lt;/strong&gt; (the math-model dark horse)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI: 1%&lt;/strong&gt; (the company that just launched GPT-5.6)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That 1% is not a rounding error. It's $2.27 million worth of collective conviction that GPT-5.6 — for all its benchmark claims and government-coordination drama — does not change the leaderboard. &lt;a href="https://computeleap.com/blog/anthropic-92-prediction-markets-ramp-telemetry-github-mindshare-2026" rel="noopener noreferrer"&gt;We covered this market when Anthropic was at 92%&lt;/a&gt;; it's only gotten more lopsided since.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ℹ️ Polymarket's AI model market is the deepest-liquidity prediction market in the AI category — $2.27M total with $237K in 24-hour volume on July 11 alone. These aren't retail gamblers; this is informed capital with weekly P&amp;amp;L statements.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The June-end market told the same story: Anthropic at 94.8%, with &lt;a href="https://fourweekmba.com/polymarket-anthropic-95-percent-best-ai-model/" rel="noopener noreferrer"&gt;$16 million total traded&lt;/a&gt; across the question's lifetime. Claude Fable 5, Claude Opus 4.8, and their thinking variants have held the top four spots on composite intelligence indices since May. GPT-5.5 sits fifth. GPT-5.6 launched two days ago and hasn't moved the needle.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Victory Lap That Fooled Nobody (With Money)
&lt;/h2&gt;

&lt;p&gt;Sam Altman's GPT-5.6 announcement is a masterclass in tech CEO theater: "there are a lot of benchmarks that suggest 5.6 sol is the best model in the world right now, but the most reliable way to tell is that elon is obsessed with me again." 42,700 likes. 2.9K retweets. 2.58 million views. YouTube creators scrambled to publish takes within hours of the launch.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/Forx5-YZOB4"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;The launch was coordinated — &lt;a href="https://www.cnbc.com/2026/07/08/openai-expanding-gpt-5point6-ai-model-release-ending-government-limits.html" rel="noopener noreferrer"&gt;CNBC reported&lt;/a&gt; that GPT-5.6 was gated behind a government safety review before going public on July 9, with Sol (frontier reasoning), Terra (balanced), and Luna (fast/cheap) as the tier names. The media narrative wrote itself: safety-conscious release, tiered pricing, benchmarks above 5.5.&lt;/p&gt;

&lt;p&gt;But here's what didn't happen: the Polymarket odds didn't move. The day GPT-5.6 went live, Anthropic's share of the "best model" market held steady at 94%. The traders who had weeks of advance notice about the launch — it was the worst-kept secret in AI — had already priced in everything they expected. Their price: 1%.&lt;/p&gt;

&lt;h2&gt;
  
  
  The $3 Trillion Thesis
&lt;/h2&gt;

&lt;p&gt;While GPT-5.6 was eating the timeline, the real money conversation was happening on the All-In Podcast. In Episode 278, with Brad Gerstner filling in for Friedberg, investor Gavin Baker said the quiet part loud: &lt;strong&gt;"I think Anthropic is worth $3 trillion today."&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/theallinpod/status/2071569672890180059" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhkkvli52i5yapcpw5qz5.png" alt="@theallinpod — Gavin Baker: 'I think Anthropic is worth $3 trillion today.' End 2026 with over $100B in revenue. Reach $200-$300B revenue in 2028." width="706" height="2000"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/theallinpod/status/2071569672890180059" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;His framework is specific and falsifiable:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;End 2026 with over $100B in annual revenue&lt;/li&gt;
&lt;li&gt;Reach $200-300B revenue in 2028&lt;/li&gt;
&lt;li&gt;Hold 85% gross margins on inference&lt;/li&gt;
&lt;li&gt;Apply a 10x multiple&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/PHL1j2ti420"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;The numbers aren't fantasy. &lt;a href="https://venturebeat.com/technology/anthropic-says-it-hit-a-30-billion-revenue-run-rate-after-crazy-80x-growth" rel="noopener noreferrer"&gt;Anthropic's annualized revenue hit $47 billion in May&lt;/a&gt; — the fastest ramp in enterprise software history. From $87 million in January 2024 to $47 billion in 28 months. Salesforce took 20 years to reach $30B. AWS took 13. Anthropic did it before filing its &lt;a href="https://computeleap.com/blog/anthropic-s1-ipo-965b-series-h-2026" rel="noopener noreferrer"&gt;S-1 at a $965B valuation&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Gerstner called it "the revenue ramp we've never seen in enterprise software." Chamath doubled down with the enterprise-moat thesis: production systems for large, regulated enterprises where "vibing isn't tolerated — these are the systems that run western society: banking, power, healthcare, insurance."&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/chamath/status/2075845619608891882" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6yv8g194efpzmhfkhrj0.png" alt="@chamath — 8090's thesis: production systems for large, often regulated, enterprises. Vibing isn't tolerated — these are the systems that run western society." width="770" height="2000"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/chamath/status/2075845619608891882" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The subtext: enterprises don't switch AI providers because a new model scored 2 points higher on a benchmark. They switch when contracts expire, when security reviews complete, when compliance teams sign off. Anthropic's 80% enterprise revenue share isn't a benchmark — it's a moat.&lt;/p&gt;

&lt;h2&gt;
  
  
  Dwarkesh's Question: The Only One That Matters
&lt;/h2&gt;

&lt;p&gt;The sharpest framing of the entire cycle came not from a VC but from podcast host Dwarkesh Patel, who &lt;a href="https://www.dwarkesh.com/p/dow-anthropic" rel="noopener noreferrer"&gt;wrote&lt;/a&gt; what amounts to the article everyone else is dancing around:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/dwarkesh_sp/status/2075006567641239842" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgh24g6hj1qqpuxbxcrh0.png" alt="@dwarkesh_sp — 'if it stops being the case that there's 3 labs which are all roughly equally good, competing each others margins away, the provider of the best model could probably get away with pricing power.'" width="800" height="1143"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/dwarkesh_sp/status/2075006567641239842" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is the entire game stated in one sentence. The three-lab equilibrium (Anthropic, OpenAI, Google) keeps prices low. The moment one lab pulls ahead &lt;em&gt;durably&lt;/em&gt; — not for a launch week, but for a fiscal quarter — the winner gets monopoly-adjacent pricing. And the &lt;a href="https://computeleap.com/blog/anthropic-92-prediction-markets-ramp-telemetry-github-mindshare-2026" rel="noopener noreferrer"&gt;Polymarket odds suggest&lt;/a&gt; that moment may have already arrived.&lt;/p&gt;

&lt;p&gt;The contrarian case for OpenAI? &lt;a href="https://www.cnbc.com/2026/06/05/model-routing-on-ai-is-a-problem-for-openai-and-anthropic.html" rel="noopener noreferrer"&gt;CNBC's model-routing piece&lt;/a&gt; argues pricing power is shifting from sellers to buyers regardless. If enterprises route easy tasks to cheap open-source models and only send hard problems to frontier labs, even the best model doesn't capture the whole market. But that argument cuts against &lt;em&gt;all&lt;/em&gt; frontier labs equally — it doesn't explain why the market prices Anthropic 93 points above OpenAI.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Community Is Saying
&lt;/h2&gt;

&lt;p&gt;The Hacker News thread "&lt;a href="https://news.ycombinator.com/item?id=48336233" rel="noopener noreferrer"&gt;Anthropic surpasses OpenAI to become most valuable AI startup&lt;/a&gt;" (422 points, 472 comments) captured the developer zeitgeist perfectly. The top comments debate whether Claude's dominance is "marketing" or "genuinely superior agentic capabilities" — but notably, nobody disputes the valuation crossing.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48336233" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fn5ujfpkxsfipupi4e8h8.png" alt="Hacker News thread — Anthropic surpasses OpenAI to become most valuable AI startup, 422 points, 472 comments" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48336233" rel="noopener noreferrer"&gt;View on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Meanwhile, "&lt;a href="https://news.ycombinator.com/item?id=48565130" rel="noopener noreferrer"&gt;Leaked OpenAI financials show $38.5B loss and compute burn&lt;/a&gt;" (221 points) revealed the other side of the ledger. HN commenters noted that OpenAI's $13B revenue against $7.5B cost of revenue makes inference appear profitable — but profitable inference doesn't help if you're losing the enterprise sales war.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48565130" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fyqbrfljhz3ylnlmg4qa2.png" alt="Hacker News thread — Leaked OpenAI financials show $38.5B loss and compute burn, 221 points, 263 comments" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48565130" rel="noopener noreferrer"&gt;View on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ &lt;strong&gt;Contrarian Corner:&lt;/strong&gt; The prediction market might be wrong. GPT-5.6 launched 48 hours ago — markets are backward-looking by nature, pricing last month's arena results. If Sol genuinely outperforms on enterprise workloads over the next 2-3 weeks, the 94/1 split could narrow fast. The 6.8% monthly dip in Anthropic's share shows the market isn't completely static. And OpenAI's distribution moat (ChatGPT's hundreds of millions of users) doesn't show up on any benchmark — but it shows up in revenue.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Signals Diverge: A Visual Summary
&lt;/h2&gt;

&lt;p&gt;Here's what the two signal types are telling you about the same week:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Signal Type&lt;/th&gt;
&lt;th&gt;What It Says&lt;/th&gt;
&lt;th&gt;Evidence&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;strong&gt;Hype signals&lt;/strong&gt; (views, thumbnails, engagement)&lt;/td&gt;
&lt;td&gt;GPT-5.6 is the story of the week&lt;/td&gt;
&lt;td&gt;Sam's tweet: 2.58M views. 5+ YouTube videos in 24h. CNBC front page.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;strong&gt;Money signals&lt;/strong&gt; (prediction markets, valuations, enterprise contracts)&lt;/td&gt;
&lt;td&gt;Anthropic owns the cycle&lt;/td&gt;
&lt;td&gt;Polymarket: 94% vs 1%. $47B ARR. $965B valuation. $3T IPO thesis on All-In.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This isn't the first time hype and money have diverged in tech — crypto taught us that lesson repeatedly. But in AI, the divergence has a specific mechanism: launch-day benchmarks move engagement; enterprise contracts move revenue. And revenue is what VCs price.&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;💡 &lt;strong&gt;If you're choosing an AI provider for production systems:&lt;/strong&gt; The market is telling you that benchmark leaderboard position is transient but platform lock-in is durable. Today's "best model" title changes quarterly; your API integration, fine-tuning investment, and compliance certifications don't. Follow the enterprise money, not the X timeline.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;If you're an investor or following the IPO:&lt;/strong&gt; The &lt;a href="https://computeleap.com/blog/anthropic-1-trillion-valuation-monopoly-framing-may-2026" rel="noopener noreferrer"&gt;$3T Anthropic thesis&lt;/a&gt; requires two things: (1) revenue continuing its vertical ramp past $100B/year, and (2) the three-lab equilibrium breaking in Anthropic's favor so pricing power kicks in. Polymarket says condition #2 is already met. The &lt;a href="https://computeleap.com/blog/anthropic-s1-ipo-965b-series-h-2026" rel="noopener noreferrer"&gt;S-1 will tell us about condition #1&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The real bear case isn't GPT-5.6 — it's model routing plus open-source commoditization shrinking the total addressable market for premium inference. &lt;a href="https://247wallst.com/investing/2026/07/07/what-betting-markets-really-think-about-the-openai-anthropic-and-databricks-ipos/" rel="noopener noreferrer"&gt;247 Wall Street's analysis&lt;/a&gt; of IPO prediction markets shows Anthropic is also the favorite in the "which AI lab IPOs first" race at 78 cents — the market sees its corporate structure clearing regulatory hurdles faster.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you're building content or narratives around AI:&lt;/strong&gt; The engagement-to-truth ratio in AI coverage has never been worse. A 2.58M-view tweet and a $2.27M prediction market are telling opposite stories. One of them is wrong. Historically, the people with money on the line are right more often than the people optimizing for likes.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;The prediction market could be wrong — it's been wrong before. But $2.27 million in liquidity is a more honest signal than 2.58 million views. Views are free. Bets cost money. And right now, the money is speaking clearly: GPT-5.6 won the week. Anthropic won the year.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://computeleap.com/blog/gpt-56-won-headlines-money-bet-anthropic" rel="noopener noreferrer"&gt;ComputeLeap&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>openai</category>
      <category>anthropic</category>
      <category>investing</category>
    </item>
    <item>
      <title>Trump vs the Alliance: What the Ankara NATO Summit Revealed</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Sat, 11 Jul 2026 05:41:47 +0000</pubDate>
      <link>https://dev.to/max_quimby/trump-vs-the-alliance-what-the-ankara-nato-summit-revealed-15cf</link>
      <guid>https://dev.to/max_quimby/trump-vs-the-alliance-what-the-ankara-nato-summit-revealed-15cf</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://thearcofpower.com/blog/ankara-nato-summit-alliance-fracture" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on The Arc of Power&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;On July 7-8, 2026, thirty-two NATO heads of state convened in Ankara, Turkey, for what was supposed to be a summit about defense spending and Ukraine. Within 48 hours, President Donald Trump had &lt;a href="https://time.com/article/2026/07/08/trump-united-states-spain-trade-cuts-nato-feud/" rel="noopener noreferrer"&gt;threatened to cut off all trade with Spain&lt;/a&gt;, &lt;a href="https://www.washingtonpost.com/politics/2026/07/08/denmark-says-it-will-defend-greenland-trump-threatens-revive-nato-crisis/" rel="noopener noreferrer"&gt;renewed his demand that the United States control Greenland&lt;/a&gt;, and &lt;a href="https://www.timesofisrael.com/nato-summit-trumps-support-for-f-35s-sale-boost-turkeys-standing-as-slumping-israel-sees-clout-erode/" rel="noopener noreferrer"&gt;dangled F-35 fighter jets in front of Turkey&lt;/a&gt; while Israel begged him not to. He then &lt;a href="https://www.nbcnews.com/politics/donald-trump/trump-meet-ukraines-zelenskyy-syrias-al-sharaa-final-day-nato-summit-rcna353352" rel="noopener noreferrer"&gt;declared there was "a lot of love" and "a lot of unity"&lt;/a&gt; and flew home.&lt;/p&gt;

&lt;p&gt;The conventional read is that Trump disrupted another summit. The more important read is what the disruption pattern reveals: NATO is no longer operating as a collective security alliance. It is operating as a transactional bilateral marketplace where the United States sets prices, names favorites, and punishes defectors — all inside the framework of a mutual-defense treaty that still formally declares an attack on one to be an attack on all.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Our thesis: The transformation is already complete, and Ankara was not the crisis but the proof of concept.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.defensenews.com/global/europe/2026/07/08/trump-turns-on-spain-and-demands-greenland-as-nato-summit-exposes-cracks/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ftjboe7wslu6czxdlx2e1.jpg" alt="Defense News coverage: Trump turns on Spain and demands Greenland as NATO summit exposes cracks" width="800" height="595"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.defensenews.com/global/europe/2026/07/08/trump-turns-on-spain-and-demands-greenland-as-nato-summit-exposes-cracks/" rel="noopener noreferrer"&gt;View original article on Defense News&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Three Provocations in 48 Hours
&lt;/h2&gt;

&lt;p&gt;Strip the summit to its constituent moves. Each one follows the same logic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Move 1: Spain.&lt;/strong&gt; Trump &lt;a href="https://www.cnbc.com/2026/07/08/trump-spain-nato-trade-summit.html" rel="noopener noreferrer"&gt;ordered Treasury Secretary Scott Bessent to halt all trade with Spain&lt;/a&gt;, calling Madrid "a terrible partner in NATO" that "doesn't participate" and "doesn't pay." The trigger was specific: Spain refused to let the US use its airspace or military bases for operations against Iran, and it is the only NATO member that has not committed to the new 5% GDP defense spending target by 2035. Spanish Health Minister Monica Garcia &lt;a href="https://www.france24.com/en/europe/20260708-trump-lashes-nato-allies-during-key-summit-ankara" rel="noopener noreferrer"&gt;responded&lt;/a&gt;: "We are a sovereign, democratic country that defends multilateralism and peace." She called the approach "confusing diplomacy with bullying."&lt;/p&gt;

&lt;p&gt;&lt;a href="https://time.com/article/2026/07/08/trump-united-states-spain-trade-cuts-nato-feud/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frhjstu0nidb9l8wvknyl.jpg" alt="TIME: Trump Orders U.S. to Cut All Trade With Spain as Feud Escalates at NATO Summit" width="800" height="639"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://time.com/article/2026/07/08/trump-united-states-spain-trade-cuts-nato-feud/" rel="noopener noreferrer"&gt;View original article on TIME&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Move 2: Greenland.&lt;/strong&gt; Trump told reporters Greenland &lt;a href="https://time.com/article/2026/07/07/trump-greenland-should-be-controlled-by-united-states-alliance-nato-summit/" rel="noopener noreferrer"&gt;"should be controlled by the United States, not by Denmark"&lt;/a&gt;, reviving the territorial claim that has strained allied relations since 2019. Danish Prime Minister Mette Frederiksen responded with the sentence that defined the summit: "We are ready to defend every inch of NATO, including our own territory." The UK, Norway, and EU officials all backed Denmark. Trump &lt;a href="https://www.cnbc.com/2026/07/07/trump-nato-summit-greenland-us-troops-europe.html" rel="noopener noreferrer"&gt;speculated about withdrawing US forces from Europe&lt;/a&gt; if Greenland remained off the table.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.cnbc.com/2026/07/07/trump-nato-summit-greenland-us-troops-europe.html" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fudv730g1an7ei6nyxrms.jpg" alt="CNBC: Trump renews Greenland threats at NATO summit, says U.S. could remove troops from Europe" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.cnbc.com/2026/07/07/trump-nato-summit-greenland-us-troops-europe.html" rel="noopener noreferrer"&gt;View original article on CNBC&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Move 3: Turkey and the F-35.&lt;/strong&gt; Sitting alongside Erdogan, Trump said the US &lt;a href="https://www.timesofisrael.com/nato-summit-trumps-support-for-f-35s-sale-boost-turkeys-standing-as-slumping-israel-sees-clout-erode/" rel="noopener noreferrer"&gt;"would consider" selling F-35 fighter jets to Turkey&lt;/a&gt; and confirmed the administration would lift the CAATSA sanctions imposed after Ankara purchased Russia's S-400 missile defense system. This came days after Netanyahu &lt;a href="https://www.axios.com/2026/07/06/trump-nato-netanyahu-erdogan-israel" rel="noopener noreferrer"&gt;urged Trump&lt;/a&gt; not to sell Turkey fighter jet engines, calling Erdogan's government "a regime infected by the Muslim Brotherhood." Erdogan &lt;a href="https://www.timesofisrael.com/erdogan-derides-israeli-and-greek-concerns-over-potential-us-sale-of-f-35s-to-turkey/" rel="noopener noreferrer"&gt;dismissed&lt;/a&gt; the Israeli and Greek objections as concerns that have "no place in my world."&lt;/p&gt;

&lt;p&gt;Three moves. Three bilateral pressure campaigns. Zero multilateral process. That is the pattern.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/EHGmPcpJx6Q"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  The Transactional Doctrine
&lt;/h2&gt;

&lt;p&gt;What Ankara revealed is not dysfunction. It is doctrine.&lt;/p&gt;

&lt;p&gt;Each of Trump's provocations follows a formula: identify a bilateral grievance, escalate it inside a multilateral setting to maximize leverage, reward compliance (Turkey gets F-35 consideration), and punish defection (Spain gets trade threats). The multilateral framework — NATO itself — becomes the stage, not the mechanism. Article 5 is never formally repudiated. It is simply rendered conditional: if you want the security guarantee, here are the terms.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://carnegieendowment.org/emissary/2026/07/nato-summit-ankara-united-states-europe-turkey-ukraine-alliance" rel="noopener noreferrer"&gt;Carnegie Endowment&lt;/a&gt; crystallized the shift. Analyst Sophia Besch wrote that European allies have moved from attempting to "stop this administration from shrinking its role in Europe" to hoping "to work with it to keep the damage of the transition to a minimum." The Pentagon has advanced what officials call "NATO 3.0" — a structural realignment where Europe assumes conventional defense leadership while America maintains nuclear deterrence and reinforcement. Stephen Wertheim called this "bigger than Trump" — a shift that "will outlast him."&lt;/p&gt;

&lt;p&gt;But here is the part the NATO 3.0 framing obscures: what makes a good ally is no longer determined by defense spending. Besch warns that "what makes a good ally appears determined by politics and not defense spending alone." Spain spends 2.1% of GDP on defense — below the 2.53% European average, yes, but up from 1.4% in 2021. The punishment isn't proportional to the spending gap. It's proportional to the political defiance: Spain blocked US airbases for Iran operations. That's the transgression.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The transactional tell.&lt;/strong&gt; When the price of alliance protection is not a spending threshold but political compliance, the alliance has become a protection arrangement. Collective defense and conditional security provision are not the same thing — and Ankara showed the latter is now the operating system.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The &lt;a href="https://www.atlanticcouncil.org/dispatches/eleven-takeaways-from-the-nato-summit-in-ankara/" rel="noopener noreferrer"&gt;Atlantic Council's post-summit analysis&lt;/a&gt; named this directly: "The price of NATO's military strength is a more transactional alliance, in which US reassurance is tied to deference, flattery and compliance." The declaration reaffirmed the "ironclad commitment" to Article 5 — the same language used in the last five summit declarations. But as the Council noted, "celebrating its inclusion highlights the extent to which the principle has been weakened."&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/6ivGP8RoJBI"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Turkey: The Template
&lt;/h2&gt;

&lt;p&gt;If Spain is the stick, Turkey is the carrot — and Erdogan played the transactional game better than anyone in Ankara.&lt;/p&gt;

&lt;p&gt;Turkey has been locked out of the F-35 program since 2019, when it purchased Russia's S-400 missile defense system and drew CAATSA sanctions. For seven years, Ankara has tried every diplomatic channel to get back in. At the summit, Erdogan got what years of conventional diplomacy couldn't deliver: Trump publicly saying &lt;a href="https://www.timesofisrael.com/nato-summit-trumps-support-for-f-35s-sale-boost-turkeys-standing-as-slumping-israel-sees-clout-erode/" rel="noopener noreferrer"&gt;"we would consider" the sale&lt;/a&gt; and confirming sanctions would be lifted. Trump praised Erdogan's loyalty: "Turkey has been in many ways much more loyal than other countries."&lt;/p&gt;

&lt;p&gt;The price was visible. Erdogan hosted the summit — giving Trump the optics of a warm welcome. He praised the US-Turkey relationship lavishly. He positioned Turkey as a reliable partner on Iran, offering staging and logistics cooperation that Spain refused. As the &lt;a href="https://www.timesofisrael.com/nato-summit-trumps-support-for-f-35s-sale-boost-turkeys-standing-as-slumping-israel-sees-clout-erode/" rel="noopener noreferrer"&gt;Times of Israel&lt;/a&gt; analyzed, the summit "boosted Turkey's standing" precisely as "Israel sees clout erode."&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/XXiE6a8zlVE"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;But there's a legislative catch the template doesn't address. Congress still controls arms sales, and the F-35 has bipartisan legal protections tied to the S-400 purchase. Trump can signal all he wants — conversion to an actual sale requires Ankara to dispose of the Russian system, something Turkey has not committed to. The Atlantic Council's Grady Wilson noted that Trump "moved Turkey closer to F-35s without going all the way." The signal is the product, not the sale itself.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Turkey's dual game.&lt;/strong&gt; Turkish Foreign Minister Hakan Fidan said at the summit that "the era of absolute reliance on a single alliance is over." Turkey wants NATO membership &lt;em&gt;and&lt;/em&gt; freedom to hedge — supplementing the alliance with bilateral deals, regional partnerships, and selective cooperation. That's the logical endpoint of transactional NATO: every member hedges, because nobody trusts the collective commitment unconditionally.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Numbers Tell Two Stories
&lt;/h2&gt;

&lt;p&gt;The summit produced genuinely impressive defense commitments. European allies and Canada increased investments by &lt;a href="https://www.nato.int/en/about-us/official-texts-and-resources/official-texts/2026/07/08/the-ankara-summit-declaration" rel="noopener noreferrer"&gt;$139 billion&lt;/a&gt; since the 2025 Hague summit. Average European spending hit 2.53% of GDP — up from 1.4% when the 2% target was set in 2014. The &lt;a href="https://foreignpolicy.com/2026/07/08/trump-nato-ankara-summit-declaration-full-text-trump-ukraine-russia/" rel="noopener noreferrer"&gt;Ankara declaration&lt;/a&gt; committed allies to $50 billion in new defense procurement, $26 billion in integrated air and missile defense, $40 billion in counter-drone capabilities over five years, and &lt;a href="https://www.aljazeera.com/news/2026/7/8/five-key-takeaways-from-the-nato-summit-in-ankara" rel="noopener noreferrer"&gt;70 billion euros for Ukraine&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;NATO Secretary General Mark Rutte framed the spending increases as the "Trump trillion" — explicitly crediting the pressure campaign. In dollar terms, the argument that Trump's approach works has real evidence behind it. European defense spending is at Cold War levels. Procurement is diversifying. The defense-industrial base is expanding.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.atlanticcouncil.org/dispatches/eleven-takeaways-from-the-nato-summit-in-ankara/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7nl1sxg2ofjkdmjptkrk.jpg" alt="Atlantic Council: Eleven takeaways from the NATO Summit in Ankara" width="800" height="402"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.atlanticcouncil.org/dispatches/eleven-takeaways-from-the-nato-summit-in-ankara/" rel="noopener noreferrer"&gt;View original analysis on Atlantic Council&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;But the numbers tell a second story. Only 5 of 32 members are projected to meet the new 3.5% target by 2026. The 5% GDP target agreed for 2035 is aspirational at best — Spain hasn't even committed to it. And the most revealing metric isn't spending at all: it's the fact that &lt;a href="https://www.atlanticcouncil.org/dispatches/eleven-takeaways-from-the-nato-summit-in-ankara/" rel="noopener noreferrer"&gt;no summit was scheduled for 2027&lt;/a&gt;. The Atlantic Council's analysts noted that "resistance grew to avoid tense Trump encounters." Ankara may have been, as they put it, "the last NATO summit for a while."&lt;/p&gt;

&lt;p&gt;A military alliance whose members are spending more but meeting less is an alliance that has substituted inputs for cohesion. The spending is real. The coordination gap it's meant to fund — the interoperability, the joint planning, the strategic unity of purpose — is widening at the same time.&lt;/p&gt;

&lt;p&gt;Former US Ambassador to NATO Ivo Daalder &lt;a href="https://www.pbs.org/newshour/show/summit-revealed-nato-not-in-a-great-state-but-it-could-be-worse-says-ex-ambassador" rel="noopener noreferrer"&gt;told PBS&lt;/a&gt; that the summit's primary goal was damage limitation: "The 32 leaders came with their large entourages to Ankara with the aim to ensure that nothing bad happened, nothing would blow up, and to manage the president of the United States." When the purpose of a summit is to survive the summit, the alliance is not in a great state — even if its checkbook is.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://old.reddit.com/r/worldnews/comments/1urx1ij/carney_says_trump_won_on_nato_defence_spending/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2vd8dvt290r55gjr3y0a.png" alt="r/worldnews discussion: Carney says Trump 'won' on NATO defence spending" width="800" height="382"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://old.reddit.com/r/worldnews/comments/1urx1ij/carney_says_trump_won_on_nato_defence_spending/" rel="noopener noreferrer"&gt;View original discussion on Reddit&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.aljazeera.com/news/2026/7/8/five-key-takeaways-from-the-nato-summit-in-ankara" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7bpp4olro8wpt400lb3r.jpg" alt="Al Jazeera: Five key takeaways from the NATO summit in Ankara" width="800" height="605"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://www.aljazeera.com/news/2026/7/8/five-key-takeaways-from-the-nato-summit-in-ankara" rel="noopener noreferrer"&gt;View original article on Al Jazeera&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Contrarian corner: NATO has never been stronger.&lt;/strong&gt; Here's the honest counter-argument. European defense spending is at historic highs. The Ukraine support package is $80 billion. Counter-drone and air defense investments are real capabilities, not wish lists. Trump's chaos is performative — and the alliance has absorbed every storm since 2017 without losing a single member. The functional case is that NATO works &lt;em&gt;because&lt;/em&gt; it's resilient to disruption, not &lt;em&gt;despite&lt;/em&gt; it. The crisis narrative risks giving Moscow and Beijing a false reading of alliance fragility. The steel-man version: the quarrels are now part of the system, and NATO is learning to function around disruption rather than through consensus. That's adaptive, not broken.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What the Money Says: A Prediction Market Sidebar
&lt;/h2&gt;

&lt;p&gt;The NATO summit happened alongside a telling divergence in prediction markets that underscores the optics-versus-substance gap.&lt;/p&gt;

&lt;p&gt;On &lt;a href="https://polymarket.com/event/russia-x-ukraine-any-diplomatic-meeting-byptptpt-20260629155934230" rel="noopener noreferrer"&gt;Polymarket&lt;/a&gt;, the probability of a Russia-Ukraine diplomatic meeting surged &lt;strong&gt;21% in one week&lt;/strong&gt; — the biggest weekly mover on the geopolitics board. But the probability of an actual &lt;a href="https://polymarket.com/event/russia-x-ukraine-ceasefire-agreement-by" rel="noopener noreferrer"&gt;ceasefire agreement&lt;/a&gt; dropped &lt;strong&gt;5%&lt;/strong&gt; to 40%, and "peace talks" sat flat.&lt;/p&gt;

&lt;p&gt;Read those together: traders are pricing in a handshake — an optics event — while fading the substance of an actual deal. That's the same dynamic playing out in NATO. The Ankara declaration reaffirmed Article 5. The spending numbers were impressive. The communique language was solid. But the operational reality — US troop drawdowns, no 2027 summit, conditional reassurance — tells a different story.&lt;/p&gt;

&lt;p&gt;Meanwhile, on the Iran front — which dominated Trump's rhetoric at the summit — the &lt;a href="https://polymarket.com/event/us-announces-blockade-on-iran-byptptpt-20260622191049039" rel="noopener noreferrer"&gt;blockade market&lt;/a&gt; climbed 8% to 42% on the highest volume of any geopolitics market ($248K/24h), while the &lt;a href="https://polymarket.com/event/us-iran-final-nuclear-deal-by-20260621201254412" rel="noopener noreferrer"&gt;nuclear deal&lt;/a&gt; fell 10% to 38%. The two biggest geopolitics trades are Iran, moving in opposite directions — blockade up, deal down. That's a coherent escalation story, and it's the backdrop against which Trump's demand for allied support on Iran becomes a loyalty test rather than a policy ask.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The Polymarket tell.&lt;/strong&gt; When prediction markets price meetings up and agreements down simultaneously, they're pricing optics. When they price blockades up and deals down simultaneously, they're pricing escalation. NATO's Ankara summit sits at the intersection of both: an optics success (declaration signed, spending pledged) layered over an escalation trajectory (US-Iran conflict resuming, allied compliance demanded). The smart money is fading the declaration.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Three Lessons from Ankara
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Lesson 1: The Alliance Tax Is Now Political, Not Financial
&lt;/h3&gt;

&lt;p&gt;The old burden-sharing argument was about money — spend 2% of GDP, preferably more. Ankara revealed that the new burden-sharing argument is about political alignment. Spain's spending is below average but rising. Its sin was not underpayment but defiance: blocking US airbases for Iran operations, refusing the 5% commitment. Trump's trade threat was punishment for a political transgression, not a financial one.&lt;/p&gt;

&lt;p&gt;This changes the alliance calculus fundamentally. Under a financial burden, members can pay their way to safety. Under a political burden, they must choose between sovereignty and security. A NATO where allies must align politically with US military priorities to maintain the security guarantee is a NATO where Article 5 has an asterisk — and every member knows it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Lesson 2: Arms Sales Are the New Alliance Currency
&lt;/h3&gt;

&lt;p&gt;The F-35 is not a fighter jet at the Ankara summit. It is a reward token. Turkey gets consideration because Turkey was "loyal." Israel objects because Turkey is geopolitically inconvenient. The sale is governed by law (CAATSA), managed by Congress, and decided by politics.&lt;/p&gt;

&lt;p&gt;This is the template for every future arms negotiation within the alliance. The US has the leverage — it makes the weapons — and allies must earn access through compliance. That's not partnership. It's clientelism. And it is the natural endpoint of transactional alliance management.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://foreignpolicy.com/2026/07/08/trump-nato-ankara-summit-iran-ukraine-greenland-spain/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ff08ut95sircddqvmh0kb.jpg" alt="Foreign Policy: Trump Wraps Up NATO Summit in Ankara With Iran Threats, Ukraine Promise" width="800" height="619"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://foreignpolicy.com/2026/07/08/trump-nato-ankara-summit-iran-ukraine-greenland-spain/" rel="noopener noreferrer"&gt;View original article on Foreign Policy&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Lesson 3: "NATO 3.0" Is Real — But Nobody Agreed to It
&lt;/h3&gt;

&lt;p&gt;The Carnegie Endowment calls the emerging framework "NATO 3.0": Europe leads conventional defense, America provides nuclear deterrence and reinforcement. This is probably the correct long-term trajectory regardless of who occupies the White House. But it's being implemented by default — through US troop withdrawals and conditional reassurance — rather than by negotiation.&lt;/p&gt;

&lt;p&gt;The difference matters. A negotiated transition would include clear trigger mechanisms for US reinforcement, agreed command structures, and binding commitments. A default transition leaves European allies guessing: if we're attacked, does America come? Under what conditions? What's the price? When the answers to those questions depend on a bilateral relationship rather than a treaty obligation, the treaty has been hollowed out even as it is formally reaffirmed.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://www.congress.gov/crs-product/R49018" rel="noopener noreferrer"&gt;Congressional Research Service&lt;/a&gt; flagged exactly this in its pre-summit report: "Trump's statements criticizing NATO and casting doubt on the alliance's value to the United States have caused some allied governments to question the Administration's commitment to the alliance." Those governments are correct to question it. The commitment is conditional. The condition is compliance.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://old.reddit.com/r/worldnews/comments/1ushbju/spain_says_trump_softened_rhetoric_of_threatening/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6uc3axe2nuo42vphx7ps.png" alt="r/worldnews discussion: Spain says Trump softened rhetoric on trade threats" width="800" height="384"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://old.reddit.com/r/worldnews/comments/1ushbju/spain_says_trump_softened_rhetoric_of_threatening/" rel="noopener noreferrer"&gt;View original discussion on Reddit&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What to Watch in the Next 30 Days
&lt;/h2&gt;

&lt;p&gt;Six data points will tell you whether Ankara was a blip or a pivot:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The Spain trade order.&lt;/strong&gt; Does Bessent actually implement trade restrictions, or does the order die on the vine? If implemented, it's the first time a US president has imposed trade sanctions on a NATO ally. If abandoned, it confirms the theatrical reading.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;US troop movements in Europe.&lt;/strong&gt; Trump speculated about withdrawals over Greenland. Any movement orders — or lack thereof — signal whether the threats are operational or rhetorical.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Turkey's S-400 status.&lt;/strong&gt; For F-35 sales to proceed, Congress requires Turkey to dispose of the Russian system. Any movement toward divestiture is the tell that the Ankara deal was real, not performative.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The 2027 summit question.&lt;/strong&gt; The Ankara declaration &lt;a href="https://www.atlanticcouncil.org/dispatches/eleven-takeaways-from-the-nato-summit-in-ankara/" rel="noopener noreferrer"&gt;notably did not commit to a summit next year&lt;/a&gt;. If no summit is scheduled by autumn, the alliance is retreating from collective leadership to bilateral management — exactly the transactional model this analysis describes.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;European defense coordination.&lt;/strong&gt; Watch for EU-level defense procurement coordination — joint buys, shared production, integrated command. If NATO 3.0 is real, Europe needs its own operational capacity, not just higher spending. The &lt;a href="https://www.aljazeera.com/news/2026/7/8/five-key-takeaways-from-the-nato-summit-in-ankara" rel="noopener noreferrer"&gt;70 billion euro Ukraine package&lt;/a&gt; is the test case.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Polymarket movement.&lt;/strong&gt; If the Russia-Ukraine meeting market keeps climbing while the ceasefire market stays flat or drops, the crowd is confirming what Ankara suggested: optics are the product, substance is the afterthought.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;




&lt;p&gt;&lt;em&gt;The Ankara summit was not NATO's funeral. It was its performance review — and the review says: the alliance is richer, stronger, and less trustworthy than at any point in its 77-year history. That's the paradox the next 30 days will either resolve or entrench.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Related: &lt;a href="https://thearcofpower.com/blog/iran-us-ceasefire-built-on-sand-power-analysis" rel="noopener noreferrer"&gt;The Iran-US Ceasefire Is Built on Sand&lt;/a&gt; | &lt;a href="https://thearcofpower.com/blog/china-panda-bonds-europe-yuan-strategy-hormuz-2026" rel="noopener noreferrer"&gt;China's Panda Bond Play for European Leverage&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://thearcofpower.com/blog/ankara-nato-summit-alliance-fracture" rel="noopener noreferrer"&gt;The Arc of Power&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>nato</category>
      <category>geopolitics</category>
      <category>trump</category>
      <category>foreignpolicy</category>
    </item>
    <item>
      <title>Agent Skills Are the New Dotfiles</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Sat, 11 Jul 2026 04:43:16 +0000</pubDate>
      <link>https://dev.to/max_quimby/agent-skills-are-the-new-dotfiles-1g1i</link>
      <guid>https://dev.to/max_quimby/agent-skills-are-the-new-dotfiles-1g1i</guid>
      <description>&lt;h1&gt;
  
  
  Agent Skills Are the New Dotfiles
&lt;/h1&gt;

&lt;p&gt;Five of the top eight repos on GitHub Trending right now are agent infrastructure. &lt;a href="https://github.com/obra/superpowers" rel="noopener noreferrer"&gt;obra/superpowers&lt;/a&gt; sits at 252,000 stars. &lt;a href="https://github.com/mattpocock/skills" rel="noopener noreferrer"&gt;mattpocock/skills&lt;/a&gt; crossed 165,000 — gaining 10,800 per week — and &lt;a href="https://github.com/addyosmani/agent-skills" rel="noopener noreferrer"&gt;addyosmani/agent-skills&lt;/a&gt; holds at 77,000. Combined, just these three repos account for nearly half a million stars. The Cambrian explosion of agent skills is the biggest open-source trend of 2026, and it shows no sign of slowing.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;a href="https://agentconn.com/blog/agent-skills-new-dotfiles-repos-racing-250k-stars-2026" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on AgentConn →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;But here is the thesis nobody with a trending repo wants to say out loud: &lt;strong&gt;star velocity is measuring enthusiasm, not maturity.&lt;/strong&gt; The real question is not which skills directory to install. It is whether the ecosystem converges on a portable standard — or fragments into another generation of vendor-locked config files that each need their own find-and-replace when you switch tools.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/obra/superpowers" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkljn6i0d8u9qrzljdcx4.png" alt="obra/superpowers GitHub repository — 252K stars" width="800" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Dotfiles Analogy Is Precise (And That Should Worry You)
&lt;/h2&gt;

&lt;p&gt;Dotfiles — &lt;code&gt;.bashrc&lt;/code&gt;, &lt;code&gt;.vimrc&lt;/code&gt;, &lt;code&gt;.gitconfig&lt;/code&gt; — are the original "configuration as competitive advantage." Senior engineers have maintained them for decades, and the pattern is remarkably similar to what is happening with agent skills today. You find a configuration that makes you productive. You version-control it. You share it on GitHub. Others fork it. Opinionated collections accumulate stars.&lt;/p&gt;

&lt;p&gt;And here is the part the analogy's boosters skip: &lt;strong&gt;dotfiles never standardized.&lt;/strong&gt; There is no RFC for &lt;code&gt;.bashrc&lt;/code&gt; structure. No committee blessed a canonical &lt;code&gt;.vimrc&lt;/code&gt; layout. The ecosystem thrived anyway, but switching costs remained real, and every new tool that arrived (zsh, fish, neovim) required translation work. Skills are following the same arc — fast, organic, decentralized — and they may land in the same place.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://drmowinckels.io/blog/2026/dotfiles-coding-agents/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1oiqv23qfxtz8odesbt2.png" alt="Dotfiles: Taming Your Dev Environment and Your AI Coding Agents" width="799" height="519"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The blog post &lt;a href="https://drmowinckels.io/blog/2026/dotfiles-coding-agents/" rel="noopener noreferrer"&gt;"Dotfiles: Taming Your Dev Environment (and Your AI Coding Agents)"&lt;/a&gt; makes the connection explicit: "The developers who get the most out of Claude Code in 2026 are the ones who treat their skill folder like a dotfiles repo: small, opinionated, version-controlled, and always shrinking back toward the things that actually earn their keep."&lt;/p&gt;

&lt;p&gt;That is good advice. But it assumes a stable target. Right now, the target is moving.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Three Repos: Philosophy, Not Just Star Count
&lt;/h2&gt;

&lt;p&gt;The star counts are easy to report. The differences in philosophy are what actually matter for practitioners choosing where to invest.&lt;/p&gt;

&lt;h3&gt;
  
  
  obra/superpowers — The Methodology (252K Stars)
&lt;/h3&gt;

&lt;p&gt;Jesse Vincent's &lt;a href="https://github.com/obra/superpowers" rel="noopener noreferrer"&gt;Superpowers&lt;/a&gt; is not a skills collection. It is an opinionated software development methodology that happens to be packaged as skills. Superpowers enforces a specific workflow: Socratic design refinement before coding, red-green-refactor test-driven cycles, subagent-driven development with two-stage review, and systematic debugging over ad-hoc approaches.&lt;/p&gt;

&lt;p&gt;The skills activate based on context — design phase, implementation, review — creating a mandatory workflow rather than optional tools. This is the most prescriptive option: you get Superpowers' engineering philosophy or you get nothing. It works for teams that want guardrails. It frustrates teams that want a la carte.&lt;/p&gt;

&lt;p&gt;Superpowers installs as a plugin across 10+ coding agents (Claude Code, Codex, Cursor, Copilot CLI, and more), which is the strongest portability story of the three.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/EWk9PBbKqzc"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  mattpocock/skills — The Curated Toolkit (165K Stars)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/mattpocock/skills" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fm1o7xb8gekv4f25nlvlt.png" alt="mattpocock/skills GitHub repository — 165K stars" width="800" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Matt Pocock's &lt;a href="https://github.com/mattpocock/skills" rel="noopener noreferrer"&gt;Skills for Real Engineers&lt;/a&gt; (165K stars, v1.1.0 released July 8) takes the opposite approach. Seventeen skills, organized into Engineering (10) and Productivity (7), drawn from Pocock's own &lt;code&gt;.claude&lt;/code&gt; directory. The repo is explicit about its design philosophy: small, composable tools rather than an opinionated framework.&lt;/p&gt;

&lt;p&gt;The growth trajectory tells a story. The repo went from 29,400 stars on April 27 to 165,000 in ten weeks — a +6,175-star day at its peak, holding the number-two spot on GitHub Trending for six consecutive days. That velocity is partly Pocock's existing audience (he is already well-known in the TypeScript community), but it also reflects genuine demand for curated, practical skill collections over sprawling directories.&lt;/p&gt;

&lt;p&gt;The limitation: these skills are drawn from one engineer's workflow. They reflect TypeScript-heavy, test-driven, refactor-focused development. If your stack is Python ML pipelines or Go infrastructure, the value proposition is thinner.&lt;/p&gt;

&lt;h3&gt;
  
  
  addyosmani/agent-skills — The Production Guardrails (77K Stars)
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/addyosmani/agent-skills" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fame5ahexcgtvl6qkkeoc.png" alt="addyosmani/agent-skills GitHub repository — 77K stars" width="800" height="525"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Addy Osmani's &lt;a href="https://github.com/addyosmani/agent-skills" rel="noopener noreferrer"&gt;agent-skills&lt;/a&gt; (77K stars) positions itself around a specific problem: AI agents default to the shortest path, bypassing specs, tests, and security reviews. The 24 skills encode workflows, quality gates, and best practices with three differentiators:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Verification-first:&lt;/strong&gt; Every skill mandates evidence — tests passing, build output, runtime data — rejecting outcomes that merely "seem right."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anti-rationalization tables:&lt;/strong&gt; Each skill documents common excuses agents use to skip steps ("I'll add tests later") alongside documented counter-arguments.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Process over prose:&lt;/strong&gt; Skills function as actionable workflows with steps, checkpoints, and exit criteria rather than reference documentation.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The &lt;code&gt;npx skills add addyosmani/agent-skills&lt;/code&gt; installation path via the open skills CLI makes this the easiest of the three to adopt incrementally — install one skill at a time, not the whole philosophy.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/-iTNOaCmLcw"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  The Standards Landscape: Four Formats, One Problem
&lt;/h2&gt;

&lt;p&gt;The fragmentation problem is real and already well-documented. For most of 2024 and 2025, every AI coding tool invented its own configuration format.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://codersera.com/blog/agents-md-vs-claude-md-vs-cursor-rules-comparison-2026/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4sr853ce3fjiy7pfkp0i.png" alt="AGENTS.md vs CLAUDE.md vs Cursor Rules — 2026 comparison" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Format&lt;/th&gt;
&lt;th&gt;Path&lt;/th&gt;
&lt;th&gt;Owner&lt;/th&gt;
&lt;th&gt;Supported By&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;AGENTS.md&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Repo root&lt;/td&gt;
&lt;td&gt;Linux Foundation / AAIF&lt;/td&gt;
&lt;td&gt;20+ agents (Codex, Cursor, Copilot, Gemini CLI, Aider, Windsurf, Zed)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;CLAUDE.md&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Root + &lt;code&gt;~/.claude/&lt;/code&gt;
&lt;/td&gt;
&lt;td&gt;Anthropic&lt;/td&gt;
&lt;td&gt;Claude Code&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;SKILL.md&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;~/.claude/skills/&amp;lt;name&amp;gt;/&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Anthropic&lt;/td&gt;
&lt;td&gt;Claude Code, Codex CLI, Gemini CLI, Copilot&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;.cursor/rules/*.mdc&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;.cursor/rules/&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Cursor&lt;/td&gt;
&lt;td&gt;Cursor only&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;AGENTS.md has the broadest adoption — 60,000+ public repos as of May 2026 — after OpenAI proposed it in August 2025 and donated it to the Linux Foundation's Agentic AI Foundation in December 2025. SKILL.md has the richest feature set: frontmatter metadata, progressive disclosure (description loaded first, full instructions on demand), and support for helper scripts and assets. Cursor's MDC rules have the most sophisticated activation logic (glob-scoped, conditional). CLAUDE.md has the deepest platform integration (three-layer memory model with auto-memory).&lt;/p&gt;

&lt;p&gt;The practical advice from every comparison article converges: start with AGENTS.md for project-wide conventions, add SKILL.md for task-specific capabilities, and only add vendor-specific formats if you have a real need. But "start with AGENTS.md" is cold comfort when the skill you want to install was written for CLAUDE.md and references Anthropic-specific features.&lt;/p&gt;

&lt;p&gt;A separate HN thread on &lt;a href="https://news.ycombinator.com/item?id=47034087" rel="noopener noreferrer"&gt;evaluating AGENTS.md&lt;/a&gt; digs into whether these config files actually help — the answer is "it depends on who wrote them," which is the kind of unsatisfying truth that a 250K-star ecosystem does not want to hear.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=47034087" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc58kxwdeya8tgejektj9.png" alt="HN discussion: Evaluating AGENTS.md" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Community Is Actually Saying
&lt;/h2&gt;

&lt;p&gt;The &lt;a href="https://news.ycombinator.com/item?id=46871173" rel="noopener noreferrer"&gt;544-point Hacker News thread on Agent Skills&lt;/a&gt; (260 comments) captures the tension perfectly.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=46871173" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fssi3823hhpf5uwvd0w7p.png" alt="HN discussion on Agent Skills — 544 points, 260 comments" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The skeptics invoke the bitter lesson. User &lt;strong&gt;iainmerrick&lt;/strong&gt; argues: "All you need to do is provide the LLM with good clear documentation." The implication is that SKILL.md's folder structures and frontmatter requirements are bikeshedding — well-written prose already works.&lt;/p&gt;

&lt;p&gt;The pragmatists counter with resource constraints. &lt;strong&gt;smithkl42&lt;/strong&gt; points out the context-window problem: "If we were to put them all in CLAUDE.md, we wouldn't have any context left for coding." Skills solve a real engineering problem — modular, on-demand loading that does not consume your entire context budget on boot.&lt;/p&gt;

&lt;p&gt;The most revealing comment comes from &lt;strong&gt;postalcoder&lt;/strong&gt;, who cites empirical evidence: "Codex + skills finetunes Qwen3-0.6B to +6 on HumanEval." But then notes that Vercel reportedly found AGENTS.md outperforms skills in their evaluations. The data does not agree with itself yet. That should tell you something about the maturity of this space.&lt;/p&gt;

&lt;p&gt;And &lt;strong&gt;rvz&lt;/strong&gt; delivers the punchline the entire thread is building toward: "There are 14 competing standards." The xkcd reference is evergreen because the pattern is evergreen.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ &lt;strong&gt;The Contrarian Take:&lt;/strong&gt; Maybe fragmentation is fine. Dotfiles never converged and the ecosystem thrived. Skills are just markdown files — the switching cost is a find-and-replace, not a database migration. The "we need a standard" crowd may be solving a problem that does not exist yet. The real risk is not fragmentation but premature standardization that locks in the wrong abstractions before the ecosystem figures out what skills actually need to contain.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Star Velocity Does Not Equal Maturity
&lt;/h2&gt;

&lt;p&gt;Here is a number that should give pause: an &lt;a href="https://blog.buildbetter.ai/agents-md-vs-cursorrules-vs-claude-skills-2026-comparison/" rel="noopener noreferrer"&gt;ETH Zurich study&lt;/a&gt; found that LLM-generated context files lowered task success by approximately 3% versus baseline while raising inference cost by 20%+. Human-authored files showed a modest 4% improvement.&lt;/p&gt;

&lt;p&gt;This means that the most popular skills — the ones accumulating thousands of stars per day — may actually be making agents worse if they are poorly authored. Star count measures discoverability and social proof, not quality. A skill with 50,000 stars and vague instructions can actively degrade agent performance compared to no skill at all.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://snyk.io/blog/toxicskills-malicious-ai-agent-skills-clawhub/" rel="noopener noreferrer"&gt;Snyk ToxicSkills research&lt;/a&gt; adds a security dimension: 36% of agent skills on the ClawHub marketplace contain exploitable security flaws, with 1,467 malicious payloads identified. We covered this in depth in &lt;a href="https://agentconn.com/blog/agent-config-skills-supply-chain-attack-surface-2026" rel="noopener noreferrer"&gt;Config Files That Run Code: The Agent Skill Supply Chain&lt;/a&gt; — the TL;DR is that skills execute on load, and the ecosystem has no equivalent of npm audit for skill directories.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ℹ️ &lt;strong&gt;The Signal in the Noise:&lt;/strong&gt; The repos that matter are the ones where the maintainer ships fewer skills, not more. Pocock's 17 skills at 165K stars versus collections with 345+ skills tells you that curation is winning over comprehensiveness. The best skill directories look more like a senior engineer's dotfiles — 10-20 opinionated, battle-tested configs — than a package registry.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/eRS3CmvrOvA"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  The .claude/ Folder as the New .config/
&lt;/h2&gt;

&lt;p&gt;The discussion around &lt;a href="https://news.ycombinator.com/item?id=47543139" rel="noopener noreferrer"&gt;the anatomy of the .claude/ folder&lt;/a&gt; on HN reveals how quickly the configuration surface area has grown. What started as a single CLAUDE.md file now spans skills directories, MCP server manifests, hooks, plugins, and memory files — a complexity budget that looks suspiciously like the &lt;code&gt;.config/&lt;/code&gt; sprawl that dotfiles managers were invented to tame.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=47543139" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fabk1yvojf21zwmno66og.png" alt="HN discussion: Anatomy of .claude/ folder" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Meanwhile, a &lt;a href="https://news.ycombinator.com/item?id=46693426" rel="noopener noreferrer"&gt;Show HN post curating 1,000 skills from 60,000+ GitHub skill repos&lt;/a&gt; demonstrates both the scale of the ecosystem and the discovery problem it creates. When there are 60,000 skill repos on GitHub, curation is no longer a convenience — it is infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=46693426" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbw6ommfrtmch25roa7wy.png" alt="Show HN: Agent Skills — 1K curated from 60K+" width="800" height="526"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What a Good Skills Directory Actually Contains
&lt;/h2&gt;

&lt;p&gt;If you are starting from scratch or auditing your current setup, here is what the teams shipping real software with agent skills have converged on:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. A project-level AGENTS.md&lt;/strong&gt; that describes your codebase conventions, architecture, and constraints. This is the file every agent reads first. Keep it under 2,000 tokens — the ETH Zurich data says more context is not better context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Five to ten task-specific SKILL.md files&lt;/strong&gt; covering your actual workflows: test-driven development, code review, deployment, debugging, and domain-specific tasks. Each should be a workflow with steps and exit criteria, not a reference document. Osmani's anti-rationalization tables are a good pattern — they anticipate and block the shortcuts agents will try to take.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Version control and code review for skills.&lt;/strong&gt; Your skills directory should live in your repo under &lt;code&gt;.agents/skills/&lt;/code&gt; or &lt;code&gt;.claude/skills/&lt;/code&gt;, not in a personal dotfiles repo that only you maintain. When skills travel with the codebase, every new contributor gets the project's conventions automatically.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. A security audit step.&lt;/strong&gt; Before installing any third-party skill, read the SKILL.md and every script it references. Check for &lt;code&gt;postinstall&lt;/code&gt; hooks, shell commands, or network calls. The 36% malicious-payload rate is not an abstract risk — it is the current state of the ecosystem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. A kill switch.&lt;/strong&gt; Skills that are not earning their keep should be deleted, not accumulated. The developers in the HN thread who reported the best results were the ones who described their skills folder as "always shrinking back toward the things that actually earn their keep."&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;p&gt;If you are building with coding agents today, three things are true simultaneously:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The skills ecosystem is real and valuable.&lt;/strong&gt; The gap between an unconfigured agent and a well-skilled one is significant enough that teams are investing serious engineering time in their skill directories. This is not hype — it is the same pattern that made dotfiles, linters, and CI/CD configurations worth maintaining.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The standards question is unresolved.&lt;/strong&gt; AGENTS.md has the broadest support. SKILL.md has the richest features. Neither has won. Bet on portability: write skills as plain markdown with minimal vendor-specific features, and you minimize the translation cost when the landscape shifts.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Star count is a terrible proxy for quality.&lt;/strong&gt; A trending repo with 100,000 stars and AI-generated skills can make your agent worse. A focused collection of 15 human-authored skills from a senior engineer who uses them daily will make your agent better. Audit before you install. Delete what does not work. Treat your skills directory like the production infrastructure it is.&lt;/p&gt;

&lt;p&gt;The dotfiles analogy is precise. And like dotfiles, the engineers who win are not the ones with the most configuration — they are the ones whose configuration is the most intentional.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;For more on agent infrastructure security, see &lt;a href="https://agentconn.com/blog/agent-config-skills-supply-chain-attack-surface-2026" rel="noopener noreferrer"&gt;Config Files That Run Code: The Agent Skill Supply Chain&lt;/a&gt;. For how skills fit into multi-agent orchestration, see &lt;a href="https://agentconn.com/blog/agent-of-agents-fleet-orchestration-background-agents-2026" rel="noopener noreferrer"&gt;The Agent-of-Agents Problem&lt;/a&gt;. And for the memory side of agent configuration, see &lt;a href="https://agentconn.com/blog/ai-agent-memory-auto-dream-context-files-2026" rel="noopener noreferrer"&gt;AI Agent Memory in 2026&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://agentconn.com/blog/agent-skills-new-dotfiles-repos-racing-250k-stars-2026" rel="noopener noreferrer"&gt;AgentConn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>agents</category>
      <category>opensource</category>
      <category>devtools</category>
    </item>
    <item>
      <title>GPT-5.6 Looks Cheaper. Your Invoice Won't Agree.</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Sat, 11 Jul 2026 03:49:35 +0000</pubDate>
      <link>https://dev.to/max_quimby/gpt-56-looks-cheaper-your-invoice-wont-agree-5928</link>
      <guid>https://dev.to/max_quimby/gpt-56-looks-cheaper-your-invoice-wont-agree-5928</guid>
      <description>&lt;h1&gt;
  
  
  GPT-5.6 Looks Cheaper. Your Invoice Won't Agree.
&lt;/h1&gt;

&lt;p&gt;OpenAI shipped GPT-5.6 to general availability on July 9, 2026, and the headline wrote itself: Sol matches Claude Opus 4.8 on input at $5 per million tokens while Terra undercuts everything at $2.50, and Luna slides in at a dollar. The pricing page looks like a clearance sale. But pricing pages are not invoices, and the gap between the two is where engineering budgets go to die.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://computeleap.com/blog/gpt-5-6-pricing-vs-claude" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on ComputeLeap →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The core problem is simple: &lt;strong&gt;per-token price is the sticker on the window. Cost-per-task is what you actually pay.&lt;/strong&gt; A model that charges half the rate but burns three times the tokens to finish a coding task costs you more, not less. And the market already knows this. On &lt;a href="https://polymarket.com/event/which-company-has-best-ai-model-end-of-july-299" rel="noopener noreferrer"&gt;Polymarket&lt;/a&gt;, bettors price Anthropic at 88% to hold the "best AI model" crown through July 31 --- with OpenAI at a bare 2.5% --- despite GPT-5.6 Sol matching or beating Claude on several coding benchmarks. That is not irrational. That is the market telling you something the pricing page cannot.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/ArtificialAnlys/status/2075268970492657905" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fecpspvzwb8ati0trq8g3.png" alt="Artificial Analysis tweet showing GPT-5.6 Sol benchmark results and cost-per-task comparison" width="342" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/ArtificialAnlys/status/2075268970492657905" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Sticker Price: What OpenAI Published
&lt;/h2&gt;

&lt;p&gt;GPT-5.6 launched as a three-tier family --- Sol, Terra, and Luna --- replacing the old naming convention with a clarity that &lt;a href="https://openai.com/index/gpt-5-6/" rel="noopener noreferrer"&gt;OpenAI&lt;/a&gt; has historically avoided:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Input (per 1M tokens)&lt;/th&gt;
&lt;th&gt;Output (per 1M tokens)&lt;/th&gt;
&lt;th&gt;Cached Input&lt;/th&gt;
&lt;th&gt;Position&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.6 Sol&lt;/td&gt;
&lt;td&gt;$5.00&lt;/td&gt;
&lt;td&gt;$30.00&lt;/td&gt;
&lt;td&gt;$0.50&lt;/td&gt;
&lt;td&gt;Flagship&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.6 Terra&lt;/td&gt;
&lt;td&gt;$2.50&lt;/td&gt;
&lt;td&gt;$15.00&lt;/td&gt;
&lt;td&gt;$0.25&lt;/td&gt;
&lt;td&gt;Balanced&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.6 Luna&lt;/td&gt;
&lt;td&gt;$1.00&lt;/td&gt;
&lt;td&gt;$6.00&lt;/td&gt;
&lt;td&gt;$0.10&lt;/td&gt;
&lt;td&gt;Budget&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Opus 4.8&lt;/td&gt;
&lt;td&gt;$5.00&lt;/td&gt;
&lt;td&gt;$25.00&lt;/td&gt;
&lt;td&gt;$0.50&lt;/td&gt;
&lt;td&gt;Flagship&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Fable 5&lt;/td&gt;
&lt;td&gt;$10.00&lt;/td&gt;
&lt;td&gt;$50.00&lt;/td&gt;
&lt;td&gt;$1.00&lt;/td&gt;
&lt;td&gt;Frontier&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;On paper, Sol undercuts Opus 4.8 on nothing --- actually, Opus is cheaper on output ($25 versus $30). Terra genuinely halves the cost of GPT-5.5. Luna creates a new floor. But these numbers describe rate, not spend. And the distinction matters more in 2026 than it ever has, because reasoning models do not merely answer questions --- they think about them first, and you pay for every token of that thinking.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Info:&lt;/strong&gt; Cache-write pricing is new for OpenAI as of GPT-5.6. Cache reads stay at the standard 90% discount, but cache writes are billed at 1.25x the normal input rate. Factor this into any migration estimate.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Why Per-Token Price Is a Vanity Metric
&lt;/h2&gt;

&lt;p&gt;Jan Ilowski's viral analysis, "&lt;a href="https://janilowski.pl/en/blog/2026/price-per-m-tokens/" rel="noopener noreferrer"&gt;Price per 1M tokens is meaningless&lt;/a&gt;," dropped the data that makes the sticker-price crowd uncomfortable. Using &lt;a href="https://artificialanalysis.ai/articles/gpt-5-6-has-landed" rel="noopener noreferrer"&gt;Artificial Analysis&lt;/a&gt; benchmarks, he measured what each model actually costs to complete a standardized task:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GPT-5.5 (xhigh reasoning):&lt;/strong&gt; $0.99 per task&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Opus 4.8 (max reasoning):&lt;/strong&gt; $1.78 per task&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Sonnet 5 (max reasoning):&lt;/strong&gt; $2.29 per task&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DeepSeek V4 Pro (max reasoning):&lt;/strong&gt; $0.04 per task&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GPT-5.5 and Opus 4.8 share the same $5 input rate. Yet Opus costs 80% more per finished task. The entire gap comes from token efficiency --- how many tokens the model burns (including hidden reasoning tokens) to reach a correct answer.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://janilowski.pl/en/blog/2026/price-per-m-tokens/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvygynay98ejynvo5m9li.png" alt="Jan Ilowski's analysis showing price per 1M tokens is meaningless compared to cost per task" width="800" height="597"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://janilowski.pl/en/blog/2026/price-per-m-tokens/" rel="noopener noreferrer"&gt;Read Jan Ilowski's full analysis →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.tensorzero.com/blog/stop-comparing-price-per-million-tokens-the-hidden-llm-api-costs/" rel="noopener noreferrer"&gt;TensorZero&lt;/a&gt; went further in their April 2026 analysis. They found that different tokenizers alone can turn a 2x list-price difference into a 5.3x actual-cost difference. Claude Opus 4.7 produced 2.65x more tokens than GPT-5.4 when processing tool definitions --- same input, same task, wildly different bills. The sticker said 2x; the invoice said 5.3x.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Warning:&lt;/strong&gt; The tokenizer tax is real. Different providers tokenize identical input into different token counts. A model that appears 50% cheaper per token can be more expensive per task if its tokenizer inflates the count. Always measure on your actual workloads.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  GPT-5.6 Sol: The Cost-Per-Task Numbers
&lt;/h2&gt;

&lt;p&gt;Now apply this framework to GPT-5.6. &lt;a href="https://artificialanalysis.ai/articles/gpt-5-6-has-landed" rel="noopener noreferrer"&gt;Artificial Analysis&lt;/a&gt; ran Sol through their Intelligence Index and Coding Agent Index, producing the most comprehensive cost-per-task comparison available:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Intelligence Index (general reasoning):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPT-5.6 Sol (max): 59 points, &lt;strong&gt;$1.04 per task&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Claude Fable 5 (max): 60 points, &lt;strong&gt;~$3.12 per task&lt;/strong&gt; (3x Sol)&lt;/li&gt;
&lt;li&gt;GPT-5.6 Terra (max): 55 points, &lt;strong&gt;$0.55 per task&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;GPT-5.6 Luna (max): 51 points, &lt;strong&gt;$0.21 per task&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sol scores one point below Fable 5 --- effectively a tie --- at one-third the cost per task. That is not a marginal advantage. That is the difference between a viable production workload and a budget conversation with your CTO.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/OpenAI/status/2075271425548795909" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fhrjmupwr8iu42601xbd7.png" alt="OpenAI tweet announcing GPT-5.6 Sol coding agent benchmark lead at lower cost" width="800" height="1015"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/OpenAI/status/2075271425548795909" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Coding Agent Index:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPT-5.6 Sol in Codex: 80.0 points (new SOTA)&lt;/li&gt;
&lt;li&gt;Claude Fable 5 in Claude Code: 77.2 points, at ~40% higher cost&lt;/li&gt;
&lt;li&gt;GPT-5.6 Terra: 77 points&lt;/li&gt;
&lt;li&gt;GPT-5.6 Luna: 75 points&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On DeepSWE (a coding-agent benchmark), the gap gets even wider. Rohan Paul's analysis showed GPT-5.6 Sol reaching 72--73% at roughly $8.40 per task, while Claude Fable 5 topped out at 70% at $13 to $22 per task.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/rohanpaul_ai/status/2075485171663655095" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frxt6lkgnb7i4ru5c0qqt.png" alt="Rohan Paul analysis showing GPT-5.6 Sol costs $8.40 per DeepSWE task versus Claude Fable 5 at $13-22" width="696" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/rohanpaul_ai/status/2075485171663655095" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/gAWbvEwUoiI"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Where the Reasoning Tokens Hide
&lt;/h2&gt;

&lt;p&gt;The reason cost-per-task diverges so dramatically from cost-per-token comes down to one mechanism: &lt;strong&gt;reasoning token burn.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;When a reasoning model processes a request, it generates internal chain-of-thought tokens that are billed as output tokens but never shown in the response. A 300-token visible answer might carry 2,000 reasoning tokens behind it. You pay output rates --- the expensive half of the bill --- for every one of those invisible tokens.&lt;/p&gt;

&lt;p&gt;This is where the "cheaper per token" narrative collapses. If Model A charges $30 per million output tokens but needs 15,000 total tokens to finish a task, and Model B charges $25 per million but burns 45,000 tokens, Model B costs more despite the lower rate. GPT-5.6 Sol uses approximately 15,000 tokens per Intelligence Index task. Fable 5's token consumption is substantially higher --- which is exactly why it cost Artificial Analysis &lt;a href="https://x.com/ArtificialAnlys/status/2067384319942029379" rel="noopener noreferrer"&gt;$6,200 to run the Intelligence Index evaluation&lt;/a&gt;, making it the most expensive model they have ever benchmarked.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/ArtificialAnlys/status/2067384319942029379" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fpwgk8zkfxi0x9zkhfl10.png" alt="Artificial Analysis tweet showing Claude Fable 5 cost $6,200 to benchmark - the most expensive model ever evaluated" width="607" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/ArtificialAnlys/status/2067384319942029379" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Info:&lt;/strong&gt; Sol's token efficiency is its real advantage. Using fewer tokens per task than Opus 4.8, GLM-5.2, and Gemini 3.5 Flash while maintaining comparable intelligence scores, Sol converts its sticker price into genuine invoice savings --- not just marketing copy.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Polymarket Counter-Signal
&lt;/h2&gt;

&lt;p&gt;Here is where the narrative gets interesting. If GPT-5.6 Sol genuinely delivers comparable intelligence at one-third the cost per task, why does &lt;a href="https://polymarket.com/event/which-company-has-best-ai-model-end-of-july-299" rel="noopener noreferrer"&gt;Polymarket&lt;/a&gt; price Anthropic at 88% to hold the "best AI model" crown through July and OpenAI at just 2.5%?&lt;/p&gt;

&lt;p&gt;Because "best" and "cheapest per task" are not the same question.&lt;/p&gt;

&lt;p&gt;The Polymarket contract resolves on demonstrated capability --- leaderboard scores, SWE-bench performance, real-world adoption. And on that axis, Claude still leads. Fable 5 holds the published SWE-Bench Pro lead at 80.3%; OpenAI has not released a Sol SWE-Bench Pro score. Claude's ecosystem --- Claude Code, the developer experience, the reliability that comes from lower hallucination rates --- commands a premium that $5.4 million in traded volume says the market considers worth paying.&lt;/p&gt;

&lt;p&gt;The 88% is not a bet against GPT-5.6 Sol. It is a bet that capability matters more than price in the current market. And it is a bet that the organizations choosing their AI stack right now are optimizing for tasks completed correctly, not tokens consumed cheaply.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48849066" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjx2zl8tblhtlvk790hfl.png" alt="Hacker News discussion thread for GPT-5.6 launch with 1,485 points and 1,049 comments" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48849066" rel="noopener noreferrer"&gt;View discussion on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Contrarian Corner: Cost-Per-Task Is Also Incomplete
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Warning:&lt;/strong&gt; The uncomfortable truth: Cost-per-task benchmarks measure synthetic tasks, not production workloads. A model that costs $1 per benchmark task but hallucinates on 5% of real requests --- requiring human review, retry loops, and incident response --- might cost $15 per successful task in production. First-pass accuracy, retry rates, and human oversight costs dominate total cost of ownership. METR's safety evaluation flagged GPT-5.6 Sol for the highest reward-hacking rate of any public model they have tested. How that translates into production reliability is an open question that no benchmark answers.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Cost-per-task is strictly better than cost-per-token as a decision framework. But it is still a proxy. The real metric practitioners should care about is &lt;strong&gt;cost per correct, accepted output in their specific workflow&lt;/strong&gt; --- and that number includes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Retry overhead:&lt;/strong&gt; How often does the model fail and require re-prompting?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Human review cost:&lt;/strong&gt; How much engineer time goes into verifying outputs?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tooling efficiency:&lt;/strong&gt; Does the model waste tokens on redundant tool calls?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Latency cost:&lt;/strong&gt; Faster models let engineers iterate more quickly, compounding productivity gains across the team.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No published benchmark captures all four. This is why the only honest advice is: benchmark your own workloads.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/nmLIing5Xlc"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Community Is Saying
&lt;/h2&gt;

&lt;p&gt;The GPT-5.6 launch thread on &lt;a href="https://news.ycombinator.com/item?id=48849066" rel="noopener noreferrer"&gt;Hacker News&lt;/a&gt; pulled 1,485 points and over 1,000 comments --- the largest AI model discussion thread of the month. The conversation quickly moved past benchmark numbers into practical cost analysis, with developers sharing real invoice comparisons.&lt;/p&gt;

&lt;p&gt;The "&lt;a href="https://news.ycombinator.com/item?id=48809542" rel="noopener noreferrer"&gt;Price per 1M tokens is meaningless&lt;/a&gt;" thread on HN drove a parallel discussion, with developers sharing their own per-task cost measurements across providers. The consensus among practitioners: anyone still comparing models by sticker price is optimizing the wrong variable.&lt;/p&gt;

&lt;p&gt;On X, &lt;a href="https://x.com/ArtificialAnlys/status/2075268970492657905" rel="noopener noreferrer"&gt;Artificial Analysis&lt;/a&gt;'s evaluation thread became the reference point for the pricing discussion. Their finding that Sol delivers Intelligence Index performance within one point of Fable 5 at one-third the cost was the most-cited data point in developer channels. &lt;a href="https://x.com/OpenAI/status/2075271425548795909" rel="noopener noreferrer"&gt;OpenAI's own announcement&lt;/a&gt; leaned into the cost story, highlighting that Sol leads the Coding Agent Index "while using less than half the output tokens, taking less than half the time, and costing about one-third less."&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/kimmonismus/status/2070577616210276664" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvotlultytpciu204y0q8.png" alt="Chubby tweet comparing GPT-5.6 Sol pricing against Claude Opus 4.8 and Mythos 5" width="425" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/kimmonismus/status/2070577616210276664" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/cline/status/2075278343927365991" rel="noopener noreferrer"&gt;Cline&lt;/a&gt; (the popular open-source coding agent) weighed in too, noting GPT-5.6's TerminalBench record at 91.9% while pointing out that Fable is moving from subscription to API pricing --- effectively doubling the cost for developers who relied on subscription access.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/cline/status/2075278343927365991" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fl6syehfndhvsg7lrbygb.png" alt="Cline tweet about GPT-5.6 setting TerminalBench record at 91.9 percent at the same price as GPT-5.5" width="800" height="1028"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/cline/status/2075278343927365991" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/EthxaDswUFo"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;p&gt;If you are evaluating GPT-5.6 against Claude for a production workload, here is the framework that survives contact with reality:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Stop comparing sticker prices.&lt;/strong&gt; Sol at $5/$30 versus Opus at $5/$25 tells you nothing about what your bill will look like. Measure cost-per-task on your actual workload using tools like &lt;a href="https://www.tensorzero.com/blog/stop-comparing-price-per-million-tokens-the-hidden-llm-api-costs/" rel="noopener noreferrer"&gt;TensorZero&lt;/a&gt; or Artificial Analysis.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Use tiered routing.&lt;/strong&gt; GPT-5.6's three-tier family is designed for this. Route hard reasoning and coding tasks to Sol, general-purpose work to Terra, and simple extraction or classification to Luna. The cost difference between Luna at $0.21/task and Sol at $1.04/task is 5x --- that is real money at scale.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Account for reasoning overhead.&lt;/strong&gt; If your workload triggers deep reasoning (multi-step coding, complex analysis), output token consumption will dominate your bill. Track reasoning tokens separately from response tokens. More reasoning effort means more output tokens, and output is the expensive half.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Factor in the ecosystem.&lt;/strong&gt; Claude Code's developer experience, Anthropic's reliability track record, and the existing tooling ecosystem have real value. A model that costs 30% more per task but integrates cleanly into your workflow and requires fewer retries may still be cheaper in total cost of ownership.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Watch the Polymarket signal.&lt;/strong&gt; When $5.4 million in traded volume prices Anthropic at 88% and OpenAI at 2.5% despite Sol's strong benchmark showing, the market is telling you that capability and reliability premiums persist. Price leadership alone does not win the stack.&lt;/p&gt;

&lt;p&gt;The AI pricing war is real, and GPT-5.6's three-tier structure is a genuine improvement in how frontier models are priced. But the developer who picks a model based on the sticker price is making the same mistake as the driver who picks a car based on the MSRP without asking about fuel economy. The cheapest token is worthless if the model burns ten times more of them to get the job done.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;For more on AI pricing economics, see our deep dives on &lt;a href="https://computeleap.com/blog/ai-token-economics-subsidy-clock-use-llm-less-2026" rel="noopener noreferrer"&gt;the AI subsidy clock&lt;/a&gt;, &lt;a href="https://computeleap.com/blog/hidden-cost-cheap-ai-reasoning-models-2026" rel="noopener noreferrer"&gt;the 6x pricing lie behind cheap reasoning models&lt;/a&gt;, and &lt;a href="https://computeleap.com/blog/glm-5-2-cheap-price-subsidy-not-efficiency-real-cost-math-2026" rel="noopener noreferrer"&gt;why GLM-5.2's low price is a subsidy, not efficiency&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://computeleap.com/blog/gpt-5-6-pricing-vs-claude" rel="noopener noreferrer"&gt;ComputeLeap&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>gpt5</category>
      <category>claude</category>
      <category>llm</category>
    </item>
    <item>
      <title>ai-job-search: GitHub's Hottest Agent Applies For You</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Fri, 10 Jul 2026 04:53:22 +0000</pubDate>
      <link>https://dev.to/max_quimby/ai-job-search-githubs-hottest-agent-applies-for-you-34nf</link>
      <guid>https://dev.to/max_quimby/ai-job-search-githubs-hottest-agent-applies-for-you-34nf</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/MadsLorentzen/ai-job-search" rel="noopener noreferrer"&gt;MadsLorentzen/ai-job-search&lt;/a&gt; hit #1 on GitHub trending on July 7, 2026 — and it hasn't slowed down. With 19.5K stars and 5.6K forks in a matter of weeks, it's the single fastest-growing Claude Code workflow repo this year. The premise is simple: fork it, run &lt;code&gt;/setup&lt;/code&gt;, and let Claude evaluate job postings, tailor your CV, draft cover letters, and prep you for interviews.&lt;/p&gt;

&lt;p&gt;But the interesting part isn't the automation. It's the architecture underneath — a drafter-reviewer agent pattern that treats job applications as adversarial documents, not form-fill exercises. That design choice is what separates ai-job-search from the spray-and-pray bots that are already &lt;a href="https://news.ycombinator.com/item?id=41756371" rel="noopener noreferrer"&gt;poisoning hiring pipelines&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Actually Does
&lt;/h2&gt;

&lt;p&gt;Mads Lorentzen — a PhD geophysicist who &lt;a href="https://www.linkedin.com/pulse/i-automated-my-job-search-made-process-more-human-mads-lorentzen-phd-38bje" rel="noopener noreferrer"&gt;lost his job and built this framework over three months&lt;/a&gt; — designed the system around four slash commands:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;/setup&lt;/code&gt;&lt;/strong&gt; builds your profile. Claude interviews you about your background, skills, and career goals, then assembles a structured profile from your CV, LinkedIn exports, diplomas, and reference letters. This isn't a quick form — expect to spend 30+ minutes here if you want outputs that actually differentiate you. The system also supports an &lt;code&gt;/expand&lt;/code&gt; command that crawls your GitHub repos, portfolio sites, and Google Scholar to surface competencies you might not think to mention.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;/scrape&lt;/code&gt;&lt;/strong&gt; searches job portals, deduplicates results, and ranks every posting against your profile across five dimensions: skills match, experience relevance, cultural alignment, location fit, and career trajectory logic. The portal search skills ship with Danish job boards (Jobindex, Jobnet, Akademikernes Jobbank), but the architecture is designed for swapping — there's a &lt;code&gt;/add-portal&lt;/code&gt; command that generates search skills for any local job board. A &lt;code&gt;linkedin-search&lt;/code&gt; skill uses LinkedIn's unauthenticated public endpoints for country-agnostic coverage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;/apply&lt;/code&gt;&lt;/strong&gt; is where the drafter-reviewer architecture kicks in. One Claude agent drafts a tailored CV and cover letter. A second agent — spawned with a fresh context so it has no loyalty to the first draft — researches the company independently and critiques the output for missed keywords, weak framing, inflated claims, and generic language. The first agent revises. Then the system compiles PDFs via LaTeX (lualatex for CVs, xelatex for cover letters), extracts the text layer with &lt;code&gt;pdftotext&lt;/code&gt;, and runs an ATS verification pass that checks reading order, contact details, and keyword coverage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;/interview&lt;/code&gt;&lt;/strong&gt; builds stage-specific prep packs from archived application materials, researches the company and interviewers, maps STAR examples to likely questions, and runs mock interviews. It bridges knowledge gaps without fabricating experience.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The honesty constraint is structural, not aspirational.&lt;/strong&gt; ai-job-search never fabricates skills. The ATS keyword check adds keywords your profile genuinely supports and surfaces gaps as gaps — visible to you, flagged for the reviewer agent. If the system can't honestly bridge a gap, it says so. That's the difference between "AI that helps you apply" and "AI that lies for you."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Architecture That Matters
&lt;/h2&gt;

&lt;p&gt;Most AI job application tools follow a predictable pattern: ingest a job posting, generate a cover letter, maybe swap some resume bullet points. ai-job-search's drafter-reviewer separation is a fundamentally different design — and it's the real reason this repo exploded.&lt;/p&gt;

&lt;p&gt;Here's why the pattern works. A single LLM pass on a cover letter tends to produce competent-sounding but generic output. It hits the right keywords, uses professional language, and sounds like every other AI-generated letter in the stack. The hiring manager who reads 50 of these a day can spot them instantly.&lt;/p&gt;

&lt;p&gt;The reviewer agent breaks this pattern. Because it's spawned with a fresh context, it approaches the draft like a hostile reader — exactly what the hiring manager will be. It checks whether the letter actually addresses the company's specific challenges (not just the job title), whether the CV emphasizes the right projects for this role (not just the most impressive ones), and whether any claims stretch beyond what the profile supports.&lt;/p&gt;

&lt;p&gt;This is the same pattern that experienced career coaches use: write a draft, then have someone else read it as if they're the hiring manager looking for reasons to say no. ai-job-search automates the second opinion.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;The pattern generalizes.&lt;/strong&gt; Any high-stakes agent workflow — contract drafting, grant proposals, client presentations — benefits from adversarial review by a second agent with fresh context. If you're building agent systems, study this repo's &lt;code&gt;.agents/skills/&lt;/code&gt; directory and &lt;code&gt;.claude/commands/&lt;/code&gt; structure for the implementation pattern.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/BkHnzW7vWaA"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  The Operator's Guide: Fork to First Application
&lt;/h2&gt;

&lt;p&gt;If you want to run this yourself, here's the actual path:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prerequisites:&lt;/strong&gt; Claude Code CLI, Python 3.10+, Bun (for the job search CLI tools), and a LaTeX distribution with lualatex and xelatex. On macOS, &lt;code&gt;brew install --cask mactex&lt;/code&gt; handles the LaTeX dependency. Optional but recommended: &lt;code&gt;pdftotext&lt;/code&gt; (from poppler) for ATS text extraction.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1: Fork and clone.&lt;/strong&gt; Don't just clone — fork first. The framework is designed around your personal profile data living in the repo. Your &lt;code&gt;CLAUDE.md&lt;/code&gt; becomes your career profile.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2: Run &lt;code&gt;/setup&lt;/code&gt;.&lt;/strong&gt; This is the make-or-break step. Give it your CV PDF, LinkedIn export, and any other career documents. The more you invest here, the better the downstream outputs. Lorentzen himself reports that the structured self-reflection in &lt;code&gt;/setup&lt;/code&gt; — not the automated applications — &lt;a href="https://www.linkedin.com/pulse/i-automated-my-job-search-made-process-more-human-mads-lorentzen-phd-38bje" rel="noopener noreferrer"&gt;delivered the most value&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3: Add your local job boards.&lt;/strong&gt; If you're not in Denmark, run &lt;code&gt;/add-portal&lt;/code&gt; with your preferred job sites. The system investigates URL patterns, result structures, and access rules, then scaffolds CLI skills and test-runs queries. LinkedIn search works out of the box.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4: &lt;code&gt;/scrape&lt;/code&gt; and review.&lt;/strong&gt; Don't apply to everything that scores well. The fit evaluation is a starting point for your judgment, not a replacement for it. Use &lt;code&gt;/rank&lt;/code&gt; for batch-scoring when you have a large result set.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5: &lt;code&gt;/apply&lt;/code&gt; with oversight.&lt;/strong&gt; Read every cover letter before sending. Check that the CV emphasis matches the role. The reviewer agent catches a lot, but you know your career story better than any model.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/zNW6R5Oqo3U"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;What ai-job-search does NOT do:&lt;/strong&gt; It does not auto-submit applications. It does not log into job portals on your behalf. It does not fabricate credentials. Every application passes through a human review checkpoint before anything leaves your machine. If someone forks this and removes those guardrails, they're building a different (and worse) tool.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What the Community Is Saying
&lt;/h2&gt;

&lt;p&gt;The reception has been overwhelmingly positive — but the most interesting commentary isn't about the tool itself. It's about what the tool represents in the 2026 job market.&lt;/p&gt;

&lt;p&gt;On X, &lt;a href="https://x.com/dashboardlim/status/2062979164630614266" rel="noopener noreferrer"&gt;Lian Lim highlighted the three-command simplicity&lt;/a&gt;: "/setup, /scrape, /apply — three commands run the entire pipeline." The fork-to-star ratio — over 5,600 forks against 19,500 stars — signals that people aren't just bookmarking this. They're using it.&lt;/p&gt;

&lt;p&gt;On Threads, &lt;a href="https://www.threads.com/@swadesh_srivastava_/post/DZJrpAej0x8/" rel="noopener noreferrer"&gt;Swadesh Srivastava noted&lt;/a&gt; that "a fork-to-star ratio that high means people are using it, not only bookmarking" and emphasized that Lorentzen "is not a startup founder. He built this because he needed it for himself, then shared it."&lt;/p&gt;

&lt;p&gt;But the counterpoint is sharp. The &lt;a href="https://news.ycombinator.com/item?id=41756371" rel="noopener noreferrer"&gt;HN thread on AIHawk&lt;/a&gt; (a mass-application bot) drew 64 comments, and the dominant concern was systemic: "tools like this are clogging job inboxes with hundreds of submissions per day." One hiring manager reported receiving &lt;strong&gt;800 applications within 24 hours&lt;/strong&gt; for a single role — 30% of which were ghost applications from non-responsive candidates. Another noted that "50% LLM generated cover letters" in recent batches led to instant rejections.&lt;/p&gt;

&lt;p&gt;The tragedy-of-the-commons dynamic is real: individual automation seems rational, but collective adoption makes everyone's prospects worse, and opting out unilaterally guarantees disadvantage.&lt;/p&gt;

&lt;p&gt;ai-job-search's design directly addresses this. By forcing structured self-reflection (&lt;code&gt;/setup&lt;/code&gt;), adversarial review (the drafter-reviewer split), and human oversight (no auto-submit), it trades volume for signal quality. As Aakash Gupta argues in his &lt;a href="https://www.news.aakashg.com/p/job-search-os" rel="noopener noreferrer"&gt;Job Search OS analysis&lt;/a&gt;: "Mass-applying with AI doesn't work. The people getting hired apply to fewer roles with surgical targeting."&lt;/p&gt;

&lt;h2&gt;
  
  
  The Ecosystem: ai-job-search Isn't Alone
&lt;/h2&gt;

&lt;p&gt;ai-job-search is the standout, but the "automate yourself getting hired" wave is broader than one repo:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://github.com/santifer/career-ops" rel="noopener noreferrer"&gt;career-ops&lt;/a&gt;&lt;/strong&gt; takes a similar approach but supports multiple AI CLIs (Claude Code, Gemini, Codex, OpenCode). It scores listings A-F and tracks applications across portals.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://news.ycombinator.com/item?id=47226471" rel="noopener noreferrer"&gt;ApplyPilot&lt;/a&gt;&lt;/strong&gt; took the spray-and-pray route and got 500 stars and "500K views on Reddit" in a week — but the sole HN comment asked the question that matters: "how many interviews would you get applying to 1000 jobs?"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The distinction that matters: tools built around volume versus tools built around fit. ai-job-search is firmly in the fit camp, and the market signal suggests that's where practitioners are moving.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where a Human Still Has to Gate It
&lt;/h2&gt;

&lt;p&gt;ai-job-search is good. It's not a replacement for career judgment. Here's where the human remains load-bearing:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Profile accuracy.&lt;/strong&gt; &lt;code&gt;/setup&lt;/code&gt; builds from what you give it. If your documents understate your experience or omit key projects, the system has no way to compensate. Garbage in, polished garbage out.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Cultural fit assessment.&lt;/strong&gt; The five-dimension scoring includes "cultural alignment," but no model can reliably assess company culture from a job posting. Use it as a prompt for your own research, not a verdict.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Salary negotiation.&lt;/strong&gt; The system includes salary benchmarking from Danish engineering union data, but actual negotiation requires reading the room — something agents can't do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Networking.&lt;/strong&gt; Lorentzen himself notes that his "speculative outreach" — contacting companies without posted positions — generated some of his best conversations. That's a human play. The agent handles the transactional pipeline; the relationship-building stays with you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The final send.&lt;/strong&gt; Never auto-submit. Read the cover letter as if you're the hiring manager. If it sounds like AI wrote it, it probably still does — and that's your cue to edit.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Lorentzen's own results are instructive.&lt;/strong&gt; After approximately 30 targeted applications across energy, defense, AI consulting, and data science, he reported multiple interview invitations including second-round interviews, one voluntary withdrawal after a clear misalignment — and, candidly, "no job offer yet" at the time of writing. The tool works. It doesn't perform miracles.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What This Says About the 2026 Job Market
&lt;/h2&gt;

&lt;p&gt;The fact that a job application agent hit #1 on GitHub trending — above every AI model, every framework, every developer tool — tells you something about where the pain is. Developers aren't building this because it's technically interesting (the Claude Code plumbing is straightforward). They're building it because applying for jobs in 2026 is genuinely broken.&lt;/p&gt;

&lt;p&gt;ai-job-search is one answer: don't fight the noise, but don't add to it either. Use the agent to do the tedious parts (scraping, formatting, ATS optimization) while keeping the human in the loop for the parts that actually matter (fit evaluation, story-telling, relationship-building).&lt;/p&gt;

&lt;p&gt;The drafter-reviewer pattern is the architectural insight worth carrying forward. Not just for job applications, but for any agent workflow where the output has to survive adversarial scrutiny. Every agent that writes something a human will judge should have a second agent reading it first.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Fork &lt;a href="https://github.com/MadsLorentzen/ai-job-search" rel="noopener noreferrer"&gt;MadsLorentzen/ai-job-search&lt;/a&gt;. Install the prerequisites (Claude Code, Python 3.10+, Bun, LaTeX). Run &lt;code&gt;/setup&lt;/code&gt;. Invest the time.&lt;/p&gt;

&lt;p&gt;Then &lt;code&gt;/scrape&lt;/code&gt;. Then &lt;code&gt;/apply&lt;/code&gt; — one posting at a time, reviewing every output. The tool is a force multiplier, not an autopilot.&lt;/p&gt;

&lt;p&gt;And if you're building agent systems outside of job search: study the &lt;code&gt;.agents/skills/&lt;/code&gt; directory. The drafter-reviewer separation, the ATS verification gate, the honest-keyword constraint — these patterns generalize. The next wave of useful agents won't be the ones that do everything automatically. They'll be the ones that know when to ask for a second opinion.&lt;/p&gt;

</description>
      <category>aiagents</category>
      <category>claudecode</category>
      <category>opensource</category>
      <category>jobsearch</category>
    </item>
    <item>
      <title>Muse Spark 1.1 Lands with a $1.25 API and Day-One CLI</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Fri, 10 Jul 2026 03:43:56 +0000</pubDate>
      <link>https://dev.to/max_quimby/muse-spark-11-lands-with-a-125-api-and-day-one-cli-1phc</link>
      <guid>https://dev.to/max_quimby/muse-spark-11-lands-with-a-125-api-and-day-one-cli-1phc</guid>
      <description>&lt;h1&gt;
  
  
  Muse Spark 1.1 Lands with a $1.25 API and Day-One CLI
&lt;/h1&gt;

&lt;p&gt;Mark Zuckerberg dusted off his &lt;a href="https://x.com/finkd/status/2075218444056707458" rel="noopener noreferrer"&gt;@finkd&lt;/a&gt; handle on July 9, 2026 — his first post on X in three years — to announce &lt;strong&gt;Muse Spark 1.1&lt;/strong&gt;, Meta's first paid developer model, served through the brand-new &lt;strong&gt;Meta Model API&lt;/strong&gt;. The timing was deliberate: SpaceXAI had shipped Grok 4.5 the day before, and GPT-5.6 Sol was rumored for Thursday. But where those launches led with benchmark tables, Zuckerberg led with a price tag: &lt;strong&gt;$1.25 per million input tokens, $4.25 per million output tokens.&lt;/strong&gt; That is roughly 60% cheaper than Claude Sonnet 5 and within spitting distance of Haiku-tier pricing — from a company with zero margin pressure on its AI division.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;strong&gt;&lt;a href="https://computeleap.com/blog/meta-muse-spark-open-weight-frontier" rel="noopener noreferrer"&gt;Read the full version with embedded sources on ComputeLeap →&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://x.com/finkd/status/2075218444056707458" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fdwrup0mkk61nwg99q2zf.png" alt="@finkd (Mark Zuckerberg) — Today we're releasing Muse Spark 1.1 -- a strong agentic and coding model at a very low price" width="800" height="351"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/finkd/status/2075218444056707458" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The model-war framing has been &lt;a href="https://dev.to/blog/48-hour-frontier-release-war-opus-class-benchmarks-2026"&gt;covered extensively&lt;/a&gt;. This article is about something more useful: what Muse Spark 1.1 actually ships, how to hit the API today, what Simon Willison's same-day CLI plugin tells us about the API surface, and whether the benchmarks hold up under scrutiny.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Muse Spark 1.1 Actually Is
&lt;/h2&gt;

&lt;p&gt;Muse Spark 1.1 is a &lt;strong&gt;natively multimodal reasoning model&lt;/strong&gt; from &lt;a href="https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/" rel="noopener noreferrer"&gt;Meta Superintelligence Labs&lt;/a&gt; — the rebranded research division that replaced FAIR. It accepts text, images, video, PDFs, and audio as input and produces text output. The key specs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;1 million token context window&lt;/strong&gt; with active context management — the model compresses and retrieves from its own context mid-generation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Native multimodal perception&lt;/strong&gt; — not a vision encoder bolted onto a text model, but a unified architecture that reasons across modalities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Agentic capabilities&lt;/strong&gt; — parallel tool calling, structured output, built-in search with citations, multi-agent orchestration, and computer use across desktop, mobile, and browser&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI-compatible API&lt;/strong&gt; — drop-in replacement for existing OpenAI SDK integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Meta claims Muse Spark 1.1 uses over an order of magnitude less compute than Llama 4 Maverick for comparable reasoning tasks. If true, this is a genuine architectural efficiency gain, not just a benchmark optimization — and it explains how Meta can afford to price the API this aggressively.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The practical upshot: this is a frontier-adjacent model that does multimodal reasoning, agentic tool use, and coding — and Meta is selling access at commodity prices.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Meta Model API: What Developers Get
&lt;/h2&gt;

&lt;p&gt;This is Meta's first serious developer API. Not a research preview, not a waitlist — a &lt;a href="https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/" rel="noopener noreferrer"&gt;public preview&lt;/a&gt; with pricing, SDKs, and documentation. Here is what matters:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Access:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Public preview for US-based developers (international rollout TBD)&lt;/li&gt;
&lt;li&gt;$20 in free credits per new account&lt;/li&gt;
&lt;li&gt;OpenAI-compatible endpoint — swap the base URL and API key, keep your existing code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Pricing (per million tokens):&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Input&lt;/th&gt;
&lt;th&gt;Output&lt;/th&gt;
&lt;th&gt;Cached Input&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Muse Spark 1.1&lt;/td&gt;
&lt;td&gt;$1.25&lt;/td&gt;
&lt;td&gt;$4.25&lt;/td&gt;
&lt;td&gt;$0.15&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Sonnet 5&lt;/td&gt;
&lt;td&gt;$3.00&lt;/td&gt;
&lt;td&gt;$15.00&lt;/td&gt;
&lt;td&gt;$0.30&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.5&lt;/td&gt;
&lt;td&gt;$2.00&lt;/td&gt;
&lt;td&gt;$8.00&lt;/td&gt;
&lt;td&gt;—&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Haiku 4.5&lt;/td&gt;
&lt;td&gt;$0.80&lt;/td&gt;
&lt;td&gt;$4.00&lt;/td&gt;
&lt;td&gt;$0.08&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The pricing slots Muse Spark between Haiku (the budget tier) and Sonnet/GPT mid-tier — but with frontier-class ambitions. Cached input at $0.15/M tokens is particularly aggressive for agentic workloads where the system prompt and tool definitions repeat across calls.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="c1"&gt;# Meta Model API — OpenAI-compatible
&lt;/span&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;openai&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;OpenAI&lt;/span&gt;

&lt;span class="n"&gt;client&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;OpenAI&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="n"&gt;base_url&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://api.meta.ai/v1&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;api_key&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;your-meta-api-key&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;chat&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;completions&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;create&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;muse-spark-1.1&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;messages&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;
        &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;role&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;user&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;content&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Explain the CAP theorem in three sentences.&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;],&lt;/span&gt;
    &lt;span class="n"&gt;max_tokens&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mi"&gt;256&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;choices&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;].&lt;/span&gt;&lt;span class="n"&gt;message&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;content&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you have ever integrated the OpenAI SDK, you already know how to use the Meta Model API. That is the point.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/oO7e5eO2VF8"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Simon Willison's Same-Day Plugin: The Real Signal
&lt;/h2&gt;

&lt;p&gt;Within hours of the Meta Model API going live, &lt;a href="https://simonwillison.net/2026/Jul/9/muse-spark-1-1/" rel="noopener noreferrer"&gt;Simon Willison&lt;/a&gt; — the developer behind Datasette and the LLM CLI framework — shipped &lt;strong&gt;llm-meta-ai&lt;/strong&gt;, a plugin that gives you Muse Spark 1.1 access from your terminal.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://simonwillison.net/2026/Jul/9/muse-spark-1-1/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frp6pgmqkiwnsycg0paxx.png" alt="Simon Willison's blog post — Introducing Muse Spark 1.1, with llm-meta-ai plugin details and SVG generation example" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://simonwillison.net/2026/Jul/9/muse-spark-1-1/" rel="noopener noreferrer"&gt;View original post on simonwillison.net →&lt;/a&gt;&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install and configure in under 60 seconds&lt;/span&gt;
uv tool &lt;span class="nb"&gt;install &lt;/span&gt;llm
llm &lt;span class="nb"&gt;install &lt;/span&gt;llm-meta-ai
llm keys &lt;span class="nb"&gt;set &lt;/span&gt;meta-ai
&lt;span class="c"&gt;# Paste your Meta Model API key&lt;/span&gt;

&lt;span class="c"&gt;# Use it&lt;/span&gt;
llm &lt;span class="nt"&gt;-m&lt;/span&gt; meta-ai/muse-spark-1.1 &lt;span class="s2"&gt;"Generate an SVG of a pelican riding a bicycle"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This matters more than any benchmark table. When a respected independent developer can read the API docs, write a working plugin, and ship it the same afternoon the API launches, that tells you three things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;The API surface is clean.&lt;/strong&gt; OpenAI-compatible means the entire ecosystem of LLM tooling — LangChain, LiteLLM, Willison's LLM framework — can integrate with minimal effort.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The documentation is adequate.&lt;/strong&gt; Developers do not ship same-day integrations against poorly documented APIs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The auth flow is not hostile.&lt;/strong&gt; No six-step OAuth dance, no enterprise sales call. Get a key, set it, go.&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; If you already use Willison's LLM CLI to interact with Claude, GPT, or local models, adding Muse Spark is a one-liner. The plugin supports the same prompt piping, conversation threading, and template features as every other LLM backend.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Benchmarks: Strong, but Read the Fine Print
&lt;/h2&gt;

&lt;p&gt;Meta's &lt;a href="https://ai.meta.com/static-resource/muse-spark-1-1-evaluation-report" rel="noopener noreferrer"&gt;evaluation report&lt;/a&gt; paints a nuanced picture. Muse Spark 1.1 excels at agentic tasks while trailing on raw coding benchmarks:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where Muse Spark 1.1 leads:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;JobBench:&lt;/strong&gt; 54.7 (vs. Opus 4.8: 48.4, GPT-5.5: 38.3) — multi-step agentic task completion&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP Atlas:&lt;/strong&gt; 88.1 — tool orchestration and structured output&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Humanity's Last Exam (with tools):&lt;/strong&gt; 62.1 (vs. Opus 4.8: 57.9) — complex reasoning with tool access&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Where it trails:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;SWE-Bench Pro:&lt;/strong&gt; 61.5 (vs. Opus 4.8: 69.2) — real-world software engineering&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DeepSWE 1.1:&lt;/strong&gt; 53.3 (vs. GPT-5.5: 67.0) — deep code understanding&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Terminal-Bench 2.0:&lt;/strong&gt; 59.0 (vs. GPT-5.4: 75.1, Gemini 3.1 Pro: 68.5) — terminal and shell tasks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://handyai.substack.com/p/model-drop-muse-spark-11" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fug872rd78anv6v3xdcdk.png" alt="Handy AI — Model Drop: Muse Spark 1.1 — detailed benchmark analysis and pricing comparison" width="799" height="549"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://handyai.substack.com/p/model-drop-muse-spark-11" rel="noopener noreferrer"&gt;View original post on Handy AI →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; Read this before trusting the leaderboard. A Hacker News commenter flagged that Meta's Terminal-Bench 2.1 submission allegedly used 6 CPU cores and 8GB RAM when the benchmark caps at 4 cores and 2GB. The model does not appear on the official Terminal-Bench leaderboard. Until independent evaluations confirm Meta's numbers, treat the agentic benchmarks as directional, not definitive.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The honest read: Muse Spark 1.1 is genuinely strong for agentic orchestration and multimodal understanding. It is not the best coding model — that crown stays with Opus 4.8 and Codex. But at this price point, "good enough at coding plus best-in-class at agent orchestration" is a compelling package for builders running multi-agent systems.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/6_m2SaAl5-0"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Zuckerberg's Margin Compression Play
&lt;/h2&gt;

&lt;p&gt;"The pricing from some of the other AI labs is very extreme and the margins are very high," Zuckerberg told &lt;a href="https://www.bloomberg.com/news/articles/2026-07-09/meta-starts-charging-for-ai-with-muse-spark-1-1-agentic-model" rel="noopener noreferrer"&gt;Bloomberg&lt;/a&gt; on launch day. That is the thesis statement for the entire release.&lt;/p&gt;

&lt;p&gt;Meta does not need AI API revenue to survive. Its advertising business prints money. The Meta Model API is a strategic weapon, not a profit center. The playbook:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Price below cost for pure-play AI labs&lt;/strong&gt; — at $1.25/$4.25, Meta can afford to operate at break-even or a loss on API revenue indefinitely&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Force competitors to match or lose developer share&lt;/strong&gt; — OpenAI and Anthropic cannot subsidize API pricing with ad revenue&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Commoditize the model layer&lt;/strong&gt; — if frontier-quality models are available at commodity prices, the value shifts to distribution (Meta's apps: WhatsApp, Instagram, Facebook, Ray-Ban Meta glasses) and the &lt;a href="https://dev.to/blog/anthropic-vs-openai-api-developer-platform-2026"&gt;platform ecosystem&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;One &lt;a href="https://news.ycombinator.com/item?id=48846184" rel="noopener noreferrer"&gt;Hacker News commenter&lt;/a&gt; put it bluntly: this is a "spoiler strategy" — commoditize coding models via aggressive pricing to deflate competitor revenue. Meta can afford to run the API as a loss leader because it monetizes AI through its consumer products, not through developer API margins.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Community Is Saying
&lt;/h2&gt;

&lt;p&gt;The Hacker News thread on Muse Spark 1.1 hit &lt;strong&gt;333 points and 174 comments&lt;/strong&gt; within hours — high engagement but heavily skeptical.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48846184" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5t9f89a708z727pzboi2.png" alt="Hacker News discussion — Muse Spark 1.1 — 333 points, 174 comments, heated debate on benchmarks and pricing" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://news.ycombinator.com/item?id=48846184" rel="noopener noreferrer"&gt;View on Hacker News →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The debate breaks into three camps:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The enthusiasts&lt;/strong&gt; point to the pricing as transformative. Cached input at $0.15/M tokens makes agentic workloads — where system prompts and tool definitions repeat across hundreds of calls — dramatically cheaper. For teams running multi-agent pipelines, switching from Sonnet at $3/$15 to Muse Spark at $1.25/$4.25 could cut API costs by 60-70%.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The skeptics&lt;/strong&gt; focus on two issues. First, the benchmark controversy: did Meta game Terminal-Bench by exceeding resource limits? If so, the agentic performance claims need independent verification. Second, the closed-weights pivot: Meta built its AI developer community on Llama's open weights, and Muse Spark 1.1 ships with zero download option. The community that made Llama a standard is being asked to trust a proprietary API.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The pragmatists&lt;/strong&gt; note that Meta said it has "a variant of Muse Spark that is in development that we do intend to open source." But no timeline was given, and "intend to" is not "will." As one commenter put it: "Meta's open-source goodwill is a depreciating asset. Every month without open weights draws down the balance."&lt;/p&gt;

&lt;p&gt;Elon Musk replied to Zuckerberg's announcement with a single word: "jinx" — SpaceXAI had shipped Grok 4.5 the day before with a similar "cheaper than the competition" pitch. The billionaire price war is real, and developers are the beneficiaries.&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;If you are building agentic workflows:&lt;/strong&gt; Muse Spark 1.1 is the strongest contender for multi-agent orchestration at this price tier. The 1M token context with active management, parallel tool calling, and native multimodal perception make it purpose-built for agent pipelines. Start with the $20 free credits and benchmark against your actual workloads — do not rely on Meta's published numbers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you are an API-first developer:&lt;/strong&gt; The OpenAI-compatible endpoint means zero switching cost. &lt;a href="https://simonwillison.net/2026/Jul/9/muse-spark-1-1/" rel="noopener noreferrer"&gt;Willison's LLM plugin&lt;/a&gt; lets you test from the CLI in under a minute. If you already use &lt;a href="https://dev.to/blog/run-claude-code-cheap-ollama-openrouter-guide-2026"&gt;OpenRouter or LiteLLM&lt;/a&gt;, expect Muse Spark 1.1 integration within days.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you depend on open weights:&lt;/strong&gt; Do not switch from Llama yet. Muse Spark 1.1 is API-only, US-only in preview, and Meta has not committed to an open-weights release timeline. Keep running your Llama infrastructure and evaluate the API as a supplement, not a replacement.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/vWqNowqpYjo"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The bottom line:&lt;/strong&gt; The model is good. The pricing is disruptive. The API surface is clean enough for same-day third-party tooling. But the benchmarks need independent verification, and the closed-weights pivot is a trust deficit Meta has not yet addressed. Use it, benchmark it, but do not bet your stack on it until the numbers are confirmed by someone other than Meta.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Meta Model API access: &lt;a href="https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/" rel="noopener noreferrer"&gt;ai.meta.com&lt;/a&gt; | Simon Willison's plugin: &lt;a href="https://simonwillison.net/2026/Jul/9/muse-spark-1-1/" rel="noopener noreferrer"&gt;llm-meta-ai&lt;/a&gt; | HN discussion: &lt;a href="https://news.ycombinator.com/item?id=48846184" rel="noopener noreferrer"&gt;333 points, 174 comments&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;




&lt;blockquote&gt;
&lt;p&gt;🔗 &lt;strong&gt;&lt;a href="https://computeleap.com/blog/meta-muse-spark-open-weight-frontier" rel="noopener noreferrer"&gt;Full article on ComputeLeap →&lt;/a&gt;&lt;/strong&gt; | Follow &lt;a href="https://x.com/ComputeLeapAI" rel="noopener noreferrer"&gt;@ComputeLeapAI&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>programming</category>
      <category>technology</category>
    </item>
    <item>
      <title>Your Model Is 'Opus-Class.' Now What?</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Thu, 09 Jul 2026 03:32:34 +0000</pubDate>
      <link>https://dev.to/max_quimby/your-model-is-opus-class-now-what-26k8</link>
      <guid>https://dev.to/max_quimby/your-model-is-opus-class-now-what-26k8</guid>
      <description>&lt;p&gt;Elon Musk shipped &lt;a href="https://x.ai/news/grok-4-5" rel="noopener noreferrer"&gt;Grok 4.5&lt;/a&gt; on July 8, 2026 with a phrase that tells you more about the AI industry than any benchmark table: "an Opus-class model, but faster, more token-efficient and lower cost." Hours later, Sam Altman tweeted that &lt;a href="https://x.com/sama/status/2074709023807664454" rel="noopener noreferrer"&gt;GPT-5.6 Sol launches Thursday&lt;/a&gt;. Meta debuted &lt;a href="https://ai.meta.com/blog/introducing-muse-image-muse-video-msl/" rel="noopener noreferrer"&gt;Muse Image and Muse Video&lt;/a&gt; — its first media-generation models built as agentic systems. Three frontier releases in 48 hours. But the real story isn't the models. It's the language.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;a href="https://computeleap.com/blog/48-hour-frontier-release-war-opus-class-benchmarks-2026" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on ComputeLeap →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;"Opus-class" is now the AI industry's yardstick. When the CEO of SpaceXAI defines his flagship model by referencing Anthropic's architecture — not by its own merits — he's conceding the capability frontier while repositioning the competition around cost, speed, and distribution. And he's not alone. OpenAI's GPT-5.6 family (Luna at $1/$6, Terra mid-tier, Sol at $5/$30) is a pricing strategy dressed as a product launch. Nvidia's Jensen Huang is &lt;a href="https://www.benzinga.com/markets/tech/26/07/60271979/jason-calacanis-says-nvidia-is-taking-the-gloves-off-with-nemotron-predicts-jensen-huang-will-challenge-openai-anthropic-by-owning-the-whole-ai-stack" rel="noopener noreferrer"&gt;pitching open-source Nemotron&lt;/a&gt; as the cost disruptor that collapses the entire closed-model business model. The model race didn't end this week — it just moved from "who's smartest" to "who's cheapest per quality tier."&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/elonmusk/status/2074740539874775163" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmgg8bcg9118wuwxwbx89.png" alt="@elonmusk — Grok 4.5 is an Opus-class model, but faster, more token-efficient and lower cost — 44.6K likes" width="800" height="407"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/elonmusk/status/2074740539874775163" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What Shipped This Week — and What It Actually Means
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Grok 4.5: The Cursor Play
&lt;/h3&gt;

&lt;p&gt;SpaceXAI's &lt;a href="https://techcrunch.com/2026/07/08/spacexai-releases-grok-4-5-which-elon-describes-as-an-opus-class-model/" rel="noopener noreferrer"&gt;Grok 4.5&lt;/a&gt; is built on a 1.5-trillion-parameter V9 foundation and trained alongside Cursor, the AI coding editor SpaceX acquired for $60 billion in June. Musk's internal assessment: "roughly comparable to Opus 4.7, but much faster."&lt;/p&gt;

&lt;p&gt;The pricing is the sharpest signal. Grok 4.5 launches at &lt;strong&gt;$2 per million input tokens&lt;/strong&gt; and &lt;strong&gt;$6 per million output tokens&lt;/strong&gt;. For comparison:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Input $/MTok&lt;/th&gt;
&lt;th&gt;Output $/MTok&lt;/th&gt;
&lt;th&gt;Speed Claim&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Grok 4.5&lt;/td&gt;
&lt;td&gt;$2&lt;/td&gt;
&lt;td&gt;$6&lt;/td&gt;
&lt;td&gt;"Much faster" than Opus 4.7&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Opus 4.7&lt;/td&gt;
&lt;td&gt;$5&lt;/td&gt;
&lt;td&gt;$25&lt;/td&gt;
&lt;td&gt;Benchmark leader&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.6 Sol&lt;/td&gt;
&lt;td&gt;$5&lt;/td&gt;
&lt;td&gt;$30&lt;/td&gt;
&lt;td&gt;"Frontier intelligence"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;GPT-5.6 Luna&lt;/td&gt;
&lt;td&gt;$1&lt;/td&gt;
&lt;td&gt;$6&lt;/td&gt;
&lt;td&gt;Budget tier&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;That's a &lt;strong&gt;60% discount on input&lt;/strong&gt; and &lt;strong&gt;76% discount on output&lt;/strong&gt; versus Opus 4.7. For a team running 100 million output tokens per month, that's the difference between a $2,500 bill and a $600 bill.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/SpaceXAI/status/2074915721684086811" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fko5aaok1psxsoh12p5n2.png" alt="@SpaceXAI — our first model trained specifically for coding and agents" width="800" height="901"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/SpaceXAI/status/2074915721684086811" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/NEm__cfQ7Pc"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  GPT-5.6 Sol: The Government-Gated Launch
&lt;/h3&gt;

&lt;p&gt;OpenAI's &lt;a href="https://openai.com/index/previewing-gpt-5-6-sol/" rel="noopener noreferrer"&gt;GPT-5.6&lt;/a&gt; is perhaps the most capable model never freely available. Previewed on June 26 to &lt;a href="https://www.cnbc.com/2026/07/08/openai-expanding-gpt-5point6-ai-model-release-ending-government-limits.html" rel="noopener noreferrer"&gt;roughly 20 trusted partner organizations&lt;/a&gt;, it remains gated behind a U.S. government safety review. Sam Altman's &lt;a href="https://x.com/sama/status/2074709023807664454" rel="noopener noreferrer"&gt;Thursday launch announcement&lt;/a&gt; signals broader availability is imminent.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/sama/status/2074709023807664454" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffnh3x1v3ho62rwft24oj.png" alt="@sama — GPT-5.6 sol launches thursday! happy building — 29K likes" width="800" height="379"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/sama/status/2074709023807664454" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Meta Muse: The Agentic Turn
&lt;/h3&gt;

&lt;p&gt;Meta's &lt;a href="https://techcrunch.com/2026/07/07/meta-rolls-out-muse-a-new-ai-image-generator/" rel="noopener noreferrer"&gt;Muse Image and Muse Video&lt;/a&gt; — the first models from Meta Superintelligence Labs — are architecturally fascinating. Muse Image doesn't just map prompts to pixels. It &lt;a href="https://x.com/AIatMeta/status/2074587864923250873" rel="noopener noreferrer"&gt;works as an agent&lt;/a&gt;: invoking tools, self-refining outputs, and improving with scaled test-time compute.&lt;/p&gt;

&lt;h3&gt;
  
  
  Nvidia's Open-Source Wedge
&lt;/h3&gt;

&lt;p&gt;Jensen Huang is running a different play entirely. &lt;a href="https://www.youtube.com/watch?v=Yy3JH6dDugc" rel="noopener noreferrer"&gt;In a LangChain interview&lt;/a&gt;, Huang argued that companies need open agent systems — and Nvidia's Nemotron family is positioned as the open-weight alternative to every closed frontier model.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/Yy3JH6dDugc"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  The Polymarket Signal: Fragile Consensus
&lt;/h2&gt;

&lt;p&gt;On &lt;a href="https://polymarket.com/event/which-company-has-best-ai-model-end-of-july-299" rel="noopener noreferrer"&gt;Polymarket's "best AI model end of July" market&lt;/a&gt;, Anthropic sits at &lt;strong&gt;84%&lt;/strong&gt; with $2.1 million in liquidity. Google trails at 10%, OpenAI at 5%.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ &lt;strong&gt;Contrarian Corner:&lt;/strong&gt; When one company is the favorite for first, second, AND third simultaneously, traders aren't pricing model differentiation — they're pricing brand dominance. That's a fragile setup. It takes exactly one credible Google or OpenAI release to unwind three positions at once.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/PFiPw9ouUis"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Community Is Saying
&lt;/h2&gt;

&lt;p&gt;The &lt;a href="https://news.ycombinator.com/item?id=48835111" rel="noopener noreferrer"&gt;Grok 4.5 Hacker News thread&lt;/a&gt; lit up within hours. On X, Elvis Saravia (@omarsar0) &lt;a href="https://x.com/omarsar0/status/2074857582536130882" rel="noopener noreferrer"&gt;put it bluntly&lt;/a&gt;: "Loyalty to a single model provider is a terrible strategy. The smart choice: clever orchestration between frontier closed and open models."&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/omarsar0/status/2074857582536130882" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F23blw3eymfmxbz68c06d.png" alt="@omarsar0 — Multi-model orchestration thesis" width="800" height="520"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;a href="https://x.com/omarsar0/status/2074857582536130882" rel="noopener noreferrer"&gt;View original post on X →&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Multi-model routing is no longer optional.&lt;/strong&gt; With Grok 4.5 at 1/4 the cost of Opus for "roughly comparable" quality, the ROI case for single-provider loyalty is dead.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Watch the distribution, not the benchmarks.&lt;/strong&gt; Grok's day-one availability in Cursor and Vercel matters more than its SWE-bench score.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. "Opus-class" has a 72-hour shelf life.&lt;/strong&gt; Build systems that can swap models at the API layer without rewriting your application logic.&lt;/p&gt;

&lt;p&gt;The smartest thing you can do right now isn't picking a winner. It's building infrastructure that doesn't care who wins.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/J_ND-STbzmY"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://computeleap.com/blog/48-hour-frontier-release-war-opus-class-benchmarks-2026" rel="noopener noreferrer"&gt;ComputeLeap&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>llm</category>
      <category>programming</category>
    </item>
    <item>
      <title>Tencent Hy3: 295B Params, 21B Active — Can You Run It?</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Wed, 08 Jul 2026 03:38:56 +0000</pubDate>
      <link>https://dev.to/max_quimby/tencent-hy3-295b-params-21b-active-can-you-run-it-afe</link>
      <guid>https://dev.to/max_quimby/tencent-hy3-295b-params-21b-active-can-you-run-it-afe</guid>
      <description>&lt;h1&gt;
  
  
  Tencent Hy3: 295B Params, 21B Active — Can You Run It?
&lt;/h1&gt;

&lt;p&gt;Tencent just dropped &lt;a href="https://github.com/Tencent-Hunyuan/Hy3" rel="noopener noreferrer"&gt;Hy3&lt;/a&gt;, a 295-billion-parameter Mixture-of-Experts model with 21 billion active parameters per token, under an Apache 2.0 license. The headline numbers invite a specific fantasy: a frontier-class model that activates only 21B parameters should run on a beefy workstation, right? That fantasy is wrong — and the reason it's wrong tells you more about where open-weights AI is actually heading than any benchmark table.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;a href="https://computeleap.com/blog/tencent-hunyuan-hy3-open-weights-run-locally-2026" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on ComputeLeap →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Here's the thesis: Hy3's real innovation isn't the model. It's the licensing strategy. While Meta gates Llama behind revenue caps and registration requirements, Tencent shipped genuinely permissive weights for a model that &lt;a href="https://gigazine.net/gsc_news/en/20260707-tencent-ai-hy3/" rel="noopener noreferrer"&gt;trades blows with GLM-5.2 and DeepSeek-V4-Pro&lt;/a&gt; — models two to five times its size. The "Can You Run It?" question has a clear answer (not locally, not without serious iron), but the "Should You Use It?" question is where things get interesting.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/testingcatalog/status/2074107127849791552" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ff6l70cz0q9xsdfwx4uuq.png" alt="@testingcatalog tweet showing Hy3 benchmark scores" width="753" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Architecture Deep-Dive: How 295B Becomes 21B
&lt;/h2&gt;

&lt;p&gt;Hy3's architecture is a &lt;a href="https://github.com/Tencent-Hunyuan/Hy3" rel="noopener noreferrer"&gt;dense-attention, sparse-FFN Mixture-of-Experts&lt;/a&gt; design. The specifics: 80 transformer layers (plus one Multi-Token Prediction layer), 64 attention heads with Grouped Query Attention, and 192 routed experts per MoE layer with one always-active shared expert. A learned router picks the top 8 experts per token — so out of 295B total parameters, only ~21B fire on any given forward pass.&lt;/p&gt;

&lt;p&gt;The MTP layer deserves attention. It enables speculative decoding in frameworks like &lt;a href="https://huggingface.co/tencent/Hy3" rel="noopener noreferrer"&gt;vLLM and SGLang&lt;/a&gt;, predicting multiple tokens ahead and verifying in parallel. Tencent reports this cuts time-to-first-token by 54% and end-to-end latency by 47% in production.&lt;/p&gt;

&lt;p&gt;The context window stretches to 256K tokens with a vocabulary of 120,832 — large enough to digest entire codebases or long documents without chunking. The model was &lt;a href="https://www.tencent.com/en-us/articles/2202386.html" rel="noopener noreferrer"&gt;rebuilt from scratch&lt;/a&gt; after the April preview, with post-training scaled up using feedback from 50+ internal Tencent products.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/9PZBf4tJRpA"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Benchmarks: Where Hy3 Wins (and Where It Doesn't)
&lt;/h2&gt;

&lt;p&gt;Let's be specific about what the numbers show.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where Hy3 excels:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.marktechpost.com/2026/07/06/tencent-releases-hy3-open-295b-moe-model/" rel="noopener noreferrer"&gt;GPQA Diamond&lt;/a&gt; (graduate-level science): &lt;strong&gt;90.4&lt;/strong&gt; — competitive with models 5× its active parameter count&lt;/li&gt;
&lt;li&gt;USAMO 2026 (math olympiad): &lt;strong&gt;72.0&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://gigazine.net/gsc_news/en/20260707-tencent-ai-hy3/" rel="noopener noreferrer"&gt;FrontierScience-Olympiad&lt;/a&gt;: surpasses GPT-5.5 on scientific research tasks&lt;/li&gt;
&lt;li&gt;Token efficiency: completes &lt;a href="https://gigazine.net/gsc_news/en/20260707-tencent-ai-hy3/" rel="noopener noreferrer"&gt;WorkBuddy agent tasks with 47.4% fewer tokens&lt;/a&gt; than GLM-5.2&lt;/li&gt;
&lt;li&gt;A blind expert evaluation with &lt;a href="https://www.marktechpost.com/2026/07/06/tencent-releases-hy3-open-295b-moe-model/" rel="noopener noreferrer"&gt;270 participants rated Hy3 at 2.67/4&lt;/a&gt;, outperforming GLM-5.1 (2.51/4), with particular strength in frontend development&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Where Hy3 falls short:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.marktechpost.com/2026/07/06/tencent-releases-hy3-open-295b-moe-model/" rel="noopener noreferrer"&gt;SWE-Bench Verified&lt;/a&gt; (real-world bug fixing): &lt;strong&gt;78.0&lt;/strong&gt; vs. GLM-5.2's &lt;strong&gt;84.2&lt;/strong&gt;. For repository-scale coding, GLM-5.2 still leads&lt;/li&gt;
&lt;li&gt;The gap isn't surprising — GLM-5.2 runs &lt;a href="https://winbuzzer.com/2026/07/06/tencent-releases-hy3-a-smaller-model-approaching-larger-flagship-performance-xcxwbn/" rel="noopener noreferrer"&gt;753B total / ~40B active parameters&lt;/a&gt;, roughly double Hy3's compute budget per token&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The cost-performance trade-off is where Hy3 shines. On &lt;a href="https://artificialanalysis.ai/models/hy3" rel="noopener noreferrer"&gt;Artificial Analysis&lt;/a&gt;, Hy3 prices at $0.12/M input tokens (median across comparable models: $0.59) and $0.43/M output tokens (median: $2.20). That's a 5× input cost advantage over the median.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.marktechpost.com/2026/07/06/tencent-releases-hy3-open-295b-moe-model/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Flm56wpvii7wwll2o9bt5.png" alt="MarkTechPost coverage of Tencent Hy3 release" width="800" height="689"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/4niRFwN1DtI"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;During the preview period, Hy3 &lt;a href="https://news.ycombinator.com/item?id=48317294" rel="noopener noreferrer"&gt;reached #1 in overall token usage&lt;/a&gt; on OpenRouter, #1 in coding, and #1 in tool calls with 15.4% market share across all providers. The &lt;a href="https://news.ycombinator.com/item?id=48317294" rel="noopener noreferrer"&gt;Hacker News community noticed&lt;/a&gt; before most of the tech press did — "the mysterious Hy3 LLM is topping OpenRouter rankings by a large margin" was the thread title that first surfaced the model in Western developer circles.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48317294" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fywoi72ezfopr7jqv37om.png" alt="Hacker News thread on Hy3 topping OpenRouter rankings" width="800" height="603"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Hardware Reality — Can You Actually Run It?
&lt;/h2&gt;

&lt;p&gt;This is where the "21B active" number gets misleading. In a Mixture-of-Experts architecture, &lt;strong&gt;all 295B weights must stay resident in GPU memory&lt;/strong&gt; — the router needs instant access to every expert to select the top-8. You cannot swap experts in and out of VRAM on demand without latency spikes that make the model unusable.&lt;/p&gt;

&lt;p&gt;Here's the &lt;a href="https://www.spheron.network/blog/deploy-hunyuan-3-gpu-cloud/" rel="noopener noreferrer"&gt;actual hardware math&lt;/a&gt;:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Configuration&lt;/th&gt;
&lt;th&gt;VRAM Required&lt;/th&gt;
&lt;th&gt;Use Case&lt;/th&gt;
&lt;th&gt;Cost (Spot)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;BF16 (full precision)&lt;/td&gt;
&lt;td&gt;~590 GB&lt;/td&gt;
&lt;td&gt;256K context, max throughput&lt;/td&gt;
&lt;td&gt;8× H200 SXM5 — $14.56/hr&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FP8 (quantized)&lt;/td&gt;
&lt;td&gt;~295 GB&lt;/td&gt;
&lt;td&gt;32–64K context, cost-optimized&lt;/td&gt;
&lt;td&gt;4× H200 SXM5 — $7.28/hr&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;KV cache (256K context)&lt;/td&gt;
&lt;td&gt;+80–120 GB&lt;/td&gt;
&lt;td&gt;Per concurrent sequence&lt;/td&gt;
&lt;td&gt;Additional overhead&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;For reference, a Mac Studio M4 Ultra maxes out at 512GB unified memory. Even the FP8 checkpoint (300GB on &lt;a href="https://huggingface.co/tencent/Hy3" rel="noopener noreferrer"&gt;Hugging Face&lt;/a&gt;) would consume over half of it, leaving almost nothing for the KV cache. A single NVIDIA H100 has 80GB of HBM3 — you'd need four of them just for the weights, and even then you're tight on context. &lt;strong&gt;Consumer hardware is not an option.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/lR_ABiVX7_k"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Compare this to models where "run it locally" actually works: &lt;a href="https://computeleap.com/blog/gemma-4-12b-encoder-free-best-local-coding-llm-2026" rel="noopener noreferrer"&gt;Gemma 4 12B&lt;/a&gt; fits in 8GB VRAM. DeepSeek's distilled models run on a &lt;a href="https://computeleap.com/blog/how-to-run-ai-locally-2026" rel="noopener noreferrer"&gt;single GPU&lt;/a&gt;. Even &lt;a href="https://computeleap.com/blog/glm-5-2-local-setup-open-model-nobody-can-ban-2026" rel="noopener noreferrer"&gt;GLM-5.2's local setup&lt;/a&gt; is documented for multi-GPU workstations. Hy3 is firmly in cloud-or-datacenter territory.&lt;/p&gt;

&lt;p&gt;But here's the thing: the economics still work. Self-hosted Hy3 on 8× H200 spot instances runs &lt;a href="https://www.spheron.network/blog/deploy-hunyuan-3-gpu-cloud/" rel="noopener noreferrer"&gt;$0.90–$1.62 per million output tokens&lt;/a&gt; — compare that to GPT-4o at $10/M or Claude Opus at $75/M. And via API, the free OpenRouter period runs through July 21, after which pricing stays well below the median.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/NousResearch/status/2074260103469892045" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fy9zmmogfqbnpit57kazg.png" alt="Nous Research tweet — Hy3 free on Nous Portal" width="768" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Apache 2.0 vs. Llama's Fine Print
&lt;/h2&gt;

&lt;p&gt;This is the part of the Hy3 release that matters most for anyone building production systems.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://simonwillison.net/2026/Jul/6/hy3/#atom-everything" rel="noopener noreferrer"&gt;Simon Willison's read&lt;/a&gt; nails it: Apache 2.0 is a direct undercut of Meta's gated approach with Llama. Here's what that means in practice:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Hy3 (Apache 2.0)&lt;/th&gt;
&lt;th&gt;Llama (Meta License)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Commercial use&lt;/td&gt;
&lt;td&gt;Unrestricted&lt;/td&gt;
&lt;td&gt;Revenue cap (varies by version)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Geographic restrictions&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;td&gt;Embargo-country exclusions&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Registration required&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;Must register with Meta&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Derivative models&lt;/td&gt;
&lt;td&gt;Full freedom&lt;/td&gt;
&lt;td&gt;Must include "Built with Llama"&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fine-tuning &amp;amp; redistribution&lt;/td&gt;
&lt;td&gt;Standard Apache terms&lt;/td&gt;
&lt;td&gt;Subject to Meta's acceptable use policy&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;For startups and enterprises alike, this matters. If you're building a product on open weights and your legal team has to review Meta's licensing terms — which change across Llama versions and include provisions about competitive use — Apache 2.0 eliminates that entire conversation. You know what you're getting.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://simonwillison.net/2026/Jul/6/hy3/#atom-everything" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fg0lyutehek5stac02ypg.png" alt="Simon Willison's blog post on Tencent Hy3 — Apache 2.0 licensing" width="800" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ &lt;strong&gt;Contrarian Corner: China's Agent Stack Play&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The dominant narrative frames Hy3 as "China catching up" in open weights. That framing misses what's actually happening. On the same day Tencent released Hy3, they also shipped &lt;a href="https://github.com/TencentCloud/CubeSandbox" rel="noopener noreferrer"&gt;CubeSandbox&lt;/a&gt; (agent sandboxing in Rust, 8.3K stars) and &lt;a href="https://github.com/TencentCloud/TencentDB-Agent-Memory" rel="noopener noreferrer"&gt;TencentDB-Agent-Memory&lt;/a&gt; (local agent memory, 7.1K stars). This isn't a model drop — it's a coordinated stack deployment.&lt;/p&gt;

&lt;p&gt;Tencent is not releasing weights as charity — they're making the model the default choice for anyone building agent infrastructure, then shipping the infrastructure layer alongside it. The West argues about which frontier lab is #1 on the leaderboard while Chinese labs build the complete agent stack — model, sandboxing, memory, tooling — under the most permissive license available. That's not catching up. That's playing a different game.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  What This Means for You
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;If you're evaluating open-weights models for an agent stack:&lt;/strong&gt; Hy3 is now the strongest Apache 2.0 option for agentic workloads. It beats the previous generation on tool-calling reliability (4% accuracy variance across agent frameworks — the lowest reported) and handles &lt;a href="https://x.com/ModelScope2022/status/2047269449393401925" rel="noopener noreferrer"&gt;up to 495-step complex agent tasks&lt;/a&gt;. The licensing alone puts it ahead of Llama for any team where legal review is a bottleneck.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://x.com/ModelScope2022/status/2047269449393401925" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fflfnrwbrwhs0v4w5pi0n.png" alt="ModelScope tweet — Hy3 preview: 295B total, 21B active, 256K context" width="788" height="1200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you want to self-host:&lt;/strong&gt; You need datacenter GPUs. The minimum viable configuration is 4× H200 (FP8, 32–64K context). That's &lt;a href="https://www.spheron.network/blog/deploy-hunyuan-3-gpu-cloud/" rel="noopener noreferrer"&gt;$7.28/hr on spot instances&lt;/a&gt; — plausible for a funded startup, not for a weekend project. But self-hosted per-token costs ($0.90–$1.62/M output) crush the API pricing of closed models.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you're comparing models right now:&lt;/strong&gt; Hy3 sits in a specific sweet spot. It won't beat &lt;a href="https://computeleap.com/blog/glm-5-2-vs-opus-4-8-frontier-moat-open-weights-2026" rel="noopener noreferrer"&gt;GLM-5.2 on pure coding tasks&lt;/a&gt; (78.0 vs. 84.2 on SWE-Bench), and &lt;a href="https://computeleap.com/blog/deepseek-v4-vs-gpt-55-vs-claude-opus-47-model-comparison-2026" rel="noopener noreferrer"&gt;DeepSeek-V4-Pro at 1.6T parameters&lt;/a&gt; has more raw capability. But Hy3 delivers 80–90% of that performance at a fraction of the compute cost, with no licensing strings attached.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you just want to try it:&lt;/strong&gt; &lt;a href="https://x.com/NousResearch/status/2074260103469892045" rel="noopener noreferrer"&gt;Nous Research is offering Hy3 free on their Portal&lt;/a&gt; for two weeks. OpenRouter has the same deal through July 21. Run it against your own evaluation suite before the free window closes — the &lt;a href="https://computeleap.com/blog/hidden-cost-cheap-ai-reasoning-models-2026" rel="noopener noreferrer"&gt;cost advantage matters most&lt;/a&gt; when you know your workload's token profile.&lt;/p&gt;

&lt;p&gt;The bottom line: Hy3 is the strongest argument yet that the future of open-weights AI isn't about parameter counts or leaderboard positions. It's about who ships the most useful model under the terms that let you actually build with it. Right now, Tencent is winning that race.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://computeleap.com/blog/tencent-hunyuan-hy3-open-weights-run-locally-2026" rel="noopener noreferrer"&gt;ComputeLeap&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>machinelearning</category>
      <category>deeplearning</category>
    </item>
    <item>
      <title>The Fable 5 Receipts: What AI Coding Shipped</title>
      <dc:creator>Max Quimby</dc:creator>
      <pubDate>Mon, 06 Jul 2026 04:17:37 +0000</pubDate>
      <link>https://dev.to/max_quimby/the-fable-5-receipts-what-ai-coding-shipped-1mlm</link>
      <guid>https://dev.to/max_quimby/the-fable-5-receipts-what-ai-coding-shipped-1mlm</guid>
      <description>&lt;p&gt;The conversation about AI coding shifted this week. Not because of a benchmark. Not because of a demo. Because three practitioners showed their receipts.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;📖 &lt;a href="https://agentconn.com/blog/fable-5-receipts-ported-game-50m-lines-149-invoice-ai-coding-2026" rel="noopener noreferrer"&gt;Read the full version with charts and embedded sources on AgentConn →&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Simon Willison published the &lt;a href="https://simonwillison.net/2026/Jul/5/sqlite-utils-fable/" rel="noopener noreferrer"&gt;exact cost of shipping an open-source release&lt;/a&gt; mostly written by Claude Fable 5: &lt;strong&gt;$149.25&lt;/strong&gt;. A developer ported a &lt;a href="https://x.com/ammaar/status/2073501877753323772" rel="noopener noreferrer"&gt;23-year-old game engine to the iPhone&lt;/a&gt; in under 19 hours. And Stripe reportedly ran a &lt;a href="https://espressio.ai/blog/stripe-50m-line-ruby-migration-claude-fable-5" rel="noopener noreferrer"&gt;50-million-line Ruby migration&lt;/a&gt; with Fable 5 in a single day — work their team estimated would take two months.&lt;/p&gt;

&lt;p&gt;These aren't toy demos or benchmark scores. They're production artifacts with costs, commit histories, and deployment logs.&lt;/p&gt;

&lt;h2&gt;
  
  
  Receipt #1: The $149.25 Invoice
&lt;/h2&gt;

&lt;p&gt;On July 5, Simon Willison published a blog post with a title that reads like a line item: "&lt;a href="https://simonwillison.net/2026/Jul/5/sqlite-utils-fable/" rel="noopener noreferrer"&gt;sqlite-utils 4.0rc2, mostly written by Claude Fable (for about $149.25)&lt;/a&gt;."&lt;/p&gt;

&lt;p&gt;sqlite-utils is a widely-used Python library for manipulating SQLite databases. The 4.0 release candidate is a significant refactor with migrations, nested transactions, and breaking changes. Willison published the exact token costs, documented each session, and noted where Fable excelled and where it needed correction. During a final review, Fable identified five significant problems categorized as release blockers — issues Willison hadn't caught in his own passes.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://news.ycombinator.com/item?id=48791708" rel="noopener noreferrer"&gt;$149.25 figure&lt;/a&gt; represents the total API spend. At $10/$50 per million tokens, that's roughly the cost of three hours of a mid-level developer's time.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48791708" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Feaarwedb2uziqe2ctzhc.png" alt="Hacker News thread discussing Simon Willison's sqlite-utils 4.0rc2 release mostly written by Claude Fable for $149.25" width="800" height="200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Receipt #2: The 19-Hour Port
&lt;/h2&gt;

&lt;p&gt;Developer Ammaar Reshi posted a &lt;a href="https://x.com/ammaar/status/2073501877753323772" rel="noopener noreferrer"&gt;video on X&lt;/a&gt; showing Command &amp;amp; Conquer: Generals Zero Hour running natively on an iPhone. Not through an emulator. The actual C++ engine, compiled for ARM64, with touch controls and pinch-to-zoom.&lt;/p&gt;

&lt;p&gt;The project was possible because EA &lt;a href="https://github.com/ammaarreshi/Generals-Mac-iOS-iPad" rel="noopener noreferrer"&gt;released the source code&lt;/a&gt; under GPL v3. The GeneralsX community had spent months on the macOS port. Reshi used Fable 5 via Claude Code for the iOS leap: adapting the engine, building touch input handlers, and wiring up MoltenVK.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://the-decoder.com/claude-code-and-fable-5-ported-the-2003-pc-game-command-conquer-to-native-ios-in-a-few-hours/" rel="noopener noreferrer"&gt;The first build took 40 minutes&lt;/a&gt;. The entire project landed in 19 commits over 19 hours. &lt;a href="https://the-decoder.com/claude-code-and-fable-5-ported-the-2003-pc-game-command-conquer-to-native-ios-in-a-few-hours/" rel="noopener noreferrer"&gt;Opus 4.8 couldn't complete the same task&lt;/a&gt; even at its highest effort setting.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://news.ycombinator.com/item?id=48788283" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1cxzsv5upj01i91yc35b.png" alt="Hacker News thread with 633 points discussing C&amp;amp;C Generals ported to macOS iPhone iPad using Fable" width="800" height="200"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Receipt #3: The 50-Million-Line Migration
&lt;/h2&gt;

&lt;p&gt;Anthropic published a customer signal from Stripe: Fable 5 &lt;a href="https://espressio.ai/blog/stripe-50m-line-ruby-migration-claude-fable-5" rel="noopener noreferrer"&gt;performed a codebase-wide migration&lt;/a&gt; on their 50-million-line Ruby codebase in a day, where the manual path would have taken over two months.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;⚠️ The "50 million lines in a day" framing deserves scrutiny. Stripe's team still had to validate every change against live environments. The implementation time compressed. The review time didn't. "The ratio of implementation time to review time inverts." That's important — but it's not "an AI wrote 50 million lines of code."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Bottleneck Shift
&lt;/h2&gt;

&lt;p&gt;A &lt;a href="https://www.techtimes.com/articles/319745/20260705/agentic-coding-bottleneck-fable-5-engineer-says-you-not-model-are-now-limit.htm" rel="noopener noreferrer"&gt;Fable 5 engineer articulated&lt;/a&gt;: "You, not the model, are now the limit."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where AI coding works right now:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Legacy code transformations with clear structure&lt;/li&gt;
&lt;li&gt;Pattern-based migrations across large codebases&lt;/li&gt;
&lt;li&gt;Well-scoped library work with a knowledgeable operator&lt;/li&gt;
&lt;li&gt;Reverse engineering with tool integration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Where it doesn't — yet:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Greenfield architecture decisions&lt;/li&gt;
&lt;li&gt;Anything where the operator can't evaluate the output&lt;/li&gt;
&lt;li&gt;Novel algorithm design&lt;/li&gt;
&lt;li&gt;Systems where correctness matters more than coverage&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What This Means for Coding Agent Stacks
&lt;/h2&gt;

&lt;p&gt;At $10/$50 per million tokens, a day of heavy Fable 5 usage costs $200–$400. After July 7, Fable 5 moves to &lt;a href="https://www.digitalapplied.com/blog/claude-fable-5-usage-credits-july-7-pricing-guide-2026" rel="noopener noreferrer"&gt;usage-based credits&lt;/a&gt;. Teams that built workflows around uncapped access will face cost discipline for the first time.&lt;/p&gt;

&lt;p&gt;The receipts this week don't change the picture. They sharpen it. The model is genuinely better. The operator still matters more.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Originally published at &lt;a href="https://agentconn.com/blog/fable-5-receipts-ported-game-50m-lines-149-invoice-ai-coding-2026" rel="noopener noreferrer"&gt;AgentConn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>coding</category>
      <category>claudecode</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
