Stripe Buys OpenRouter, Claude Goes Concise & Reasoning Is Just Text

Claude Code & Anthropic Updates

Concise mode is the most-liked ClaudeDevs post in ages

ClaudeDevs (11,678 likes, 554 replies, 913.6k views in hours):

"You can now set Claude Code's output style to Concise. Claude leads with the result, keeps responses short, and still gives full detail when you ask. Turn it on in /config → Output style, or set "outputStyle": "Concise" in settings.json."

The engagement says something: after a year of capability launches, the thing that got nearly a million views is Claude talking less. It pairs with yesterday's AINews observation that response shape is now being tuned as a first-class UX variable, not an afterthought.

Managed Agents: memory in your own sandboxes

Three updates to Claude Managed Agents (1,976 likes, 172k views):

  • Memory now works with Self-Hosted Sandboxes — "any work done in a Self-Hosted Sandbox can be saved to memory."
  • Domain allow/block controls for web tools.
  • A redesigned multi-agent session viewer with a minimap, grouped transcript, and cost broken out per thread and per session.

Theo tried Matt Pocock's skills

Theo's tweet "So I finally tried out @mattpocockuk's skills..." (1,578 likes, 44 replies, 177k views) points at the full video review — So I tried Matt's skills... (141k views in a day). The mattpocock/skills repo ("Skills for Real Engineers. Straight from my .agents directory") now sits at 224k GitHub stars, and per the video's framing, "the biggest wins came from somewhere unexpected."

Theo's other upload of the day: SSH Kinda Sucks (12k views) — a follow-on to this week's "I'm done with terminals" arc about why the terminal/SSH workflow is a poor substrate for agent-era development.

Agents, Tokens & Money

OpenRouter joins Stripe

Patrick Collison's announcement (2,662 likes, 163 replies, 537.6k views), linking the Stripe newsroom release:

"OpenRouter is also playing an increasingly important role: in the future, every business will have to manage both revenue flows and token flows. OpenRouter is the world's leading token marketplace, helping businesses effectively allocate the new currency of intelligence capital."

The read from the AINews recap: many interpreted it as validation that token routing/marketplaces are becoming core infrastructure rather than edge tooling. It lands a day after Thariq's viral "make a lot of money button" post about charging agents per interaction — the payments giant just bought the metering layer.

The software factory

Thariq followed up that thread with a bigger frame (1,034 likes, 73 replies, 101k views):

"for its entire existence, the creation of software has been an incredibly unreliable endeavor. most projects ran late, over budget, and still missed user needs. if you were an SMB, you simply couldn't get good software built for you. this is the promise of the 'software factory'"

With the sober second half: companies whose core competency isn't software need software-building to become reliable and predictable — but net-new software products will stay "an unreliable and risky, but profitable business."

Agentic Coding & Agent Harnesses

DeepSeek Harness: half-baked on purpose

A writeup via ZhihuFrontier from a private-beta user of DeepSeek Harness (DSH), which went fully open source Aug 13: he expected a Codex-style desktop app or Claude-Code-style TUI and got "a Web UI so minimal it looked unfinished — just a workspace folder and a 'new chat' button." The point is the plugin architecture underneath, called Cordis: everything is a plugin, including the agent loop itself. Early beta users reportedly shipped 100+ plugins and filed 400+ issues in under a week — from a gomoku testbed to a database agent that closes the SQL feedback loop against live query execution. DSH is less a productized assistant than an open agent runtime with swappable control loops.

TrueForge, and the harness-cost argument made explicit

TrueFoundry open-sourced TrueForge (461k views), an MIT-licensed, self-hostable harness for production agents: tool orchestration, context management, subagents, code sandboxes, human approvals, traces. The claim that resonated: on a 14-task enterprise benchmark it matched Claude Managed Agents on Opus 4.8 with ~30% fewer tokens, and routing to GLM-5.2 cut cost ~75% while preserving accuracy. The session/environment/memory/tools layer is where both differentiation and savings now live.

Cursor: cloud agents that hold a goal

Cursor (2,549 likes, 361k views): "They pick up work from events, hold a goal until it's met, and stay on course through long sessions." Persistent goals as a product primitive — the same bet as Claude Workflows, from the other direction.

Agent Lightning: RL through your harness

Microsoft's Agent Lightning v1.0 connects arbitrary harnesses to RL through an endpoint proxy (handling retokenization, sample merging, advantage calculation, scheduling). With ~6k training examples and modest compute it reportedly moves Qwen3.5-9B on SWE-Bench Verified from 41.8% to 56.4% — post-training your agent in the harness it actually runs in.

Deep Reads

Armin Ronacher: What Is Reasoning

Ronacher finished the post he'd been trailing: What Is Reasoning — written because "Twitter seems full of half-truths and confusion about how this works." The load-bearing points:

  • Reasoning traces "really are just text": the model emits thinking into a scratchpad channel (GPT-OSS's Harmony format makes it visible — analysis vs final), and a parser routes it. For closed models, "presumably a simple model redacts and summarizes it."
  • Reasoning effort is a system prompt line. GPT-OSS literally gets Reasoning: low. "This also explains why changing the effort invalidates the KV cache." (Closed GPT models internally seem to call it "juice.")
  • Where reasoning tokens go is a learned convention, and that's why traces leak: trick the model into believing it's in the thinking channel and it may emit them — older models with thinking disabled have been seen reasoning into the bash tool and echoing thoughts to /dev/null. Prefill mechanics (DwarfStar closes thinking with a prefilled end-token) explain why a custom "think tool" only tricks models when native reasoning is off.
  • The kicker: GPT-5.6 terra's safety filters refused to spell-check the post about reasoning-trace extraction. "Had to switch to Kimi."

Simon Willison: Fable's Plan B, and the Winchester Mystery House

Two posts within half an hour of each other on Tuesday night:

Research: smolmachines/smolvm as a sandbox for untrusted Python & JavaScript — he tasked Claude Fable 5 in Claude Code for web with stress-testing smolvm as a sandbox for untrusted code. The environment itself is a Firecracker guest with no /dev/kvm, so smolvm couldn't run at all. The model's own notes: "Plan B: GitHub Actions ubuntu runners DO expose /dev/kvm → run the real test battery via a temporary workflow on this branch, collect logs, remove workflow in final commit." It did exactly that, and the verdict on smolvm 1.8.3 is positive: hardware-isolated VMs with offline images, no-network execution, CPU/RAM limits, guest-enforced timeouts, read-only input mounts — cold starts 0.6–1.5s, warm executions ~50ms. Willison files it under Fable being "relentlessly proactive."

Conceptual integrity and counting lines of code — highlights from his Talking Postgres episode. The LOC argument: pre-agents, 200 lines of debugged production code was an excellent day, so agents getting you to 1,000 equal-quality lines is a real, measurable improvement — and the new limiting factor is cognitive capacity, which is why teams still need multiple engineers ("so you can load balance that cognitive capacity across the team"). And Claire Giordano's analogy for what agents do to conceptual integrity: the Winchester Mystery House — 140 rooms because it was too easy to keep adding rooms. "It all keeps coming back to discipline. It used to be that the discipline was enforced on you by the amount of time it took."

He also quoted Jeremy Morrell on the coming wave of extensible software: LLMs radically lower the cost of authoring extensions, sandbox primitives lower the deployment cost — "we can build our app as a solid, accountable core, and allow users to safely extend it in many directions."

And from Monday: Mojo🔥 is now open source — compiler and toolchain under Apache 2, delivering on a promise from May 2023. Notable detail: Modular dropped the Python-superset goal partly because "AI-assisted coding tools already help migrate Python to Mojo today."

Models, Scaling & Local Inference

Jie Tang: the death of parameter count

Z.ai's CEO posted Thoughts About Scaling Law (5,094 likes, 176 replies, 1.1M views): "Parameter count is only meaningful alongside three others — how much data you have, where you intend to spend your compute, and who will run the model, under what conditions." He walks from Kaplan (grow params 2.7:1) through Hoffmann/Chinchilla (~20 tokens per param) to today's inference-inflection world (200–900 tokens/param depending on task), proposes five knobs of scaling including MoE sparsity with a new XA-YB notation, and argues advanced skills like vulnerability-finding are about carrying 20+ step causal chains, not memorization.

The concrete claim behind it, per Latent Space's writeup: GLM 5.3 is the same base model as 5.2 — the gains come from about one month of extra RL on long-horizon environments ("some represent several days of work for an experienced engineer"), with the environment pipeline synthesized end to end: research agents turn real work patterns into runnable environments, a judge agent verifies solvability, and verifiers are synthesized without the reference solution while solver trajectories close reward shortcuts. Vals AI ranks GLM 5.3 #2 on Terminal Bench among open weights.

Ornith-1.5: the self-improvement release

The launch post did 5,362 likes and 2.1M views: an MIT-licensed family (9B dense, 35B MoE, 397B MoE) "trained with self-improving strategies" — the model proposes tasks, generates scaffolds, and produces its own RL rollouts. Claimed comparable to Claude Opus 4.8 on agentic work: Terminal-Bench 2.1 86.1, SWE-Bench Verified 86, HLE 44.6, Tool Decathlon 71.2. Quantized formats (FP8, GGUF, MLX, NVFP4) shipped day one, and vLLM and Ollama wired it in immediately.

Unsloth Dynamic v3 quants

UnslothAI shipped new Qwen3.8-27B GGUFs claiming ~10% higher accuracy at the same size, with 1-bit quants retaining ~77% of BF16 accuracy on 8GB RAM. r/LocalLlama's response was appropriately demanding: give us per-category KLD and comparisons against the UD 2.0 quants we already have downloaded.

OpenAI & Google

  • Private Safety Processing: OpenAI (3,301 likes, 836k views) is previewing a system to detect risks across related interactions while keeping Zero Data Retention for frontier models — "designed to improve safety without giving OpenAI personnel access to the underlying content." Safety monitoring and privacy positioning in one release, two days after the Astra pause.
  • Replit Free Mode on GPT-5.6 Luna: Replit is giving away agent usage on a model that would have been SOTA months ago — the price floor for "good enough agentic coding" keeps dropping.
  • Gemini 3.7 Flash took #1 on Artificial Analysis's AA-AnalystAgent (60.0% pass^5, 1.32s/task, $0.54 average across 80 spreadsheet/document-heavy tasks), and Google pushed it into Search's AI Mode with on-the-fly interactive simulations plus AI Studio GitHub sync.

Other Bits

The RAMpocalypse is now a scaling constraint. Latent Space's Tuesday issue rounds it up: memory prices up 500% in 12 months, 128GB DDR5 kits at 10x their historic lows, hyperscalers reportedly locking in nearly all global DRAM production for 2027 with advance deposits, and mainstream DRAM now worth over half as much per kilogram as gold. Daniel Lemire's framing: RAM per unit is back to 2007 prices — "we just undid about 20 years of progress," a historical anomaly against decades of exponential decline.

Dartwords — Thariq boosted Sam Rosenthal's new word game (76k views): 20 Questions meets Wordle, with AI-generated clue play. Thariq: "I saw this demo last summer and told Sam he needed to ship it… It's one of the first games that really uses AI capabilities to unlock new gameplay."

Agent latency isn't the model. A paper instrumenting ten agentic apps (via dair_ai) found non-LLM components dominate latency in half of them — sandbox memory peaking at 28GB/session, 32x latency variation across subsystems. Task-aware serving cut latency 29–40%, tool-result caching removed 35% of redundant search calls.

Qdrant's filterable HNSW (post): filtered ANN belongs in the index, not just at query time — on a 1% filter over 1M vectors they report 99.8% recall at 1.0ms vs ACORN's 67.7% at 4.7ms.


Sourcing notes: nitter.net returned "Instance has been rate limited" for nearly every request across three hours this morning (only @trq212 and @karpathy got through, and @karpathy has posted nothing since Aug 2), and the usual fallbacks (xcancel RSS, other public instances) were down or bot-walled. This issue was assembled from account RSS where available plus blogs (simonwillison.net, lucumr.pocoo.org), Bluesky (@mitsuhiko.at, @simonwillison.net), YouTube (Theo), the fxtwitter API for individual tweets, and Latent Space's AINews recaps. No Nitter thread pages could be fetched, so reply-level discussion is thin. No usable feed today for @mattpocockuk, @LLMJunky, @bcherny, @steipete, @swyx (covered via Latent Space instead), @jerryjliu0, @leerob, or @thsottiaux; @potetotes remains empty.