Archive BRAID
Full DAG test episode / DISPATCH 005
PDF RSS

Dispatch 005 · 2026-04-23 GSV Test

Full DAG test episode

/ 00:00:02 / 14 sources

“Artifacts, all the way down.”

— Lenar Kess, today's narration

End-to-end coverage.

Sources

14 cited
  1. 1

    Building agents that reach production systems with MCP

    Article Anthropic — Anthropic's developer-relations arm publishing engineering guidance for the Claude platform.

    Cloudflare's MCP server is the reference example — two tools, search and execute, cover roughly 2,500 endpoints in about 1K tokens.

    claude.com/blog/building-agents-that-reach-… →
    Details
    Cited text
    Cloudflare's MCP server is the reference example — two tools, search and execute, cover roughly 2,500 endpoints in about 1K tokens.
    Context
    If you are building agents that talk to production systems, this is the most concrete pattern guide Anthropic has published. It also cements MCP as Anthropic's answer to the M-by-N integration problem and signals where their platform investment is going next.
    Key points
    • Three paths to connect agents to systems: direct API, CLI, and MCP — mature integrations will ship all three, but MCP is the compounding layer for cloud-hosted agents.
    • MCP SDK downloads hit 300M/month, up from 100M at the start of the year.
    • Group tools around intent, not endpoints — a single create_issue_from_thread beats four primitives.
    • For huge surface areas (Cloudflare, AWS, Kubernetes), expose just search+execute and let the agent write code.
    • Tool search cuts tool-definition tokens by 85%+; programmatic tool calling cuts multi-step token usage by ~37%.
    • Skills and MCP are complementary: MCP gives raw tool access, skills teach the procedural 'how.'
    Provenance
    Article · Supporting source
  2. 2

    Claude Code /ultrareview

    X ClaudeDevs — Official Anthropic developer channel for Claude Code.

    Run `/ultrareview` before merging critical changes — auth, data migrations, etc. Pro and Max users get 3 free reviews through 5/5.

    x.com/ClaudeDevs/status/2046999435239133246 →
    Details
    Cited text
    Run `/ultrareview` before merging critical changes — auth, data migrations, etc. Pro and Max users get 3 free reviews through 5/5.
    Context
    Pre-merge bug hunting by a pro-tier model is the pattern Shopify's CTO said he couldn't find in market. Anthropic just shipped it at $5–$20 a pop. If it actually catches edge cases, it changes the economics of code review; if not, it becomes another line item in an already-blown AI budget.
    Key points
    • New /ultrareview command runs a fleet of bug-hunting agents in the cloud, findings land in the CLI or Desktop.
    • After the three free reviews, each run is billed to extra usage at $5 to $20 depending on change size.
    • Early reports in the replies describe failed runs that still consume the allowance.
    • Positions Claude Code against specialist PR review tools like Greptile, CodeRabbit, and Devon.
    Engagement
    14437 likes · 1328 retweets · 490 replies
    Provenance
    Tweet · Primary source
  3. 3

    Uber CTO says AI spending plans fall short as tools like Claude Code drive costs up

    Article Ankita Garg, India Today — India Today technology desk, reporting on The Information's interview with Uber CTO Praveen Neppalli Naga.

    I'm back to the drawing board, because the budget I thought I would need is blown away already.

    www.indiatoday.in/technology/story/uber-cto… →
    Details
    Cited text
    I'm back to the drawing board, because the budget I thought I would need is blown away already.
    Context
    This is the ground truth behind Jensen Huang's $100K-in-tokens-per-engineer quote. If Uber can't predict its coding-agent bill anymore, every CFO approving an AI line item in the next quarter is flying blind.
    Key points
    • Uber's CTO said the 2026 AI budget was blown in the first four months, largely due to Claude Code uptake.
    • About 1,800 code changes a week at Uber are now written entirely by its internal AI agent with no human input.
    • ~95% of Uber engineers use AI tools monthly; ~70% of committed code is AI-generated.
    • Internal AI agent share of code changes grew from under 1% to about 8% in a few months.
    • Anthropic's enterprise shift to per-seat + mandatory token commits removes the predictability of old fixed-tier billing.
    • New internal phenomenon: 'tokenmaxxing' — ranking engineers by token spend (reported at Meta).
    Provenance
    Article · Supporting source
  4. 4

    CI/CD Breaks at AI Speed — Mikhail Parakhin, Shopify

    Video Latent Space (swyx interviewing Mikhail Parakhin) — Parakhin is Shopify's CTO and former CEO of Microsoft's Web Services group (Bing, Edge, ads).

    Running too many agents in parallel that don't communicate with each other is almost useless compared to fewer agents burning tokens efficiently in a critique loop.

    www.youtube.com/watch?v=RrkGoX3Cw7o →
    Details
    Cited text
    Running too many agents in parallel that don't communicate with each other is almost useless compared to fewer agents burning tokens efficiently in a critique loop.
    Context
    This is the best single hour of data on what happens inside a $100B company when coding agents actually land. Every stat — adoption curves, token skew, CI/CD creaking under PR volume — is something you're about to see inside your own org.
    Key points
    • December 2025 was the phase transition: Shopify's internal AI tool usage went from steady growth to runaway, now approaching 100% daily active.
    • CLI-based agents (Claude Code, Codex, Shopify's internal 'Roast') are outgrowing IDE tools like Cursor and Copilot.
    • Token distribution is skewing — top-percentile engineers consume disproportionately more, which Parakhin calls 'not ideal.'
    • Parakhin defends Jensen Huang's 'engineer should spend $100K in tokens' framing as 'directionally correct' but warns quantity-without-critique is an anti-pattern.
    • Shopify uses Graphite stacks and has not found an external PR review tool that runs pro-tier models with the right critique loop — they built their own.
    • Merge conflicts are becoming a global mutex problem as code volume outpaces human review throughput.
    Provenance
    Video · Supporting source
  5. 5

    Mitchell Hashimoto on agents, Go, and allocation

    X Mitchell Hashimoto — Co-founder of HashiCorp, creator of Terraform and Ghostty; now writing the Zig compiler alongside his other work.

    If an error case is rare, pessimize the error case and optimize the success case. Don't allocate unnecessarily on the happy path if it's going to succeed 99+% of the time.

    x.com/mitchellh/status/2047001835656134925 →
    Details
    Cited text
    If an error case is rare, pessimize the error case and optimize the success case. Don't allocate unnecessarily on the happy path if it's going to succeed 99+% of the time.
    Context
    This is the kind of senior-engineer taste that doesn't show up in RL reward signals yet. When Hashimoto says agents over-allocate, he's naming the specific failure mode that makes agent-written code ship but feel off — and giving a pattern you can actually bake into a skill.
    Key points
    • Agents (and humans) default to tracking state for undo, which allocates on the hot path even when the error never happens.
    • Better pattern: on error, re-run from the start in a slow path that does the undo work — Zig's parser uses this for error info.
    • Conditionals are nearly free when predictable; memory access is not, even cached, because cache locality dominates.
    • Hashimoto doesn't expect models to reason to this pattern generically in the short term — tool design and result criteria have to push for it.
    Engagement
    1253 likes · 59 retweets · 31 replies
    Provenance
    Tweet · Primary source
  6. 6

    Workspace agents in ChatGPT

    X OpenAI — OpenAI's main product channel.

    Shared agents that can handle complex tasks and long-running workflows across tools and teams.

    x.com/OpenAI/status/2047008987665809771 →
    Details
    Cited text
    Shared agents that can handle complex tasks and long-running workflows across tools and teams.
    Context
    OpenAI is moving ChatGPT up-stack into multi-user agent orchestration on the same day Anthropic publishes its MCP-for-production guide. Both companies are staking out the enterprise agent layer. The question is whether 'shared agent' is a real new primitive or a repackage of existing tool use behind a friendlier admin console.
    Key points
    • Workspace agents: build once, share across a team; can pull context from docs, email, chat, code.
    • Can take approved actions in Linear, Slack, and other connected systems.
    • Research preview for ChatGPT Business, Enterprise, Edu, and Teachers plans — not on Plus.
    • Positioned as the 'shared agent' layer, with OpenAI explicitly pitching cross-team workflow automation, not individual assistants.
    Engagement
    16075 likes · 2302 retweets
    Provenance
    Tweet · Primary source
  7. 7

    Vision Banana: image generators as generalist vision learners

    X Radu Soricut — Research scientist at Google DeepMind; co-author of the Vision Banana paper.

    Traditional computer vision tasks — segmentation, depth estimation, normal prediction — can now be performed at or near SOTA with a single generalist model.

    x.com/RSoricut/status/2047119197319393615 →
    Details
    Cited text
    Traditional computer vision tasks — segmentation, depth estimation, normal prediction — can now be performed at or near SOTA with a single generalist model.
    Context
    If the pattern holds, downstream CV tooling — depth maps for robotics, segmentation for labeling, normals for 3D \u2014 becomes a prompt-and-diffuse problem instead of a model-zoo problem. That collapses a lot of pipeline code into one API call, and reshapes what the 'vision' team at a company even does.
    Key points
    • Vision Banana is built on Nano Banana Pro; the claim is that image generation is a universal interface for vision tasks.
    • Segmentation, depth estimation, and surface-normal prediction can be framed as image-to-image generation and hit near-SOTA with one model.
    • Project page at vision-banana.github.io; paper on arXiv (2604.20329).
    • Sits alongside OpenAI's GPT Image 2 (which topped LM Arena by a record 242 points last week) as evidence the image-gen stack is absorbing classical CV.
    Provenance
    Tweet · Primary source
  8. 8

    Qwen3.6-27B pelican benchmark

    X Simon Willison — Creator of Datasette and co-creator of Django; runs a widely-read blog on practical LLM use.

    The new Qwen3.6-27B just gave me definitely the best pelican riding a bicycle I've had from a 16.8GB model file.

    x.com/simonw/status/2046995047720378458 →
    Details
    Cited text
    The new Qwen3.6-27B just gave me definitely the best pelican riding a bicycle I've had from a 16.8GB model file.
    Context
    A 27B dense model beating an older 397B MoE on coding, at a size that fits on a laptop, keeps changing the local-inference math for anyone who'd rather not pipe every keystroke to a hyperscaler.
    Key points
    • Qwen3.6-27B dense: 16.8GB quantized, runs on a MacBook.
    • Alibaba Qwen team claims the 27B dense surpasses Qwen3.5-397B-A17B MoE on major coding benchmarks.
    • Unsloth GGUF builds landed on Hugging Face the same day.
    • Willison's 'pelican riding a bicycle' SVG test has become an informal shorthand for small-model capability.
    Provenance
    Tweet · Primary source
  9. 9

    What 81,000 people told us about the economics of AI

    Article Anthropic (Maxim Massenkoff, Saffron Huang et al.) — Anthropic's Economic Index team, using survey data from active Claude users.

    For every 10-percentage-point increase in observed exposure, perceived job threat increased by 1.3 percentage points.

    www.anthropic.com/research/81k-economics →
    Details
    Cited text
    For every 10-percentage-point increase in observed exposure, perceived job threat increased by 1.3 percentage points.
    Context
    This is Anthropic surveying its own customers and finding that the people who feel AI most \u2014 the ones getting the biggest speedups \u2014 are also the most worried about their jobs. It's a cleaner signal than macro labor data, and it lines up with the early-career hiring slowdown everyone's been trying to read.
    Key points
    • 1/5 of the 81K Claude-user respondents voiced concern about economic displacement from AI.
    • Early-career respondents were much more likely to express job-displacement concern than senior workers — only 60% of early-career said they personally benefit, vs 80% of senior.
    • Perceived job threat and speedup are U-shaped: people slowed down by AI, and people sped up most, both worry more than the middle.
    • Highest- and lowest-paid occupations reported the largest productivity gains, with 48% citing scope expansion and 40% speed.
    • Respondents overwhelmingly named themselves as the beneficiary of gains; 10% named employers, smaller shares named AI companies.
    Provenance
    Article · Supporting source
  10. 10

    OpenAI's free healthcare ChatGPT beats physicians on clinical benchmark

    X Ethan Mollick — Professor at Wharton; author of Co-Intelligence; one of the most-cited voices on practical AI adoption in business.

    OpenAI just released a free healthcare version of ChatGPT-5.4 for clinicians that beat specialty-matched physicians with unlimited time and web access on a benchmark of real and hard clinical tasks. Caveat: the benchmar…

    x.com/emollick/status/2047147032016551937 →
    Details
    Cited text
    OpenAI just released a free healthcare version of ChatGPT-5.4 for clinicians that beat specialty-matched physicians with unlimited time and web access on a benchmark of real and hard clinical tasks. Caveat: the benchmark was designed by OpenAI, though it is fully open.
    Context
    OpenAI-designed benchmarks beating humans is a category of claim that needs re-audit every time, but releasing the benchmark open is the move that lets that happen. Watch for the independent reruns before deciding how much to update.
    Key points
    • OpenAI released a free clinician-facing build of ChatGPT-5.4.
    • Claims to beat specialty-matched physicians who had unlimited time and web access on a benchmark of real clinical tasks.
    • Benchmark was designed by OpenAI (Mollick flags the conflict) but is fully open, so third parties can rerun it.
    • Mollick's framing is deliberately qualified, which is what makes the signal readable.
    Engagement
    496 likes
    Provenance
    Tweet · Primary source
  11. 11

    Our newsroom AI policy

    Article Ken Fisher, Ars Technica — Editor-in-chief and co-founder of Ars Technica, publishing the newsroom's first public AI policy.

    AI tools must not be used to generate, extract, or summarize material that is then attributed to a named source, whether as a direct quote, a paraphrase, or a characterization of someone's views.

    arstechnica.com/staff/2026/04/our-newsroom-… →
    Details
    Cited text
    AI tools must not be used to generate, extract, or summarize material that is then attributed to a named source, whether as a direct quote, a paraphrase, or a characterization of someone's views.
    Context
    Ars is writing in plain English what a serious editorial shop thinks AI can and can't be trusted to do. Engineers building retrieval and summarization systems for enterprise should read it \u2014 the newsroom constraints are a cleaner spec than most enterprise product teams have written for themselves.
    Key points
    • Reporters must not use AI to generate or summarize material that is then attributed to a named source.
    • No AI-generated images, audio, or video published as authentic documentation of real events.
    • Every author using AI in reporting must disclose the use to editors; author remains responsible.
    • Policy frames accountability as non-transferable — can't hand off blame to an editor or a tool.
    Provenance
    Article · Supporting source
  12. 12

    OpenAI Privacy Filter: first open model of 2026

    X Lisan al Gaib / scaling01 — Well-followed independent AI commentator tracking model releases.

    It's a bidirectional token-classification model for personally identifiable information detection and masking in text.

    x.com/scaling01/status/2046972437422543064 →
    Details
    Cited text
    It's a bidirectional token-classification model for personally identifiable information detection and masking in text.
    Context
    A permissive, genuinely small PII-redaction model from OpenAI is the kind of release that solves an annoying infrastructure problem for every RAG-over-enterprise-data project. Low-drama, high-utility \u2014 and a rare open-weights ship from OpenAI.
    Key points
    • OpenAI released 'Privacy Filter,' their first open model of 2026, under Apache-2.0.
    • Adapts GPT-OSS into a bidirectional token-classification model for PII detection and masking.
    • 1.5B parameters total, 50M active — small enough to run in a browser.
    • Retains a 128K context window at that size, which Elie Bakouch called 'quite impressive.'
    Provenance
    Tweet · Primary source
  13. 13

    Building agents with the Claude Agent SDK

    Article Anthropic (Thariq Shihipar et al.) — Companion engineering blog from Anthropic renaming the Claude Code SDK to the Claude Agent SDK.

    The key design principle behind the Claude Agent SDK is to give your agents a computer, allowing them to work like humans do.

    claude.com/blog/building-agents-with-the-cl… →
    Details
    Cited text
    The key design principle behind the Claude Agent SDK is to give your agents a computer, allowing them to work like humans do.
    Context
    The rename isn't cosmetic. Anthropic is telling you the harness that runs Claude Code is the one they want you building research, support, finance, and ops agents on. If that's true, the Agent SDK plus the MCP guide is the nearest thing to an opinionated enterprise agent stack anyone has published.
    Key points
    • Claude Code SDK is being renamed Claude Agent SDK — same harness, broader positioning.
    • Core pattern: gather context → take action → verify work → repeat.
    • Subagents get first-class support for parallelization and context isolation.
    • Code generation is the preferred action when a task needs precise, composable, reusable output.
    • Three feedback patterns for verification: rules (linting), visual (screenshots), LLM-as-judge.
    Provenance
    Article · Supporting source
  14. 14

    Sony Ace: autonomous ping-pong robot in Nature

    X hardmaru (David Ha) — Former Google Brain researcher and Stability AI research head, now at Sakana AI.

    Sony built 'Ace,' an autonomous ping-pong robot that uses RL and Sony's vision sensors to achieve expert-level play. A huge leap forward for adaptive robotics.

    x.com/hardmaru/status/2047191747793649805 →
    Details
    Cited text
    Sony built 'Ace,' an autonomous ping-pong robot that uses RL and Sony's vision sensors to achieve expert-level play. A huge leap forward for adaptive robotics.
    Context
    Ping-pong is the canonical hard-real-time robotics benchmark \u2014 sub-100ms loops, noisy perception, adversarial opponent. Nature-level peer review on Sony's result sets a new public baseline, and the custom-sensor story is the part worth reading closely.
    Key points
    • Published in Nature today by Sony.
    • Ace uses reinforcement learning paired with Sony's custom vision sensors.
    • Claims expert-level ping-pong play against humans.
    • Sits on the trajectory from DeepMind's ping-pong work two years ago to full-match autonomous play.
    Provenance
    Tweet · Primary source