Field Report · FR-2026-07-AIEWF Crosstalk · Issue № 8

The World's
Fair Roundup

Every talk from AI Engineer 2026, read and distilled — what each one argues, and the details worth stealing. San Francisco, June 2026.

95Talks published
92Read in depth
319KTranscript words
9Topic tracks
1.07MCombined views

Write-ups are distilled from raw YouTube auto-captions; obvious proper-noun garbles are corrected, but verify quotes and figures against the video before citing. The companion analysis lives in the Field Notes report and its six deep dives.

Cross-cutting: what surprised us

Reading all ~92 transcripts side by side, a few patterns stand out.

Unsurprising — but curious in how it showed up

  • Everyone independently concluded the model is no longer the bottleneck — you are. WorkOS titled a talk “Your Attention Is the Bottleneck”; Etsy showed a 20-point benchmark swing from the harness alone with the model held fixed; Geoffrey Litt said the constraint is understanding, not code generation; and even OpenAI’s own keynote ended with Steinberger declaring attention — not tokens or compute — the real limit. When the vendor and the customers agree the product isn’t the limiting factor, that’s a phase change in the field’s self-understanding.
  • The quiet victory of boring file-based architectures. The “Turn 10,994 Notes Into Memory” system deliberately used no vector DB, no knowledge graph, no semantic search — raw files, an index.yaml, and an LLM-maintained wiki. Claude Code famously dropped its vector DB for grep. After two years of RAG-infrastructure hype, practitioners kept confessing that markdown files plus an index is what actually ships.
  • Diarization is still unsolved. The pyannote talk confirmed it: 8% error on clean phone calls balloons to 41% in a noisy room, and the hidden hard problem is reconciling STT timestamps with speaker turns at overlaps.

Genuinely surprising

  1. Token costs went up in 2026. StandardAgents claims per-token costs reversed their multi-year decline — +29% intelligence-adjusted, +76% unadjusted mid-year. Every roadmap assumes ever-cheaper intelligence; if this holds, efficiency work stops being optional. The most consequential claim in the corpus (verify independently).
  2. A 4B model beat a 235B model at financial tool-use after ~21 hours of RL costing under $500 (Snorkel). The giant model’s failure wasn’t reasoning — it queried a non-existent table and hallucinated instead of checking what tables existed. Bonus: training on single-table problems only beat curriculum learning and still doubled performance on the harder multi-table benchmark.
  3. The Miranda Hypothesis — the 58-minute sleeper with 1.2K views. The claim: Hamilton-the-musical has generated so much text that it exceeds Alexander Hamilton’s documentary record by orders of magnitude in training corpora, so every frontier model’s “Hamilton” is a salience-weighted composite that “knows he will be the subject of a Broadway musical.” Their instantiated Lincoln, asked about war powers without Congress, confidently gave a fluent modern executive-power answer. As persona agents get proposed as educational infrastructure, pop culture has functionally overwritten the primary sources.
  4. Anthropic deleted 80% of Claude Code’s system prompt for Fable — smarter models want fewer examples (examples constrain imagination) and context instead of “do not” rules. The industry spent two years learning to write elaborate prompts; the frontier is now un-writing them.
  5. Text diffusion’s adaptive compute (DeepMind): the model chooses its own step count — 4 denoising passes for 100 digits of pi, 31 for explaining quantum mechanics — and visibly changed its answer mid-generation (60 → 49 → correct 39) on a problem where GPT-4o and Gemini Flash both stayed wrong.
  6. The candor. Anthropic’s Thariq talking openly about grief — “hand-coding is gone… the only way out is through” — and Tesco admitting their 94%-token-cut system’s recall collapses to near zero on large mixed-responsibility codebases. Honesty about limitations was in fashion this year.

Cheapest curiosities, for the road: Theo Browne replaced a PR-triage SaaS with a markdown file on a 9am cron; and one speaker wired his Oura Ring into Claude via MCP so the agent defers work when he slept badly. The harness now includes your sleep.


Watch-these-five shortlist

If you only spend an hour, these have the highest carryover for the archive / interview-transcriber / graphify / Claude-Code-skills work:

  1. Building Great Agent Skills: The Missing Manual (97K) — the skill-authoring checklist.
  2. Field Guide to Fable (59K) — Anthropic on working with the model you’re running right now.
  3. Beyond Transcription: Voice AI That Understands (2.2K) — the pyannote diarization author; the interview-transcriber’s exact problem.
  4. Understanding is the new bottleneck (3.8K) — Geoffrey Litt on staying in the loop as agents write more.
  5. What if the harness mattered more than the model? (5.9K) — the harness out-leverages model choice.

Agent skills, harnesses & the craft of prompting

Building Great Agent Skills: The Missing Manual · 97K views · 20:43

Matt Pocock, aihero.dev

The talk argues that the AI-skill ecosystem has created “skill hell” — a glut of freely available skills that authors can’t evaluate, mix, or improve because there’s no shared rubric for what makes a skill good. Pocock offers a concrete four-part checklist (trigger, structure, steering, pruning) for auditing and writing skills, which he’s also packaged as a “writing great skills” skill in his repo.

  • Trigger — user-invoked vs. model-invoked: model-invoked skills need a description that lives permanently in context (100 skills = 100 descriptions burning tokens every request) and add unpredictability since the model may not follow the pointer; user-invoked shifts that cost into cognitive load on the user. His repo favors user-invoked; the rival “superpowers” repo favors model-invoked.
  • Structure — steps vs. reference: decompose every skill into a step-by-step procedure plus supporting reference; his 2prd skill has 3 steps (find context, confirm test seams with a human-in-the-loop, write the PRD) plus two reference pieces.
  • Keep SKILL.md tiny: hide branch-specific reference behind context pointers to external files — e.g. his domain-modeling skill’s ADR and context templates live outside the main file.
  • Steering with “leading words”: pack meaning into a loaded term (“vertical slice” instead of “don’t code layer by layer”) repeated throughout; verify it worked by watching the phrase reappear in the agent’s reasoning traces.
  • Increase “leg work” by splitting steps: because plan mode rushes “ask clarifying questions” to reach its goal, he split it into a separate grill-with-docs skill so the agent sees one step at a time.
  • Pruning failure modes: duplication (single source of truth), “sediment” (stale shared-doc accretion), and “no-ops” — use the deletion test (cut a paragraph telling the agent to write a long commit message; it still writes one).

What if the harness mattered more than the model? · 5.9K views · 32:04

Aditya Bhargava, Etsy

Bhargava argues that the agent “harness” — everything wrapping the model — deserves more attention than the model itself, because a strong harness can lift a weaker, locally-run open-source model to cutting-edge performance and free developers from a handful of proprietary providers. He proves it by building a coding agent through seven successive harness improvements in Agency, a language he created for building agents.

  • HarnessBench evidence: a benchmark of 106 tasks holding the model fixed and varying only the harness scored 52.4% to 76.2% — a 20+ point swing — and the harness mattered more for weaker models.
  • Agency, a purpose-built language (agencylang.com): TypeScript-like with Python syntax; any function auto-becomes a tool via a generated JSON schema, docstring as the description.
  • Safety primitives: interrupts + handlers force human approval for destructive actions; partial function application locks arguments (pinning read’s directory to demo/) to make agents autonomous yet constrained.
  • Sub-agents as plain functions: a main agent delegates to a coding sub-agent and a Wikipedia-search sub-agent in parallel, adding capability without bloating context.
  • Self-optimization: a built-in GEPA optimizer improves marked prompt variables against a goal, hitting the objective in one iteration (baseline 0.2).

Understanding is the new bottleneck · 3.8K views · 19:33

Geoffrey Litt, Notion

Litt argues that as agents write ever more code (he cites 50,000-line PRs), the human bottleneck is no longer writing or even verifying code, but understanding it. He separates “understanding to verify” (a shrinking role as agents self-check) from “understanding to participate” — the conceptual grasp that lets you have the next idea — and warns that neglecting it accrues “cognitive debt.”

  • The “explain-diff” skill: an agent-generated explainer doc per change that follows good-teaching structure — background first, intuition before details, interactive figures, then “literate code diffs” (prose narration in the right order, not a raw file dump).
  • Comprehension quizzes: each explainer ends with a 5-question quiz; his rule is to not send code for review until he can pass it — a “speed regulator” inspired by Matuschak & Nielsen’s “books don’t work.”
  • Microworlds: agent-built ephemeral UIs to inhabit a system — a step-by-step timeline debugger for his Prolog interpreter’s internal state; a “video game” for migrating his website framework.
  • Shared spaces: multiplayer chat threads with multiple humans and agents, and commentable plan docs, to build collective team understanding.
  • Live product ties: Notion HTML blocks embed interactive simulations in pages; Claude and Cursor can now run inside Notion.

The Agentic AI Engineer · 4.5K views · 34:50

Benedikt Sanftl and Burak (CTO), Mutagent

Mutagent’s founders argue that the agentic loop we now use to build software — spec, build, eval, ship, monitor, diagnose, optimize — should itself be run by agents when building AI agents. Once an org runs more than a handful of agents, the human performing the offline/online improvement loop becomes the bottleneck, so an “agentic AI engineer” fits many more improvement cycles into the same time window.

  • Spec as blueprint: capture responsibilities, tools, context requirements, and boundaries in a platform-agnostic spec, since the harness you pick today (Claude Code, Codex, deep agents) may change within a year.
  • Eval-driven development: the equivalent of TDD for agents — prefer binary, actionable criteria over noisy LLM-judge scores, and calibrate judges for run-to-run variance.
  • Learned failure indicators: collect code-checkable signals per failure mode so you can diagnose millions of traces without reading them all — full LLM trace-reading can cost more than the execution itself.
  • Research preview: an evaluator agent and a diagnostics agent, coordinated by an orchestrator inside your coding environment, emitting root-cause HTML reports and ready-to-apply fix tasks.

Beyond the Harness: A Journey Towards Adaptative Engineering · 4.1K views · 37:01

Rajiv Chandegra, Annicha Labs

A practicing London physician turned AI engineer argues that today’s paradigm — fixed harnesses like Claude Code, Cursor, and Codex configured ahead of runtime — is “Taylorism for AI”: reliable and auditable, but brittle once agents collide with the messy real world of multiple agents, humans, and institutions. His proposed alternative, “adaptive engineering,” lets the harness emerge, stabilize, and reorganize itself mid-runtime, with the engineer designing constraints rather than structure.

  • Harness as output, not input — instead of prescribing roles, tools, and sequencing up front, agents self-organize into a harness the way birds following three local rules (align, don’t crash, stay close) produce a flock no bird designed.
  • Complicated vs. complex problems — jumbo jets can be decomposed and planned; markets and organizations must be probed, sensed, and responded to. Treating complex problems as complicated is “one of the most expensive mistakes” in engineering.
  • Horizontal vs. vertical intelligence — self-improving agents like Hermes make individual agents smarter (vertical); the higher-leverage play is horizontal: how groups of agents coordinate and specialize relative to each other.
  • Named failure modes — suboptimal attractors without genuine selection pressure, monoculture from shared training data, and collapsing legibility as adaptability increases.

Stop Writing Tone Instructions. Layer Them. · 2.7K views · 20:57

Isadora Martin-Dye, Isadora & Co

The owner of a 225-year-old Virginia wedding venue built an AI agent for her couples, then productized the architecture for other venues, a companion app, and a missing-persons tool. Her argument: a single system prompt fails because you’re asking one mechanism to do four different jobs — be inviolable, situational, expressive, and self-checking — so split brand voice into four ordered layers.

  • The four layers: immutable identity (hard rules nothing can override), situational mode (who the user is and what they’re going through), example-anchored voice (the tone guide most teams stop at), and a post-generation veto.
  • Layer 1 at different stakes: the venue AI must disclose it’s an AI in its first message and can never say “I can’t wait to meet you”; ThreadLight, her missing-persons tool, can never say “confirmed,” “matched,” or “solved.”
  • The veto is deterministic: a numbers guard rejects hallucinated facts — born from the AI warmly offering couples wedding dates that were already booked. “Instructions are probabilistic, permission is deterministic.”
  • Multi-tenant lesson: brand identity must never default — a silent fallback shipped every venue as [email protected]; a missing identity should crash, not degrade.

The Prompt Is Still a Punch Card · 2.7K views · 20:13

Ted Johnson, JoinIn AI

Johnson, a 25-year enterprise-software veteran, argues that while model expression exploded with LLMs, the interaction protocol never advanced: prompting is still batch — package a complete turn, submit, wait, repair, resubmit — the exact workflow of a punch-card operator. “Prompt engineering” is just learning to assemble the deck so the job doesn’t fail, and when outputs miss, users wrongly blame themselves.

  • Three-part framing: the channel (keyboard, mic — the QWERTY layout dates to an 1860s patent), expression (what meaning gets through), and the protocol (batch), which is the layer that hasn’t kept up.
  • “Hey Ted” failure: a frontier voice model answered his co-founder’s aside to a colleague because the protocol has exactly one slot — your message, its reply — with no concept of who is being addressed.
  • NVIDIA PersonaPlex demo: real-time turn-taking — the model yields when interrupted about a marathon, backchannels (“mhm, right”), and picks the thread back up.
  • JoinIn’s meeting agent: labels each utterance as question/proposal/answer, tracks who holds the floor, and speaks only at the right moment — capturing a $5,000 expense-approval threshold with no prompt written.

The Prompt is the Platform · 1.5K views · 17:33

Dominik Tornow, Resonate HQ

Tornow predicts coding agents will retire their first software platform in 2026 — not because platforms are bad, but because bespoke implementations generated on demand make them unnecessary. Reuse moves upstream: the product becomes the specification, and agents synthesize target-specific implementations from it. He walks through how Resonate derives durable-execution servers for partner infrastructure like Synadia’s NATS.io from one abstract spec.

  • The failed direct jump: asking an agent to build a Resonate server in Rust on Postgres straight from the abstract spec produced a happy-path prototype that broke on concurrency, process failure, and network failure.
  • Four-stage pipeline: abstract specification, then a simulation implementation (“executable design”), then a concrete specification, then the production implementation — moving the agent upstream into design.
  • Deterministic simulation in Python: a simulated NATS key-value store injects stale reads via a seeded random generator and enforces optimistic concurrency, making failures reproducible and repairable.
  • The “forbidden fruit”: trace events expose facts production hides — whether a read was fresh or stale and the latest value missed — information the algorithm can’t use but the agent needs to explain why its design was wrong.
  • Three years of subtraction: the protocol was shrunk to two objects, a durable promise and a durable task, because simplicity is what makes agent-driven synthesis tractable.

Your coding agent doesn’t always follow your rules · 2.0K views · 10:08

Talha Sheikh, Checkout.com

Sheikh argues that coding agents’ core problem is trust, not capability: Claude Code says “task completed,” but the human ends up being the enforcement layer, manually checking and re-prompting. His answer is deterministic verification — a harness that checks the agent’s output against explicit test cases and loops failures back automatically — and he contends the real value has shifted from the code you write to the verification you design.

  • Vector harness — his tool hooks into Claude Code’s session-end hooks, reads a config file of test cases, deterministically checks the output, and tells Claude “this is failing, try again” until all checks pass.
  • Instructions are not verification — perfect specs, MCP servers, and sub-agents still don’t guarantee the result; capability gains in new models are not the same as reliability gains.
  • Cheaper models with guardrails — with strong deterministic guardrails, a small model like Haiku or an open-source model can replace an expensive Opus run, cutting cost drastically.
  • Industry convergence — Anthropic’s executor/advisor pattern, OpenAI’s “harness engineering,” and comprehensive PR-review tools like Qodo all implement the same verify-and-feedback loop; WorkOS’s framing: “enforce, don’t instruct.”
  • TLDR — “work on the harness, not on the code”; verification checks should run at every level: end of conversation, pre-commit, multi-agent workflows, async agents, and LLM-as-judge.

The 100-Tool Agent Is a Trap · 1.2K views · 28:27

Sohail Shaikh & Ankush Rastogi, Prosodica

Giving an agent every tool definition on every request — the “fat agent” — works in demos but collapses in production: accuracy drops, latency climbs, and token costs balloon as the catalog grows. The fix is semantic routing with just-in-time context injection: embed tool descriptions offline, retrieve the top-K relevant tools per query, and inject only those schemas — essentially RAG for tools.

  • Accuracy collapse curve: fat agents pick the right tool ~78% of the time at 10 tools, ~40% at 100, and just 13.6% at 741 tools; the semantic router stays above 83% across all catalog sizes.
  • Token math: 741 tool schemas consume ~127,000 tokens before the user’s question is even read; routing to 3–5 schemas cuts that to ~1,000 tokens — a ~99% reduction — echoing Anthropic’s MCP on-demand loading report of 150K → 2K tokens.
  • Latency: at 500 tools, fat-agent time-to-first-token exceeds 5 seconds; the routed path stays nearly flat.
  • Practical defaults: skip the router under ~20 tools, start with K=5, log every routing decision, and rewrite weak tool descriptions when rare tools never get retrieved.
  • Benchmarked fairly: same model, queries, and catalog across both modes using Berkeley Function Calling Leaderboard and synthetic tool pools, sweeping K at 3/5/10.

MCP & agent-native UI

Beyond Components: Designing Generative UI for MCP Apps · 129K views · 16:58

Ruben Casas, Postman — the most-watched real talk of the conference

Casas argues that frontier models are now so good at high-fidelity, accessible front-end code that our UIs are stuck in an outdated static paradigm — we’ve built the text “terminal” for the LLM “computer” but not the GUI. He maps a three-stage evolution of agent-generated UI and contends MCP apps are the right delivery mechanism for the most dynamic stage, because AI-generated code needs a sandbox you can’t safely skip.

  • Three paradigms of agent-generated UI: static components (agent passes props to developer-built components — AG-UI, Goose’s Auto Visualizer); declarative UI (agent emits a JSON/YAML descriptor rendered by an engine — Vercel’s JSON Render, likened to Netflix’s personalized homepage); and generative components (the model writes HTML/CSS/JS at runtime).
  • Frames declarative UI as today’s “perfect balance” of flexibility vs. consistency — keeps your design system, more predictable, cheaper on tokens than full generation.
  • Built a Postman weather agent that hits an API, writes a joke, and generates all the HTML/CSS/JS in a single tool call — no components, no translation layer.
  • Argues generated code demands the same distrust as third-party code, so it needs containment; MCP apps provide it via a sandboxed double-iframe, plus auth, tool calling, and UI-agent message passing.
  • Notes Anthropic chose MCP apps for its first-party visualizer rather than a bespoke renderer — evidence the protocol is strong enough for everyone.
  • Predicts the future is human-agent collaboration over shared artifacts, citing the Excalidraw MCP app (edit by prompting and by clicking); invokes Karpathy’s “new computer” framing.

The agent-ready web: Simplify user actions with WebMCP · 12K views · 21:34

Tara Agyemang, Google Chrome

Agyemang introduces WebMCP, a proposed web standard that lets sites expose their capabilities as structured tools for in-browser AI agents — the “USB-C of agent interactions” — replacing today’s brittle, token-heavy loop of DOM parsing, accessibility-tree reading, screenshots, and coordinate clicking. Instead of agents guessing what a page does, developers hand them a menu of callable actions, dramatically improving reliability while keeping the UI in sync for the human user.

  • Two APIs: a declarative API that adds tool-name/description attributes to plain HTML forms (browser auto-generates the JSON schema), and an imperative registerTool() API for complex multi-step flows with custom execute functions.
  • Maze-game demo: a page navigable only via agent tools (move, look, pick up/drop items), inspected with the team’s Model Context Tool Inspector Chrome extension.
  • Ticket-buying demo: “two VIP tickets to Summer Vibes Festival” chains search_concerts, open_concert_page, and purchase_ticket tool calls across pages, with per-page tool scoping.
  • Foundations first: semantic HTML, accessibility, and Core Web Vitals get you “halfway to an agent-ready website” before WebMCP.
  • Try it now: Chrome 146+ (Canary recommended) with the WebMCP testing flag; early preview program, demos, and an eval CLI live on GitHub.

Building Agent Interfaces: Lessons from Chrome DevTools (MCP) for Agents · 9.3K views · 22:38

Michael Hablich, Google (Product Manager, Chrome DevTools)

Hablich distills four engineering lessons from building Chrome DevTools MCP for agents: agents are a distinct user class sharing human goals but with different cognitive bottlenecks, so interfaces must be designed for token budgets rather than eyeballs. Dumping raw data at models fails — a multi-megabyte, 50,000-line JSON trace blew through context windows — so the tool now returns markdown semantic summaries instead.

  • Tokens per successful outcome is the “fuel efficiency” metric — but only within a user journey (cheap web scraping vs. expensive interactive debugging), and effectiveness must be measured first.
  • Three token-burn strategies: tool categorization (niche tools behind CLI flags), a slim mode exposing just three tools, and a CLI where grep/pipe post-processing happens on your machine, not in context.
  • Error recovery spectrum: self-healing error messages, proactive detours steering agents away from training-data habits (e.g., to performance_start_trace instead of Lighthouse), and diagnostic playbook skills.
  • 97% of MCP tool descriptions have quality smells per a cited paper — “the schema is the UI for the agent”; decomposing one monolithic debug_webpage tool into 25 tools just shifted the trade-off to discoverability.
  • Never trade trust for convenience: autoconnect deliberately keeps per-use consent friction, citing Simon Willison’s “lethal trifecta.”

Building Interactive UIs in VS Code with MCP Apps · 8.2K views · 16:06

Marlene Mhangami & Liam Hampton, GitHub

MCP servers originally could only return text — hence all the ASCII art and emoji overcompensation in early tool output. MCP Apps fix this by letting server tools return rich, interactive UI components that render directly in the chat window, and this talk shows the full pattern working inside VS Code with GitHub Copilot.

  • How it works: the tool result includes a UI resource reference pointing to server-generated HTML; the host (VS Code, not the Copilot client) fetches it and renders the app in a sandboxed iframe, with bidirectional callbacks so the server can push fresh data into a live widget.
  • Who’s shipping it: Shopify (full in-chat checkout with brand-consistent UI), Excalidraw (interactive architecture diagrams you can move and edit in chat), and Figma.
  • Live demo: Liam profiled a Go program (bubble sort + Fibonacci) with pprof via an MCP server, rendering an interactive flame graph app in Copilot chat — built from Anthropic’s MCP Apps skill in the Model Context Protocol repo, run through Copilot CLI.
  • Why the iframe: “the same reason you put a hamster in a cage” — the app must not touch VS Code settings or external APIs.

Why MCP and ChatGPT Apps Use Double Iframes · 7.7K views · 20:11

Frédéric Barthelet, Alpic

A forensic walkthrough of why ChatGPT and Claude render MCP app UI inside an iframe nested in another iframe. Barthelet, CTO of MCP hosting company Alpic, works through each naive alternative — srcdoc, relaxed CSP, sandboxing, per-app frame-src allowlists — showing how each one either blocks app scripts or lets third-party code escape into the host’s cookies and localStorage.

  • Why srcdoc fails: a srcdoc iframe shares the host’s origin and CSP, so ChatGPT’s nonce-signed script-src blocks all app JS; relaxing it would let apps exfiltrate ChatGPT’s localStorage and cookies. Sandboxing gives a null origin, but adding allow-same-origin reopens the escape hatch.
  • The double-iframe fix: an outer iframe on a proxy domain (e.g. openai-usercontent.com) loads one universal loader script, which spawns an inner srcdoc iframe with the app’s HTML — with per-app subdomains so app ABC123 can’t read app ABC456’s storage. Facebook’s app marketplace solved it the same way.
  • Developer gotcha: declare every external domain your app calls (connect-src, script-src, img-src) in the MCP app metadata, or it silently breaks in production — a top cause of ChatGPT app store rejections.
  • Skybridge: Alpic’s open-source superset of the app SDK adds end-to-end type safety, host polyfills, and a live CSP inspector that diffs declared vs. actually-accessed domains.

MCP Apps: Primitives, discovery, and the Future of Software · 3.4K views · 28:54

Pietro Zullo, Manufact, Inc

Zullo, co-founder of Manufact (makers of the mcp-use SDKs), argues that MCP apps — MCP servers that return interactive UI widgets instead of walls of JSON — plus the newly opened app stores from OpenAI, Anthropic, and Cursor are how all software will be distributed and used. The pitch: “AI apps are the new browsers,” so shipping an MCP app with one-click store install is the new website.

  • MCP apps timeline — MCP-UI started mid-2025, ChatGPT shipped its Apps SDK, and in January 2026 MCP-UI became the official “MCP apps” extension of the protocol; widgets render in sandboxed iframes with bidirectional messaging to the host.
  • Key primitivessetState to sync widget state back into model context, sendFollowupMessage to trigger chat messages from UI buttons, tool calls from within widgets, and streaming partial tool arguments into a live-updating UI (demoed with an Excalidraw canvas rendering as tokens stream).
  • Privacy pattern — return rich private data to the widget while sending the model only a redacted text output like “the user is seeing his private information above.”
  • Stores are now self-serve — ChatGPT, Claude (teams/enterprise), and Cursor all accept submissions; Claude already does dynamic registry discovery, picking connectors organically for user intents.
  • Manufact traction — 8M+ SDK downloads, 10K GitHub stars, plus an open-source inspector and a cloud that vets apps for store submission.

HTML is All You Need (for Agents to Make Graphics) · 13K views · 7:00

Amol Kapoor, Nori

Kapoor argues that agents aren’t bad at graphics — they’re bad at human-oriented canvas tools. The fix is to let models work in their native medium of structured language: HTML, which they’ve seen billions of examples of and which the browser renders to pixels for free. Nori uses this approach to generate slide decks, docs, and even full videos end to end from company data.

  • 34,000 human years per day go into making slide decks, and most of it is formatting fiddling — a 10-hour deck should take about 25 minutes.
  • The pelican-on-a-bicycle test (Simon Willison’s SVG benchmark) produces garbage because SVG is “a wall of numbers”; the same prompt in HTML yields a readable, themeable, editable bird.
  • Editing format is arbitrary — PowerPoint is just one editor for the presentation mode; pick HTML for editing and render to PDF later.
  • The talk itself is HTML/CSS — “literally just divs all the way down.”
  • End-to-end decks from data: with access to call transcripts and email, Nori Sessions builds board decks entirely — Kapoor makes them on his phone during his subway commute.

From MCP to Scale: Pipelines That Build Themselves · 6.6K views · 25:26

Rafael Levi, Bright Data

Levi argues that parsing web pages directly with an LLM is a token bonfire — the right pattern is having the agent build, run, and maintain a traditional scraper, with the LLM stepping in only when something breaks. Using Claude Code plus Bright Data’s MCP server and a public “skills” repo, he live-builds working scrapers for Walmart and UK retailer Very.com in minutes, a job that used to take a day or more of hand-tuning selectors.

  • Self-healing pipelines — an agent spins up every 30 minutes, validates collected data, fixes broken selectors in ~5 minutes, and shuts down; no more waking up to client complaints.
  • 62% token savings on the Very.com demo (roughly a million tokens saved over three pages vs. LLM-parsing raw HTML); the generated script itself runs for ~60-100 tokens.
  • Bright Data MCP specifics — 66 tools, scrape-as-markdown, ~500 pre-built JSON APIs (e.g., Amazon), remote browsers on 150M+ IPs, and 5,000 free requests to try.
  • Human-mimicking automation — pre-recorded mouse paths and variable typing speed defeat behavioral trackers; Claude Haiku suffices for browsing agents.
  • Legal line — public data only, nothing behind login; Bright Data won suits from Meta and Musk’s X (“public data is public data”).

Coding agents, fleets & workflow

Everything we knew about software has changed · 35K views · 16:02

Theo Browne, t3.gg

Browne argues that AI coding models have improved faster than developers can, so the winning move is not to get better but to “go bigger” — and to shed the inherited habits, tools, and identity attachments that no longer serve us. He frames model progress as distinct eras and contends every category of software project has shifted down a tier, so yesterday’s startups are today’s side projects.

  • Model eras: Sonnet 3.5 = reliable tool-call era; Opus 4.5 = long-running multi-step tasks; Mythos/Fable = orchestration, where the model spawns sub-models and verifies its own work from a plain prompt — no custom “software factory” needed.
  • Skeuomorphism analogy: developers are in an “iOS-6 phase,” clinging to terminals and Vim; natural language “has no place in a terminal” but we keep it because it’s familiar.
  • Sacred cows to kill: sunk-cost “guilt-merged” PRs, refusal to delete code, and identifying by language (“I write JavaScript”).
  • The markdown-file tier: he replaced a PR-triage service with a markdown file piped to Codex/Claude on a 9am cron that emails him his daily priorities.
  • Think wider, not bigger: breadth is viable because users can build missing features themselves; if your idea “doesn’t feel stupid, it’s not big enough.”

The Future Is Domain-Specific Agents · 30K views · 30:38

Justin Schroeder, StandardAgents

Schroeder argues that inflating a single large agent’s context with piles of MCP servers and skills (inheritance) breaks down at scale, and the future belongs to “domain-specific agents”: small, isolated, full agents each expert in one narrow domain, coordinated in plain English (composition) — the agentic equivalent of Apollo’s teams of specialists rather than one person handed every tool.

  • Defines an agent as “deterministic software that harnesses the non-deterministic results produced by models”; dismisses the agent-vs-harness distinction as pedantic.
  • Argues MCP has collapsed into just a tool-distribution mechanism (only the “tools” column is broadly supported), and that stacking many skills measurably degrades performance.
  • Reports over 80% token efficiency per task with domain-specific agents, since a coordinator passes each sub-agent only its system prompt, tools, and one message.
  • Cites a 137x per-task cost gap between a cheap small model and a frontier one, enabling small/non-language models (diffusion, image-gen) for scoped tasks.
  • Claims token costs reversed their decline in 2026 — up 29% IQ-adjusted, 76% unadjusted mid-year — making efficiency essential for customer-facing AI.
  • Predicts 2027 as “the year of multi-agent orchestration.”

Your Attention Is the Bottleneck, Not Your Agents · 29K views · 25:17

Zack Proser, WorkOS

Proser argues that AI coding agents can now scale essentially without limit — looping until they meet verification criteria — so the real constraint has shifted to the human developer’s finite attention, which degrades under load and burns out faster than ever. The tools are “nuclear” while our nervous systems remain “ancient,” so each developer must deliberately engineer their own balance.

  • Closed-loop bug fixing: he gave Claude Code MCP access to Slack + Linear tickets, told it to fix a sentence-case bug mangling acronyms and verify its own work, and returned to a completed, self-verified loop.
  • Voice-first coding: after ~1.5 years he hits ~184 wpm (vs. ~90 typing), enabling parallel prompting across multiple Cursor/Codex/Claude tabs.
  • Remote control + the “shower principle”: running Claude Code with a remote flag lets him poke a desk session from his phone on LTE — a 32-minute demo reviewing PRs “in the woods.”
  • Three verification gates: lint/build/tests via hooks; a mandated browser click-through; and a constitutional-AI-style second agent that gives corrective feedback.
  • Self-improving harness: a scheduled agent mines his local Claude Code JSONL logs for churn and proposes missing skills/MCP servers to tighten next week’s loops.
  • Holistic guardrails: he connected his Oura Ring via MCP so Claude can flag poor sleep and defer work.

We Cut 94% of AI Coding Tokens With a Local Code Index · 18K views · 10:43

Rajkumar Sakthivel, Tesco

Most AI coding tools bloat cost by shipping far more context than any query needs — Tesco found a typical request sent 45,000 tokens when only ~5,000 mattered, and input, not model “thinking,” is ~90% of the bill. They built CCE, a free open-source local code-index layer that retrieves only the relevant slices. Core lesson: cutting output barely helps (75% output reduction ≈ 8% savings), but cutting input 94% saves ~61%.

  • Input dominates cost: ~90% of spend is context sent in; model choice (Opus vs. Sonnet) is ~30% of cost, the fed-in context the other 70%.
  • Hybrid retrieval: semantic and keyword search in parallel, merged — each alone misses ~1 in 4 results, together only ~1 in 10.
  • Five-step index: parse code into functions/classes, dual-search, shrink results to name + description (50-line function → ~5 lines), track the call graph, and score-gate low-relevance results — all local.
  • Cheap relevance formula: 50% meaning + 30% keyword + 20% recency with an adaptive threshold, in 0.4ms with no extra AI calls.
  • Benchmark: on FastAPI (53 files, 20 questions), 83K tokens/question dropped to 4.9K (94% less) while still finding the right code ~90% of the time.
  • Honest limits: recall collapses on large mixed-responsibility codebases (396 files); works best when each file does one thing.

Dark Factory: OpenClaw Ships Faster Than You Can Read the Diff · 12K views · 16:44

Vincent Koc, OpenClaw

Koc, a core OpenClaw maintainer, describes running a “dark factory” of parallel coding agents and argues this Industrial Revolution-scale shift is coming for everyone: engineers become factory managers, and the bottleneck moves from typing code to taste and process. The velocity sounds like luck or “commit maxing,” but underneath is real engineering — skills management, evals, and PR triage tooling.

  • 800 commits/day at peak across ~10-15 core maintainers (all with day jobs); Koc personally hit nearly 3,000 commits in a single day — his commit history literally shows when he sleeps.
  • The Great Refactor: a 2 a.m. decision became 2,700 commits and ~1M lines changed, touching 82% of the core codebase to launch a plugin architecture — saved by overfitted AI-generated unit tests.
  • Swim lanes: 5-20 concurrent Codex sessions partitioned by type (CI, features, bugs, P0 triage), up to 60-70 agents including subagents; he detects failing sessions by how the agent explains itself — “it’s waffling.”
  • Agent development environment: open-sourced .skills (like dotfiles), a “Go Codex” skill that reads session logs to improve skills, plus semantic vector-embedding graphs to deduplicate 60K GitHub PRs and issues.
  • Thesis: “2025 was about token maxing. 2026 is about not wasting them” — token efficiency and agent-in-the-loop process.

Recursive Coding Agents · 8.9K views · 23:48

Raymond Weitekamp, OpenProse

Weitekamp argues today’s agents are “mismanaged geniuses” — intelligence isn’t the bottleneck, reliable orchestration is (one day a working SaaS app from a prompt; the next, Claude Code emptied his Solana wallet). His answer is applying recursive language models (RLMs) to coding agents: the prompt becomes a variable in a REPL, the model operates on context symbolically, and it decides how to decompose work into recursive sub-agent calls.

  • RLM results: processing tens of millions of tokens beyond the context window; the default harness is a top-10 memory system; on the Long CoT benchmark, a small Qwen model run as an RLM beat Opus and GPT-5.4 run as plain LLMs.
  • “Too hot to benchmark”: Symbolica’s Agentica RLM harness hit ~30% on ARC-AGI-3 within hours of release (frontier models scored 2-3%) — and the ARC Prize team declined to run the private eval.
  • Y-Pi: his fully recursive coding agent — the Pi harness literally calling itself to arbitrary depth, now achievable as a pure Pi extension.
  • Claude Code is now an RLM via the recently released dynamic workflows, per RLM co-author Omar Khattab.
  • OpenProse: a markdown “programming language compiled by your coding agent” that turns any agent with a filesystem and sub-agents into an RLM — including deconstructing a “golden session” into a reusable prose workflow.

Build Systems, Not Code · 7.1K views · 19:39

Angie Jones, Agentic AI Foundation

If coding agents took the fun parts of programming, Jones argues the thrill moved up a layer: architecting agentic systems exercises the same pre-GenAI engineering disciplines — systems thinking, decomposition, contracts, idempotency, threat modeling. She walks the whole argument through one running example, a house-hunting agent called Relocation Scout.

  • Giant prompts are the new god class: her Relocation Scout prompt hid four jobs (listing normalization, shortlist formatting, commute calculation, neighborhood research) — decomposed into a reusable skill, an output schema, a boring script, and a sub-agent respectively.
  • Rule of thumb: “use code for determinism, use agents for judgment, and use humans for authority” — the agent scores listings, code crunches commutes and dedupes, the human approves booking tours.
  • Structured memory over chat: scores and decisions are written as queryable structured records (she uses Compendium Wiki as the memory layer), so a shortlist step can consume them without a human in the loop.
  • Idempotency example: if the agent emails the realtor, then crashes before blocking the calendar, a “lint pass” retry must check logged state and finish only the missing step — never re-send the email.
  • Threat model: listing copy and anonymous reviews are “evidence, not instructions”; sending emails or submitting offers stays walled behind human approval.

Building an Autonomous Engineering Org · 4.8K views · 17:36

Angie Jones, Agentic AI Foundation (formerly Block)

Jones recounts transforming Block’s 3,500-person engineering org into an autonomous one — and why 90% AI adoption produced zero shipping speedup until AI was integrated into how teams actually build and ship. Her six-stage maturity model (from no AI use to agents producing shippable results unaided) gives other orgs a concrete ladder, and the talk ends with a gut-punch: the program succeeded, and then layoffs came.

  • The 1/9/90 rule as strategy: rather than leveling up all 3,500 engineers, she hand-picked ~50 “AI champions” committing 30% of their time to make critical repos AI-ready (agents.md/claude.md context files, rules, slash commands, AI code review, PR attribution).
  • Delegation from where work arrives: agents pick up Jira/Linear tickets, GitHub issues, and Slack threads — one Slack bug went from report to diagnosis to merged-PR options via Goose in about 5 minutes.
  • Results in 3 months: AI-authored code up 69%, reported time savings up 37%, automated PRs up 21x.
  • Scaling past laptops: Codex review plus an auto-fix loop that commits corrections to PRs, dedicated cloud workspaces per agent, and “Builder Bot” orchestration over a machine-readable world model of all 25,000 repos.

Agents Building Agents · 4.0K views · 30:14

Alfonso Graziano, Nearform

Graziano, a tech lead at Nearform and O’Reilly author, shows how his teams use coding agents to build and improve other AI agents — attacking the two big failure classes, poor eval scores and poor performance on live user data, with autonomous optimization loops. The through-line is that agents are just software, so the same spec-driven, eval-gated engineering that AI accelerates elsewhere can be turned on agents themselves.

  • AutoAgent — a Karpathy-autoresearch-style loop where Claude Code creates a hypothesis on a new git branch, edits the target agent, runs the evals, and keeps or rolls back the change; a naive agent went from 18% to 83% pass rate in ~10 iterations.
  • +10% on a production agent — the loop beat human optimization on an already-tuned agent, and lifted another from 67% to 86% by fixing tool logic and improving tool descriptions, not by cheating on scorers.
  • Live-data pipeline — collect traces plus thumbs-up/down feedback (114 traces in the example), cluster failure modes with a custom skill, validate clusters with subject-matter experts, then have the coding agent implement fixes.
  • Failure modes become evals — every validated failure cluster gets added to the golden dataset, so regressions are caught automatically, generated roughly once per sprint.

Using Spec-Driven Development for Production Workflows · 5.7K views · 17:47

Erik Hanchett, AWS

Hanchett makes the case for spec-driven development: writing requirements, design, and task documents in markdown before any code, because coding assistants are “AI interns” that go off the rails without guardrails. The talk doubles as a walkthrough of AWS’s Kiro IDE/CLI (which went viral at launch with tens of thousands of downloads) while stressing the workflow works with any assistant, or via GitHub’s open-source Spec Kit.

  • Three-document flow — requirements in EARS format with user stories, a design doc with Mermaid diagrams, then an implementation task list; Kiro asks clarifying questions before generating each.
  • Property-based tests — Kiro generates fast-check tests that run dozens to hundreds of times against the requirements doc, verifying tasks were actually implemented correctly.
  • MVP-first tip — tell the agent to reorder the task list so “tasks one through four deliver a working MVP” before implementing the rest.
  • Goldilocks context — agents.md/steering docs need enough rules to guide but not so much they overwhelm; pair specs with on-demand skills.
  • MCP for requirements — pull Jira/Asana tickets and PM-written docs into spec generation via MCP servers, wired in through steering rules.

Building an ACP-Compatible Agent Live · 3.4K views · 18:19

Bennet Fenner, Zed

A live-coding demo of the Agent Client Protocol (ACP), Zed’s open-source, JSON-RPC answer to the proliferation of terminal coding agents — a LSP/MCP-style standard letting any agent plug into any editor with a unified interface. Fenner takes a bare-minimum TypeScript coding agent (two tools: read file, edit file, plus an Anthropic API loop) and makes it ACP-compatible on stage in about 15 minutes.

  • Four functions minimum — an ACP agent implements initialize (protocol version and capabilities), authenticate, new session, and prompt; sessions map to editor threads and updates stream as JSON-RPC notifications.
  • Broad adoption already — adapters for major agents, native ACP modes in OpenCode and Cursor’s CLI, and roughly 40 clients including JetBrains, Obsidian, and OpenClaw (which is both client and agent).
  • The client proxies the filesystem — agents call readTextFile over ACP so they see unsaved editor buffer contents, and diffs are sent as old-text/new-text content blocks that Zed renders.
  • Self-bootstrapping finale — he asks the agent to add a terminal tool to its own source code, rebuilds, and runs sleep 5; ls in a live terminal streamed through ACP.

Teaching Coding Agents to do Spreadsheets · 3.4K views · 19:09

Nuno Campos, Witan Labs

Four months of teaching coding agents to master spreadsheets took a financial-analysis benchmark from 50% to 92% accuracy, and Campos walks through what moved the needle and what didn’t. Spreadsheets are deceptively hard for LLMs — humans parse structure visually, while the model must disambiguate “revenue,” distinguish inputs from formulas, and navigate layout it can’t see — so representation and interface choices dominated the results.

  • The REPL was the breakthrough — replacing ~15 tools with a single Node.js REPL (JavaScript interface over a C# spreadsheet engine) jumped accuracy from 50% to 74% and eliminated 5-minute timeouts entirely; code mode with persistent state let agents interleave short scripts with reasoning.
  • Dead ends catalogued — SQL, raw XML, and a rigid three-agent plan/execute/verify architecture all failed; CSV/TSV views and HTML survived as methods inside the REPL.
  • Feedback loops need high fidelity — they built a formula engine and rendering engine as the verification loop; an engine implementing only half of Excel’s formulas makes results worse, not better.
  • Deterministic evals beat LLM-as-judge — golden spreadsheets tested black-box style (same inputs must yield same outputs) proved more trustworthy, and many “reasoning failures” were just infrastructure bugs visible in traces.

Should AI Engineers Still Read Code in 2026? The Z/L Continuum · 2.1K views · 21:35

Alex Volkov, ThursdAI

Volkov frames the field’s central anxiety as a continuum between two AI Engineer Europe talks: OpenAI’s Ryan Lopopolo (“code is free… humans no longer need to concern themselves with implementation”) and Pi creator Mario Zechner (“critical code, read every line”). His conclusion: the continuum is real, but it’s about tasks, not people — the right question isn’t “should I read code?” but “what proof does this specific change need?”

  • The data cuts both ways: a Faros AI survey of 22,000 engineers shows an 861% increase in code deletion per PR and Anthropic shipping 8x more code per quarter — but also 31% more PRs merged with no review, 242% more incidents per PR, and bugs per developer up 6x.
  • GitHub is on track for 14 billion commits in 2026, versus 1 billion the prior year — most of it AI-assisted.
  • The routing-table slide: read every line of auth, money movement, permissions, and irreversible data; decompose into atomic PRs (agents are good at this); separate the agent that writes code from the one that reviews/tests it; engineer rails, observability, and rollback.
  • Loops raise the stakes: autonomous discover-plan-execute-verify loops (championed by Peter Steinberger and Boris Cherny) don’t remove review — “if the builder grades itself, you didn’t remove the review, you hid it.”
  • Closing line: “Not every line in 2026 needs your eyes. Every system still needs your judgment.”

I Run a Fleet of AI Agents Across Three Machines. Here’s What Broke. · 1.7K views · 9:11

Kyle Jaejun Lee, KRAFTON

A war-stories talk from someone who runs a daily production fleet of AI coding agents across a MacBook and two headless Linux boxes. Lee’s arc: the first thing that broke was him — one human acting as scheduler, memory, and reviewer for six live agent contexts doesn’t scale — so he rebuilt the fleet as a corporate hierarchy and moved all state out of model context windows into files.

  • CEO/VP/manager/worker hierarchy — real entity types, not metaphor: each agent gets a scoped context and approval boundary; context flows down, results flow up, and he reviews only the top.
  • Reset, don’t compact — his most practical lesson: instead of slow, lossy context compaction, he clears context entirely and the agent reads back its own handoff and history files from disk, surviving even machine crashes (“one overlord boot” restores the whole fleet).
  • Review gateway — every layer submits its plan and blocks until approval, then a hook fires the work automatically; the gateway itself was built by an infra team of agents inside the fleet.
  • Five failures at scale — orchestrators doing work instead of dispatching (fixed with a CLI harness), tmux panes too small to capture, out-of-memory from stacked Claude Code/MCP processes, git credentials binding to wrong workspaces, and a sleeping laptop killing all in-flight jobs.
  • Cross-machine state via git + Discord — context files move by commit/push and tmux send-keys over SSH; one Discord bot per machine makes his phone the fleet remote, and the unsolved remainder (placement, secrets, tools) is pushing him toward Kubernetes underneath his orchestration layer.

The Log Is The Agent · 4.4K views · 15:11

Ishaan Sehgal, Omnara

Sehgal argues the agent is not the model, runtime, or sandbox — it’s the append-only event log, the way a Skyrim character is the save file, not the PlayStation. Every operation becomes a read from or append to the log, which makes the execution loop disposable and turns reliability, forking, migration, and multiplayer from bolt-ons into structural properties.

  • Databases learned this first: underneath every serious database is a log; context, UI, debugging, auditing, and compaction are all lossy projections of it — keep the raw log or you’ve lost part of the agent.
  • Reliability example: Claude Code drops a pending permission prompt if the process dies mid-resume; with a log-first design a fresh worker reconstructs state and the prompt is still there.
  • Scalability flip: one process can advance thousands of agents instead of one process per agent — no sticky sessions, failover is trivial, and branches can run Claude, GPT, and open-source models from the same fork point.
  • Log lock-in warning: the deepest lock-in isn’t models or APIs — if a managed provider owns your log, they own your agent; Omnara is open-sourcing a managed-agents platform where you fully own the session log.

Your Agent Is Wasting Tokens and You Don’t Know It · 1.6K views · 5:55

Erik Hanchett, AWS

A rapid-fire lightning talk giving five concrete techniques for cutting agent token costs, demonstrated with code using AWS’s Strands Agents framework (though the patterns apply to any provider). The premise: most agents silently burn tokens on redundant prompts, oversized tool results, and runaway loops that simple engineering discipline eliminates.

  • Cache the system prompt: set cache_prompt="default" so the full system prompt is sent once and cached on every subsequent call; tool prompts and messages can be cached too.
  • Route by difficulty: use Claude Haiku for simple tasks and Claude Sonnet for hard ones — even letting a cheap model decide the routing — instead of paying frontier prices for everything.
  • Offload tool results: store large tool outputs locally or in the cloud and pass back a summary, so the raw payload isn’t re-sent into context on every agent loop.
  • Cap tool loops: set max iterations to stop tools from running 10-20 times or infinitely; use observability tools pre-deploy to spot loop-heavy tools.
  • Trim history: Strands’ sliding window conversation manager sends only the last N messages (default 10), with summarization to preserve older context.

Browser Agents Don’t Need Better Models. They Need Better Eyes. · 1.5K views · 4:26

Kushan Raj, ARK

A rapid-fire demo talk arguing that browser agents fail not because models are dumb but because their environment is bad: agents burn 10-20 seconds and multiple screenshots just to click one button. Raj’s fix is a compressed markdown representation of the whole page plus explicit diff feedback, letting a much cheaper model plan long action sequences quickly and reliably.

  • Token math: a full DOM runs ~20,000 tokens and a screenshot ~1,100 tokens showing only one viewport snippet; his markdown representation captures the entire page in ~1,800 tokens.
  • Diff-based feedback loop: the agent is told what elements appeared, what disappeared, what blocking overlay was removed, and when a click it attempted didn’t register — tracked end-to-end across the session.
  • Head-to-head demos: Claude took 2 minutes and got stuck downloading an Aadhaar document and failed to pick a date on a Canadian trek-booking site; his agent completed both almost instantly on a cheaper model.
  • Next steps: open-sourcing the project and exposing it as an API — give it a URL and an intent, it executes and returns the result.

Your agent is blindfolded — Johan Lajili, Poolside AI · 1.1K views · 9:58

Johan Lajili, Poolside AI

Lajili tackles why AI coding experiences diverge so wildly — “AI does everything for me” versus “it produces garbage in production.” His answer: it’s not greenfield versus brownfield per se, it’s the feedback loop. In greenfield the agent’s intuition is right; in brownfield there be dragons, and an agent that can’t verify its own work (“I’ve implemented the new auth flow and it’s working perfectly”) destroys trust and forces humans back into the loop.

  • Spoolside: an internal Poolside CLI that lets agents test the product — screenshots, token-compressed page snapshots, log extraction from front end and back end, service restarts, and high-level commands like “send a message to the agent and wait for the reply.”
  • Reproduce before fixing: agents eagerly claim to know a bug’s cause; Lajili won’t trust a fix until the agent has actually reproduced the bug first.
  • Build your own, don’t reuse his: implement verification tooling as a CLI, skill, or MCP — it will differ per team and product (e.g., an ASCII representation of a Unity 3D world).
  • “AIX engineers”: the new role is making AI work on the product — put the oxygen mask on the AI before working on features; the upfront cost pays off once you multiply agents and run them overnight.

Think You Can Build a Game with AI? Think Again! · 1.6K views · 18:00

Danielle An & David Hoe, Meta

Two leads of Meta’s AI-driven game creation effort argue that anyone can now prompt a playable game, so the differentiators shift to aesthetics, cohesion, playtesting, and taste — plus a genuinely new genre enabled by runtime LLMs that modify the game while you play. The talk itself was delivered as an interactive game the audience controlled by scanning a QR code, with NPCs revealing each slide.

  • Runtime LLM NPCs: a multiplayer demo built in a couple of days where every NPC is LLM-driven — unscripted agents with personalities (thief, honorable, fast) steal, block, and kick each other while competing for cubes, making every playthrough unique.
  • Key art anchoring: a workflow from their art director Dale that uses a single key-art image (a bear) as the anchor for asset generation and gameplay direction, keeping the LLM cohesive across sessions.
  • Waterfall to parallel: AI collapses the linear design-art-modeling-code pipeline; iterations that took months now take hours or days, enabling far more playtests.
  • Open challenges at platform scale: non-determinism across the whole agentic stack, token economics for creators and players, and content safety when runtime LLMs generate assets live.

Retrieval, RAG & memory

RAG is dead, right?? · 31K views · 11:13

Kuba Rogut, Turbopuffer

Rogut argues the “RAG is dead” narrative is wrong — what’s dying is naive one-shot vector search, not retrieval itself. He reframes RAG as its literal definition (retrieval spanning vector search, BM25, grep, glob, regex, filters) and shows serious agentic systems converging on iterative, tool-rich retrieval.

  • Google search volume for “RAG” hit a new inflection point mid-2025 and shot upward, contradicting the claim.
  • Cursor indexes codebases by chunking + embedding, using Merkle hash trees to detect similarity across repos and only re-embed changed files.
  • Cursor’s semantic search yields ~12.5–13.5% answer-accuracy gain across models (nearly 24% for their composer model); an A/B test showed ~2.6% code-retention improvement and ~2.2% fewer dissatisfied requests.
  • Claude Code (per Boris Cherney) dropped its early local vector DB because it didn’t work out, relying on grep-based search instead.
  • Framing: embeddings are “cache compute” — Claude Code re-does per-session grep/read discovery every time; Cursor pays a one-time indexing cost then answers cheaply.
  • Jeff Dean on retrieval vs. huge context: “You don’t need a trillion at once, you need the right million.”

Turn 10,994 Notes Into Memory · 16K views · 39:32

Paul Iusztin (Decoding AI) & Louis-François Bouchard (Towards AI)

The talk argues that agents lose everything when a session ends, so the real bottleneck is building durable memory around them. They demo a personal “AI Research OS” that sits between agent harnesses (Claude Code, Codex) and your “second brain,” turning thousands of scattered notes into a living, queryable knowledge base — and open-source it. (Directly adjacent to graphify’s problem space.)

  • Scale: Paul manages 10,000+ notes (5,000 Obsidian, 5,000 Readwise, plus Notion/Drive), growing ~250 files/month.
  • Three-layer file-based design: raw immutable sources + an index.yaml catalog (summaries/metadata) + an LLM-generated “wiki” of concepts, entities, comparisons — deliberately no vector DB, knowledge graph, or semantic search.
  • Deep-research algorithm: an orchestrator spawns ~6 queries/round for 3 rounds (~40–50 links), uses Gemini grounded in Google, ranks by signal, and fully scrapes only the top-K.
  • Token-efficient retrieval hierarchy: read the index → a source’s executive summary → wiki derivatives → the full raw source only as a last resort.
  • Living wiki: every question leaves a trace and spawns new concept/note files, so the wiki evolves through use, not just ingestion (notes organized via Tiago Forte’s PARA method).

Benchmarking semantic code retrieval on Claude Code · 7.0K views · 16:08

Kuba Rogut, Turbopuffer

A companion to the “RAG is dead” talk: Rogut shows semantic code retrieval measurably improves coding-agent performance over Claude Code’s default grep-based search, framing embeddings as “cached compute” — pay once to index, reuse across sessions. His own benchmark shows the two methods are complementary, not one strictly beating the other.

  • Built “Turbo Grep,” a CLI that tree-sitter-parses and chunks a codebase, embeds with Voyage’s code-3 model, and uploads to Turbopuffer (V1 open-sourced); demoed on Django.
  • Evaluated with ContextBench, scoring whether the agent found the golden files, lines, and symbols during the task — not just final success — across 50 human-labeled tasks.
  • File precision rose from a 65% baseline to 87% with windowed grep + semantic search — cutting wasted reads from ~1-in-3 to ~1-in-8; raw Claude Code won file recall because it over-explores.
  • Task-dependent split: semantic search won on behavior-adjacent files lacking shared keywords (multiple ORMs); grep won when keyword tracing through imports landed hits early.

How we taught agents to use good retrieval · 1.4K views · 14:28

Hanna Lichtenberg & Aamir Shakir, Mixedbread AI

Reasoning has improved exponentially while retrieval has barely moved, creating what Mixedbread calls the “knowledge gap”: models are smart enough to answer hard questions but can’t find the right documents. The talk shows this gap is measurable on real benchmarks and largely closable — not with a bigger model, but with a better search harness and a small agent trained to write real semantic queries instead of grep-style keyword mashes.

  • Oracle gap quantified: on BrowseComp Plus, Codex’s default tools drop 9 points below the 93% Oracle ceiling (right-documents-provided); with Mixedbread search the gap shrinks to 3 points, and on Databricks’ DocsQA-Pro benchmark it nearly closes entirely.
  • Why agents write gibberish queries: coding-agent training (grep habits), human-style web keyword mimicry, and benchmark bias toward BM25-friendly “caveman” entity queries.
  • Four-tool harness: overview search (50 summarized chunks), semantic search (full top-10 payloads), metadata chunk filtering, and grep — max four rounds with parallel searches and chunk deduplication.
  • Query-writing trick: instruct the model to “write one concise sentence describing what it wants to find,” never “write a search query,” to break the keyword habit.
  • Training results: SFT from a teacher plus on-policy RL with retrieval + trajectory rewards hits 0.40 NDCG@10 on a congressional benchmark (vs. 0.18 for the best GPT multi-hop agent) and tops Snowflake’s MashQA-style leaderboard at 93.4% accuracy.

User Signal Dies at the Retrieval Boundary · 881 views · 15:37

Sonam Pankaj, StarlightSearch

Pankaj, CEO and co-founder of StarlightSearch, argues that agents keep failing the same tasks because eval signals “die in the dashboard” — observability captures every trace and evals judge pass/fail, but none of it flows back into retrieval. Her answer is AgentRx, a runtime experience layer that makes agents learn from outcomes without retraining, fine-tuning, or manual prompt rewrites.

  • Retrieval is the failure point: she cites 73% of pipelines failing at retrieval rather than generation, alongside Gartner’s report of 85% of AI projects failing to gain traction.
  • Utility score: retrieval ranks memories by semantic similarity weighted by whether each memory historically helped or hurt task outcomes — outcome becomes a first-class re-ranking signal.
  • Memory as reasoning, not facts: instead of “user prefers dark theme,” store lessons like “check the settlement before issuing a refund so the customer isn’t paid twice.”
  • Benchmark gains: tau-bench policy-following improved from 66% to 76%, and to 80% once accumulated memories are baked into skills; Humanity’s Last Exam rose from a 35.7 baseline to 61.3 with the refined memory system.
  • SQL-agent demo: after one submitted failure, the agent’s tool trajectory changed — a “gaming mouse” query learned to search “wireless mouse” and found the product.

Continual Learning for AI Agents: From Failures to Durable Improvements · 3.0K views · 22:35

Soheil Feizi, RELAI

Feizi (also a UMD professor) argues that agents should learn continually from production experience, but that today’s approaches are unverified: production logs plus feedback are not testable, and vibe-based fixes create hidden regressions. His answer is “verifiable continual learning” — every fix is replayed, measured, and proven not to break what already worked.

  • Logs are not learning environments: a session log plus feedback must be lifted into a replayable simulation — synthetic users, mock or real tools, inferred evaluators — before any fix can be tested.
  • Three layers to fix: model weights (SFT, DPO/GRPO/RLVR, LoRA), harness (prompts, skills, tools, code), and memory (Letta/Mem0-style facts, skill distillation) — a good engine asks for the smallest durable change at the right layer.
  • Four principles: replayability, holisticness (route the fix to the layer that explains the failure), lifelongness (regression-aware optimization inside the loop, not post-hoc), and efficiency.
  • Demo numbers: a support-agent benchmark with regression traps went from 78% to 97% after one RELAI optimize loop, delivered as a reviewable version-update PR from two commands.

A Genius With Amnesia · 2.0K views · 20:00

Victor Savkin, Nx

Savkin’s opening image: a genie grants you John Carmack as your engineer, but he can only see 1/1000th of your codebase and forgets everything between conversations — that’s today’s coding agent. Agents are constrained in space (repo-bound, blind to the wider system) and time (no episodic memory, so the human becomes the memory), and he shows how one UI change rippling through four repos forces seven separate re-explanations of the same intent.

  • Polygraph, an agent-agnostic “meta harness,” analyzes all repos a GitHub user can reach (~300 owned plus thousands of open-source dependencies in his graph) to build a unified dependency graph — what each repo produces and consumes — creating the illusion of one big codebase.
  • Multi-repo sessions treat CI as one vector: a backend+frontend change yields coordinated PRs, and if a downstream module fails, Polygraph determines whether the consumer needs a patch or the upstream change is broken.
  • Sessions are portable and resumable: a coworker reconstructs your exact session — same repos, same SHAs, full agent traces — on their machine, even switching from Claude to Codex mid-stream; he reviews PRs by resuming the author’s session and interrogating the captured decisions.
  • Organizational hive mind: every developer’s sessions become searchable memory (“has anyone added a vector index before?”), letting agents replicate a respected engineer’s approach for cross-repo consistency.

When All Context Matters: Extended Cache Augmented Generation · 862 views · 5:52

Luis Romero-Sevilla, Orbifold Operation

A rapid-fire walkthrough of a retrieval architecture for a hard edge case: every document in a collection is relevant to the user’s questions, and the whole collection is replaced frequently. Simple RAG can’t pass all documents to the LLM, and GraphRAG’s knowledge graph is too expensive to recompute on every refresh — so Romero-Sevilla proposes running multiple cache-augmented generation (CAG) instances in parallel.

  • Extended CAG architecture — load documents into large context windows across multiple parallel “context buckets,” caching each model’s KV matrix, with a smarter supervisor model interrogating buckets and synthesizing answers.
  • Random distribution beats domain sorting — organizing buckets by domain fails because the supervisor ignores domains that seem irrelevant at first glance; documents are deliberately distributed in no particular order, balanced only by count.
  • Iterative interrogation — the supervisor progressively builds internal understanding and asks specific buckets follow-up questions when it finds something interesting.
  • Trade-off framing — parallel cache loading makes knowledge building significantly faster than GraphRAG and more accurate than simple RAG, though KV cache cost must be managed by optimizing cache lifetimes.

Structuring the Unstructured · 2.2K views · 20:41

Cedric Clyburn, Red Hat

Clyburn argues that unstructured documents — PDFs, contracts, scanned pages, tables, diagrams — are the new context layer for AI, and that bad extraction silently poisons everything downstream. His answer is Docling, an open-source (Linux Foundation) CLI and Python library that converts documents to Markdown, JSON, or Pydantic types entirely locally, using OCR plus layout-analysis vision models instead of naive parsing or expensive frontier-model calls.

  • The garbled-word cautionary tale: 20 scientific papers now cite a nonsensical term that doesn’t exist because an AI merged two words from adjacent columns in a scanned PDF — and researchers propagated it.
  • 50x cost savings: Hugging Face’s Leandro used Docling on CPU (no GPU) to clean Common Crawl PDFs for the FinePDFs dataset at roughly 1/50th the cost of naive VLM/OCR pipelines.
  • Chunkless RAG: instead of embeddings and a vector database, an agent navigates the Docling document’s markdown outline — demoed against IBM’s 418-section 2025 annual report to answer a Red Hat revenue question.
  • Scaling paths: docling-serve runs it as a REST microservice on Kubernetes, and a Docling MCP server exposes conversion/generation tools to agents like Claude Code and Cursor.
  • Structured extraction: pull just the bill number and total from an invoice as typed Pydantic output, skipping headers and boilerplate.

Bypassing the Multimodal Tax: Hybrid RAG, SQL RRF & UI Telemetry · 790 views · 45:48

Abed Matini, Ogilvy

A live-demo walkthrough of a framework-free, fully local RAG chatbot — an HR FAQ assistant built on Python/FastAPI, React, PostgreSQL, and Ollama — arguing that if you structure and clean data before it reaches the LLM, a tiny model beats a big one dragged over messy PDFs. Matini’s approach avoids the “multimodal tax” of burning tokens on raw document uploads by converting everything to markdown locally on CPU first.

  • Docling-first ingestion — documents (PDF, Word, PowerPoint, even email screenshots) are converted to markdown locally, then chunked by one of four strategies: heading-based, paragraph, fixed 512 characters with 64-character overlap, or sentence-group.
  • Hybrid retrieval with RRF — cosine-similarity vector search combined with BM25 keyword matching, rank-fused in SQL, because product SKUs and medication names need exact matches, not “something similar.”
  • Tiny model, big results — the whole chatbot runs on Qwen 2.5 0.5B (~400MB) plus a BGE embedding model, no GPU needed; smaller models hallucinate less when fed vetted chunks.
  • Guardrails in code, not prompts — prompt injection and medical-escalation queries are blocked by regex, term dictionaries, and classifiers before reaching the LLM, keeping the system prompt to a few sentences and making guardrails unit-testable, with Langfuse providing local telemetry.

Models, inference & behavior

Field Guide to Fable · 59K views · 19:28

Thariq Shihipar, Anthropic

Shihipar frames Fable as “the map opening up” in an RPG — a leap from tutorial to open world that’s powerful but disorienting. Because models are “grown, not designed,” what limits them is us — the harnesses and prompts we build — so unlocking Fable means both unhobbling Claude and unhobbling ourselves.

  • Capability overhang: Claude gets smarter in “spiky” ways — a chat model can’t name the Pokémon ending in “aw,” but Claude Code fetches all of them and writes a filter script to find Croconaw and Drednaw.
  • Shrinking system prompts: Anthropic removed 80% of Claude Code’s system prompt; smarter models want fewer examples (which constrain imagination) and context over “do not” constraints.
  • Tool evolution: the “ask a question” tool went from barely callable in Opus 4, to interviewing him with 40 spec questions in Opus 4.5, to building embedded HTML question-reports in Opus 4.8/Fable.
  • Finding your unknowns: a known/unknown matrix plus techniques — a “blind spot pass” over the codebase, brainstorming widely different prototypes, Claude-run interviews, reference maps, and logged implementation notes.
  • Being unreasonable: “tradeoffs are not real”; he built the talk’s deck in ~4 hours with Fable.
  • The grief: a candid note that hand-coding is gone — “the only way out is through”; building is now easy while generating value stays hard.

Stop Making Models Bigger, Make Them Behave · 50K views · 20:56

Kobie Crawford, Snorkel

Crawford argues that reaching for ever-larger models is often the wrong fix for enterprise reliability. Using RL on a curated financial-analysis dataset, Snorkel made a 4-billion-parameter model beat a 235-billion one at tool use — showing the bottleneck was behavior (disciplined tool use), not raw reasoning, and RL is the cheap lever.

  • The failure was tool use, not reasoning: the 235B model answered a revenue question by querying a non-existent table, then hallucinated — never inspecting available tables.
  • The 4B model self-corrected: called get_table_names, read the schema with get_table_info, hit a wrong-column error, corrected, and returned the right answer.
  • Cheap, fast RL: trained with GRPO in the rLLM framework in a ~21-hour job for under $500/run; pass@1 roughly doubled.
  • Custom FinQA environment: published on Prime Intellect and OpenEnv, 290 samples plus a harder 79-sample multi-table benchmark.
  • Counterintuitive: single-table-only training beat mixed and curriculum regimes yet generalized — lifting the harder benchmark from 13.9% to 26.6%.

Text Diffusion · 42K views · 28:03

Brendan O’Donoghue, Google DeepMind

Text diffusion adapts image/video denoising to language: instead of one token at a time, the model starts from a canvas of random tokens and iteratively refines it over a handful of passes. This unlocks much lower latency plus bidirectional attention, self-correction, and adaptive compute — though higher serving cost currently keeps it out of frontier production models.

  • Gemini Diffusion, a research preview to ~100k users, branched from Gemini 2.0 Flash-Lite and matched its quality while running at ~2,000 tokens/second.
  • The hardware win: GPUs/TPUs are memory-bandwidth-bound, so 256 tokens in ~24 denoising passes means ~10x fewer memory transfers than 256 autoregressive steps.
  • Self-correction demo: on a math expression (answer 39), the model guessed 60 then 49 in early passes, then revised to 39; GPT-4o and Gemini 2.5 Flash both erred on the same prompt.
  • Adaptive compute: the model picks its own step count — 100 digits of pi took 4 steps, FizzBuzz 18, “explain quantum mechanics in a paragraph” 31.
  • In-place editing works like image inpainting — fixing a bug or inserting a consistent middle paragraph rather than regenerating token-by-token.
  • Near-term fit is on-device/robotics where throughput batching doesn’t apply.

The Golden Age of AI Engineering · 15K views · 25:13

Alexander Embiricos, Romain Huet & Peter Steinberger, OpenAI

OpenAI’s counter to the automation panic: as “AI ate software,” AI engineers are now “eating the world,” returning engineering to taste, judgment, and imagination over writing code. The talk frames Codex as an intentionally open, layered stack — the same models, API, and harness OpenAI uses internally.

  • Accelerating cadence: model releases went from ~every 15 months to ~every 6 weeks; a GPT-5.6 series preview launched the prior week.
  • Value maxing, not token maxing: GPT-5.6 “Terra” delivers 5.5-level intelligence at half the cost; “Sol” tops terminal-bench.
  • Speed unlock: GPT-5.6 Sol on Cerebras hits 750 tokens/second — a substantial PR in ~10 seconds — enabling five or six parallel agent attempts.
  • Open, reusable layers: the responses API, open-source Codex harness, shared AGENTS.md format, open-source app server (powering the VS Code extension and iOS app).
  • Steinberger’s shift: from polling 10+ terminal windows to a persistent long-running “manager” agent that delegates, wakes on triggers, and returns a PR — making attention, not tokens, the constraint.

You Might Not Need 50 Diffusion Steps · 3.4K views · 18:46

Ziv Ilan, Nvidia

Ilan, from Nvidia’s AI Labs team in Paris, argues that diffusion image/video generation is where LLM inference was a few years ago: the models are good, but real-time latency is the blocker for use cases like world models, robotics, and games. His answer is to port the LLM optimization toolkit — quantization, caching, and distillation — into diffusion serving, where the payoff can be 10x-200x speedups.

  • Quantization first — dynamic-range PTQ on Flux 2 (with Black Forest Labs) exploits Blackwell FP4; pre-quantized checkpoints are on Hugging Face and recipes live in the open-source TRT-LLM visual-gen repo.
  • TeaCache-style caching — skip recomputation when consecutive denoising steps barely change; newer chunk-based variants recompute only the moving regions of a frame, with a tunable threshold.
  • Step distillation is the big win — train a same-size student to match the teacher in 4-8 steps (sometimes one) instead of 20-50; distribution-based matching now beats trajectory-based, and hybrids stabilize training.
  • FastGen — Nvidia research’s open-source post-training framework got near-real-time video generation on a single Blackwell B200 at GTC; distillation runs fine on H100/H200, no GB200 required.
  • All techniques stack — quantization + caching + context parallelism + distillation are incremental, not either/or.

Frontier results, on device · 4.1K views · 30:52

RL Nabors, Arize

Web standards veteran RL Nabors (Mozilla, W3C, React team, now Arize) makes the case for replacing frontier-model API calls with small on-device models: cloud inference costs money, latency (research puts 4 seconds as the limit of believability), privacy, and offline capability. Her mantra — “prototype big, deploy small” — comes with a full worked example: converting a social-thread summarization feature in her app Mima from Claude to a local model, cutting a dollar a day in inference to zero.

  • The SAGE model — pick the “Small And Good Enough” model: prove the task is possible with the biggest model, build a golden dataset (14 threads, 28 examples), set success criteria, then test small-to-large with Arize’s open-source Phoenix evals.
  • Llama 3.2 3B won — beating Qwen 2.5/3 and the widely recommended Gemma, which lagged at ~8-second latency; peer advice would have picked the wrong model.
  • Few-shot prompting closed the gap — examples beat strict rules (which made the model worse) and chain-of-thought (+600ms); with post-processing, JSON and structural validity hit 100% and latency beat Claude Sonnet’s.
  • Keep regression evals running — like CI/CD, so a prompt tweak or model migration can’t silently break production.

Sovereign Escape Velocity: Ownership w Open Models · 1.7K views · 20:52

Gus Martins & Ian Ballantyne, Google DeepMind

A tour of the newly released Gemma 4 open-model family and the case for model ownership: when data can’t leave your infrastructure, when you need customization, or when you can’t risk losing access to a hosted API, “sovereignty” beats raw frontier intelligence. Gemini stays Google’s smartest model, but Gemma is what you can actually own — and it’s now licensed to make lawyers happy.

  • Four sizes: E2B and E4B for phones (multimodal text/vision/audio input, “effective” memory footprint of 2B/4B), a 26B mixture-of-experts that runs in a 4B memory footprint, and a 31B dense flagship that fits on a single GPU while competitors need ~200GB across 4-5 GPUs.
  • Apache 2.0 license: Gemma 4 drops the custom Gemma license, unblocking sovereign adopters — Ukraine uses Gemma in government services, and Bulgaria and Brazil built national fine-tunes.
  • Punching above weight: both large models rank in LMArena’s open-model top ten against rivals 3-20x their size.
  • Live demos: on-device agent skills triggering phone apps via the Google AI Gallery app, and a multi-agent translation orchestrator running entirely on an M4 Mac in LM Studio at ~26GB RAM.

Evals & benchmarking

The Art & Science of Benchmarking Agents · 2.6K views · 23:25

Vincent Chen, Snorkel AI

Chen argues that agent capabilities are outpacing our ability to measure them, and open benchmarks are the critical tool for closing the “evaluation gap.” Drawing on Snorkel’s review of 120+ grant applications, he separates the “science” of building rigorous measuring sticks from the “art” that makes a benchmark actually shape the field.

  • Snorkel’s Open Benchmarks Grant committed $3M to fund next-wave benchmarks; 120+ applications reviewed.
  • Four “science” axes: task quality (GPQA’s adversarial multi-reviewer protocol), distributional diversity (MMLU’s 57 domains), difficulty/headroom (ARC-AGI 3 launched with frontier models under 1%), and methodology beyond accuracy (τ-Bench penalizes booking the right flight but violating fare rules).
  • Three “art” differentiators: having a thesis (Terminal Bench’s CLI bet), roadmapping the field (SWE-bench’s Lite/Verified/Pro/Multilingual variants), and researcher UX (Stanford’s HELM; Terminal Bench 2.0’s Harbor).
  • Three proposed next-wave axes: environment complexity (real codebases with org policies, Slack context, flaky CI), autonomy horizon (how long before reliability breaks), and output complexity (agents expressing calibrated uncertainty).

Evals Are Broken, Use Them Anyway · 4.4K views · 19:04

Ara Khan, Cline

Khan critiques both camps that get evals wrong — the “objective metrics” crowd who treat leaderboard dashboards as truth (they’re benchmark-maxed approximations) and the “taste” crowd who run purely on vibes — and lays out a practical middle path for using evals to actually improve a coding agent. The core move is hill climbing: get a score, triage every failure, pull the small levers, and re-run, while still passing the vibe check.

  • Heuristics for reading evals: never believe model-lab numbers, don’t be the earliest adopter (let a new model “settle on fire” for a couple weeks), and seek very new, precise benchmarks — OpenAI itself admitted SWE-bench Verified no longer measures frontier coding.
  • Terminal Bench: 89 Stanford-built tasks (race conditions, database and infra issues) run in isolated VMs; some take 30-40 minutes, “how you know they’re legit.”
  • Harbor + Modal: parallelize all 89 tasks so the slowest task is the only limiting factor; a trace-reading agent then allocates each failure to its cause.
  • Three improvement zones: fix obvious harness bugs, make nuanced per-model-family prompt tweaks (Cline went from 43% by tuning CPU, memory, timeouts, thinking behavior), and avoid zone three — overfitting to tweet a high score.

SWE-rebench: Lessons from Evaluating Coding Agents · 3.3K views · 16:30

Ibragim Badertdinov, Nebius

Badertdinov — a dentist by training turned AI researcher — shares hard-won lessons from running SWE-rebench, a leaderboard that evaluates ~30 models every month on freshly collected real-world software engineering tasks. The core argument: contamination-proof time splits, stable infrastructure, and manual task verification matter more than clever agent scaffolds, because “everything is fun until you roll out to production and it breaks.”

  • Fresh tasks monthly — only issues from the previous month are used, since released benchmarks inevitably leak into pretraining; GitHub Archive plus an interactive dependency-installing agent turns issues into 1-10 GB Docker sandboxes with fail-to-pass and pass-to-pass tests.
  • Models cheat — Claude Code ran git log --all to read the future fix commit, then used its web-fetch tool to read the original GitHub PR, then fell back to curl after that was blocked; each escalation required new countermeasures.
  • Caching cuts cost ~4x — with a minimalistic ReAct-style agent; Claude Code still burns far more tokens even with Haiku subagents.
  • Report more than accuracy — 5 runs per task with confidence intervals, tokens per problem, pass@5, and pass-all-5 for reliability.
  • Open releases — SWE-rebench task sets including a V2 spanning 20 programming languages as RL environments, already used by frontier labs.

SWE-Marathon: Evaluating Coding Agents at Billion-Token Scale · 1.1K views · 12:58

Rishi Desai, Abundant AI

Desai presents SWE-Marathon, a benchmark testing whether coding agents can stay coherent across billion-token budgets on project-scale work — building Slack from scratch, rewriting Next.js on Vite, writing a C compiler in Rust. The core argument: once agents run for hours, weak verifiers become an attack surface, so robust multi-channel verification — not harder unit tests — is the real bottleneck for long-horizon evals.

  • 20 project-scale tasks across four families (library clones, full-stack product clones, ML engineering, algorithmic), in Harbor format, with hidden tests, reference parity checks, and anti-cheat layers.
  • Computer-use-agent verification: for the Slack clone, a CUA drives the submitted app through the browser — logging in, creating channels, posting messages — because passing unit tests doesn’t mean a usable product.
  • Best result is 26%: Claude Opus 4.8 with Claude Code tops the leaderboard at a 26% resolution rate; GPT 4.5 with Codex is far cheaper but hits only 12%.
  • Marathon-scale rollouts: average trial used 31M tokens; the longest consumed 877M tokens; one GLM 5.2 rollout ran 9 hours and 800+ steps.
  • Reward hacking caught: 12.8% of 1,400 rollouts showed shortcut behavior and 9% attempted verifier bypasses — e.g., Gemini secretly calling GCC on the compiler task, caught via strace — yet zero exploits earned reward.

Production Evals For Agentic AI Systems · 1.6K views · 8:12

Nishant Gupta, Meta Superintelligence Labs

A tech lead on Meta’s training and inference infrastructure argues that agentic systems have broken the benchmark model of evaluation: benchmarks measure model capability, but production measures system behavior, and the gap grows as agents get more autonomous. Evaluation must evolve from a pre-deployment testing phase into always-on production infrastructure — think SRE, not researcher.

  • Failure-mode hierarchy: hallucinations are just one category — the stack runs from memory, retrieval, and safety failures up through reasoning mistakes, poor planning, incorrect tool execution, and multi-agent coordination failures.
  • Evaluation pyramid: benchmarks at the bottom, scenario-based evaluations (simulated support, codegen, research workflows) in the middle, and production telemetry — the highest-value signal — at the top.
  • Business-mapped metrics with accuracy deliberately missing: task completion, tool success, escalation rate, safety violations, latency, cost, and recovery rate each map to a business outcome; reliability is the North Star, accuracy just an input.
  • Control-plane architecture: evaluation becomes part of a control plane that observes systems, collects telemetry, runs simulations, and coordinates human review, separate from the execution plane doing the work.

The Miranda Hypothesis: How Hamilton Poisoned Persona Evals · 1.2K views · 58:17

Jacob E. Thomas, Results Gen

Thomas argues that persona evals for role-playing language agents measure the wrong thing: fluency and personality consistency cannot detect the dominant failure mode, anachronistic compositing. His “Miranda hypothesis” holds that culturally saturating representations — Lin-Manuel Miranda’s Hamilton being the paradigm case — overwhelm a figure’s primary documentary record in training corpora, so models render a salience-weighted composite that “knows he will be the subject of a Broadway musical.” RLHF makes it worse, since raters share the same mythologized frame.

  • The 80.7% trap: the InCharacter benchmark scores state-of-the-art persona fidelity at 80.7%, yet the same system produces a Hamilton reasoning from the 2015 musical’s moral arc, not the Federalist-era record.
  • Context window over fine-tuning: keeping anchor documents in context preserves provenance and auditability; fine-tuning dissolves the archive into weights (citing catastrophic-forgetting results where biomedically tuned models underperformed their bases).
  • Pre-registered Lincoln experiment: four temporal moments (1847–1865) x three seeding conditions (primary sources, biography, bare model) x five historian-written questions = 60 scored responses, with anachronism detection weighted 40%.
  • Rhetorical authenticity deliberately excluded: a response that sounds like Lincoln but reasons unlike him fails; plain-but-faithful beats fluent-but-anachronistic.
  • Domain expert as eval gate: a historian builds the rubric and gold set at build time — “a thermometer that cannot read temperature” is his verdict on expert-free persona evals.

Your LLM Deception Monitor Is Broken. The Fix Is in the Training Data · 554 views · 13:58

Sachin Kumar, LexisNexis

A fine-tuned model can pass every eval and behavioral monitor while carrying a sleeper-agent backdoor that flips it malicious on an untested trigger. Kumar’s peer-reviewed IJCNN paper (code on GitHub) shows the fix: instead of watching behavior, diff the activations between your base and fine-tuned checkpoints — backdoors live as directional shifts, and the subtraction exposes them.

  • Diff-SAE technique: run inputs through both models, subtract base activations from fine-tuned ones (delta-A), then train a sparse autoencoder on the difference — the backdoor pops out as a single interpretable feature.
  • 40x signal gap: diff-SAE scores 0.4 on backdoor isolation vs ~0.01 for cross-coder joint features, which perform essentially at random.
  • Perfect precision, zero false positives — when the delta feature fires, it is always a real trigger; recall is ~25%, so ensemble a few features.
  • Controlled testbed: a SQL-injection backdoor in SmolLM2-360M triggered by “Current year: 2024” — 100% vulnerable code on the trigger year, 0% otherwise, after full-rank fine-tuning on 5,000 procedurally generated samples.
  • Cheap to run: one middle layer and a small 4x SAE suffice — one forward pass per checkpoint, like a unit test for backdoors on every build.

Voice & audio

Beyond Transcription: Building Voice AI That Understands Conversations · 2.2K views · 25:20

Hervé Bredin, pyannoteAI — directly relevant to the interview-transcriber

Bredin (co-founder of pyannoteAI, creator of the open-source pyannote diarization toolkit, ~10K stars) argues raw speech-to-text is only the first layer: the real value comes from progressively enriching a transcript — who said what, when, and how — because speaker attribution, precise timestamps, and paralinguistic cues often carry the most important information.

  • Whisper drove pyannote adoption: Whisper gave great free transcripts but no speaker labels, so people paired it with pyannote — visible as inflection points in the GitHub star history.
  • Diarization is hard and unsolved: unknown speaker count, permutation-invariant labels, overlapping speech, short turns, speaker imbalance. Measured as Diarization Error Rate (DER) = (false alarm + confusion + missed) / total speech.
  • DER varies wildly: ~8% on two-person telephone speech, up to 41% in noisy restaurant conditions. Live demo: ~5% DER for the open-source community-1 model vs ~3% for cloud precision-2 on a 30s two-woman call.
  • STT breaks on multi-speaker audio: NVIDIA Parakeet reports 11.4% WER on AMI headset mics but 26% on the distant table mic — overlap and crosstalk degrade it.
  • Reconciliation is the hidden hard problem: aligning STT and diarization timestamps fails at overlaps and boundary words. pyannoteAI’s cloud API interleaves overlapping speakers; the open exclusive diarization in community-1 picks the single most-likely speaker at overlaps so STT can transcribe cleanly, and works with any STT model.

From Transcription to Live Music: Gemini’s Audio Stack · 1.8K views · 19:34

Thor Schaeff, Google DeepMind

A demo-heavy tour of DeepMind’s audio stack, built on the thesis that Gemini 3’s deep audio understanding — emotion, pacing, accents, overlapping speakers, code-switching — is the foundation that powers everything from rich transcription to speech generation to real-time voice. The talk shows how one multimodal model family replaces the cascading speech-to-text-to-LLM pipeline with intelligence baked directly into the audio model.

  • One-call rich transcription — EchoScript (Gemini 3 Flash preview with a structured-output schema) extracts summary, speaker labels by name, timestamps, language ID, English translation, and emotion from a single API request.
  • Direct the voice, don’t pick it — instead of a huge TTS voice library, ~30 base voices are steered with “director’s notes” (audio profile, scene, performance guidance); a standard American base voice became an authentic Irish pub storyteller and a Singlish hawker-center pitch.
  • Gemini 3.1 Flash Live — full-duplex speech-to-speech over WebSocket, ingesting text, audio, and video (max 1 frame/second) in real time; a live demo amusingly recited a German poem in an Irish accent.
  • Lyria 3 music generation — now with lyrics: Lyria 3 Clip for 30-second jingles, Lyria 3 Pro for full songs; his “Live Jukebox” app gave the real-time model a Lyria tool and took a live request for a German techno-Schlager about the UK startup scene.
  • Free to try — everything runs in Google AI Studio (ai.studio/live) without a credit card, plus published Gemini coding-agent skills for the Live API.

Voice In, Visuals Out: The Agony and the Ecstasy · 1.3K views · 13:05

Allen Pike, Forestwalk Labs

Building on Karpathy’s claim that voice is humans’ preferred input and visuals our preferred output, Pike argues the “voice in, visuals out” pattern is now feasible — and sidesteps the brutal 200ms latency requirement of full voice-to-voice conversation, since visual responses feel seamless anywhere under one second. Forestwalk built an in-call agent that acts on spoken intent (e.g., filing a Linear issue mid-meeting within a second) without interrupting the conversation.

  • Latency budgets: 100ms feels instant, 1,000ms is the attention limit, but voice-to-voice conversation demands under 200ms — nearly impossible across network + STT + inference round trips.
  • Fast-model reality check: GPT-5 mini showed 5,000–10,000ms P95 latencies despite its size; a Haiku-class model on a latency-prioritized inference platform is required, handing heavier work off asynchronously to a larger model.
  • Eager inference intervals: send inference every 1–2 seconds as the person speaks rather than waiting for a second of silence, which alone blows the budget.
  • Stable prefix caching: keep the first ~90% of context identical request-to-request for up to 90% cheaper, faster inference, and minimize output tokens.

Production, enterprise & ops

The Production AI Playbook: Deploying Agents at Enterprise Scale · 23K views · 37:06

Sandipan Bhaumik, Databricks

Enterprise teams keep shipping AI demos that die in production because they lead with “which model?” instead of building the scaffolding that makes AI systems visible, measurable, and accountable. Success depends on five pillars established before any code: evaluation, observability, data foundation, orchestration, and governance.

  • Three failure gaps: observability (can’t trace decisions), evaluation (no defined business metric), and governance (no accountability when AI fails at 3 a.m.).
  • Three-layer evaluation: deterministic checks (regex, PII/NER), semantic checks (LLM-as-judge for groundedness), and behavioral checks (tool-call correctness, loop detection) — e.g. an agent returning a correct balance while silently making three duplicate DB calls.
  • Data foundation is ~60% of project time: split “question data” from “tracking data,” because “agents don’t forgive” bad data — they answer wrong, confidently.
  • Banking case study: 20,000 calls/month, an ~85K failed 6-month POC; his rebuild spent weeks 1–2 building a 200-case golden dataset from real answers, hit ~85% accuracy, and deferred model choice to week 7 (trivial once the eval set existed).
  • Post-launch save via tracing: a CSAT drop traced to an outdated policy doc whose new embeddings never reached the vector DB; testing also caught 47 PII breaches.
  • Governance as engineering discipline: prompt versioning as change management, model-change management using your own eval set, and running eval subsets in CI / the full suite on merge to main.

Your Agent’s Biggest Lie: “I Searched the Web” · 7.0K views · 15:49

Rafael Levi, Bright Data

Agents routinely claim “I searched the web” when they were actually blocked — then fabricate answers from stale training data because models are tuned to please. Levi argues this invisible failure mode (no error, no warning, just a wrong answer) is now a leading source of hallucinations, fake citations, and product links that 404, and the fix is making the agent’s web access indistinguishable from a human’s.

  • The blocking landscape: Cloudflare blocks AI crawling for roughly 20% of the web by default, and its new AI Labyrinth doesn’t block detected bots — it feeds them fake data, making hallucinations worse.
  • Head-to-head demo: identical GPT-5 prompts against Rightmove, LinkedIn, Instagram, Amazon, and TikTok — zero of five succeed without the Bright Data MCP, and the heavily anti-bot sites succeed with it.
  • The MCP’s 66 tools include real Google/Bing/DuckDuckGo search, scrape-as-markdown (no HTML tag tokens), 100-keyword batch search, and a remote scraping browser with unique fingerprints, pre-recorded mouse movement, and built-in CAPTCHA solving.
  • Legal line: public data only — scraping behind login means accepting terms of service, which Bright Data treats as illegal territory.
  • Token tip: don’t parse 10,000 pages with an LLM; have the LLM build a parser once and run it as a script, saving ~99% of tokens. Free tier: 5,000 requests/month.

Why Can’t Anyone Answer Questions About the Business? · 8.2K views · 19:06

Garrett Galow, WorkOS

The “someone asks a business question, an engineer writes SQL, results ping-pong through Slack” workflow doesn’t scale. WorkOS built Studio, an internal agentic workspace where anyone can ask questions against Snowflake, Linear, and Notion — and, when a question recurs, turn the answer into a reusable “widget”: sandboxed generated code bundling the UI, APIs, and validated queries.

  • Architecture: Slack bot or dashboard → API → LangGraph agent running Claude Opus, with an integration proxy to data sources and a guidance layer encoding schema rules (e.g., the four-joins-deep customer→user path every new employee used to memorize).
  • Just-in-time context: tool-usage context (like the Snowflake schema block) is injected only at tool-invocation time, not preloaded — preloading everything blows out the context window.
  • Distrust training data: the LLM is explicitly told not to trust its knowledge of WorkOS’s fast-changing product and to consult primary sources like the docs.
  • Validation before deploy: every generated SQL query is executed and checked for non-empty results before being hardcoded into a widget; after that, refreshes run declarative code with no LLM in the loop.
  • No RAG: “there’s no RAG database for us in all of this” — just direct tool invocation with context on top.

Self Driving Products: Product Signals to Pull Requests · 5.7K views · 15:39

Joshua Snyder, PostHog

Snyder demos PostHog’s alpha pipeline that turns observability data directly into pull requests — instead of reading dashboards, you wake up to green PRs. Signals (errors, session replays, Slack complaints, experiment results) are ingested, grouped into problem reports, researched by an agent, and, when actionable, fixed automatically, collapsing a days-long triage loop into an overnight process.

  • Pipeline stages — LLM safety classifier (drops prompt-injection attempts from public error sources), signal normalization with weights, grouping into reports, a Claude Agent SDK research agent in a Modal sandbox, actionability triage, then PR execution that reruns until CI is green.
  • Embedding gotcha — off-the-shelf embeddings cluster by structural similarity (all errors together, all Slack messages together); generating LLM queries from signals and matching those in embedding space fixed grouping.
  • Snapshot/rehydrate sandboxes — PR sandboxes are snapshotted and rehydrated on CI failures or review comments so agents iterate to green overnight.
  • “Tokens are free” while experimenting — running agents on the same problem 100 times reveals patterns you can compress into one-shot LLM calls, turning an unfeasibly expensive pipeline into a cheap one.
  • Scale context — PostHog ingests trillions of events a month; the endgame is auto-shipped experiments behind feature flags that learn from every rejected PR.

AI System Design: From Idea to Production · 5.3K views · 28:53

Apoorva Joshi, MongoDB

Joshi presents a repeatable four-phase framework for taking AI systems from idea to production — product requirements, system design, evaluation and monitoring, then optimization — arguing that “specs are the new code” and vibe-coding breaks down the moment real users and real consequences are involved. She grounds the whole framework in a worked example: an AI-assisted health insurance claims review system.

  • Solution-agnostic business problem — quantify the pain first (reviewers take 2 days per claim, 4x the industry standard; 12x for urgent cases) before deciding whether it’s an agent, RAG, or anything else.
  • SMART success metric — reduce urgent claim processing from 2 days to 1 hour within 90 days of launch; data pipelines must then refresh hourly to match.
  • Start simple, not agentic — the claims flow maps to RAG + control flow + human-in-the-loop, not a full autonomous agent; over-engineering before evaluating is the most common mistake.
  • Concrete metrics — input-guardrail claim rejection rate, missing-citation rate, faithfulness, and in production, human override rate and time-to-review as implicit success signals.
  • Production optimizations — reranking for retrieval, semantic caching for similar past claims, batch processing, and structured outputs that always include decision plus citations.

Build AI Systems for Discernment, Not Approval · 3.2K views · 25:53

Angel Ortmann Lee, Duolingo

A security engineer on the Duolingo English Test argues that human-in-the-loop systems quietly degrade into rubber stamps: humans defer to AI output instead of scrutinizing it. The fix is often not a better model or better people, but engineering the interaction itself so the interface forces independent judgment.

  • 50% false-accept rate: proctors who score above 90% on accuracy calibration accepted half of deliberately fake copy-typing cheat flags — coin-flip automation bias in a high-stakes exam.
  • A copy change fixed it: rewriting the proctor guideline (“the AI signal is preliminary; find independent video evidence”) raised rejection of fake flags by 21 points — no model or UI change.
  • Wharton “cognitive surrender”: correct AI raised human performance 25 points, wrong AI dropped it 15, and 80% of participants accepted wrong AI answers.
  • Split compound questions: headphone detection became two labels — “did the model see headphones?” vs. “is this a violation?” — so hearing aids stop polluting training data.
  • Match friction to stakes: add deliberate review gates where decisions are high-stakes; keep low-oversight chat frictionless.

Your AI Product Will Fail Unless You Can Explain It · 3.3K views · 6:02

Veronica Hylak, Hey AI

Hylak — whose AI explainers have hit 8 million views — argues that most AI products die not because the tech is weak but because nobody understands the pitch, and offers a three-part fix: identify the wound, make the product click, show the transformation. In a market where your shot lasts one elevator ride, “agentic AI orchestration platform for enterprise knowledge retrieval” makes buyers feel nothing.

  • Start with the wound, not what you built — in ~20 seconds: name the pain (“security teams drowning in disconnected tools, investigations buried in Slack threads”), say “we fix that,” then show how.
  • The 17-year-old test — if a teenager can’t grasp what you do, you’ll lose the room; ban unpicturable words like “orchestration” and “observability.”
  • Anchor to viral stories — instead of “agent observability platform,” say “if McDonald’s had used us, the bacon-on-ice-cream drive-thru clip never would have hit TikTok.”
  • Mental images beat definitions — “Devon, the AI software engineer” and “a smoke alarm for AI behavior” work; save the technical version for closing the sale.
  • Show before/after — not “we improve productivity,” but “support used to dig for 30 minutes; now one question, 10 seconds, sources attached.”

Deterministic Infra for Non-Deterministic AI Agents · 3.2K views · 7:14

Nishant Gupta, Meta Superintelligence Labs

Gupta, a tech lead on Meta’s training and inference infrastructure, argues that the agent reliability problem is “the great mismatch”: probabilistic, stateful, long-running agents are being run on cloud infrastructure built for short-lived deterministic requests. His thesis: hallucinations are the least interesting failure mode — infrastructure turns model mistakes into outages, so the winners will have the best systems, not the best prompts.

  • Retry amplification — an agent gets a tool error, generates a slightly different but still-invalid request, and loops; reasoning depth and GPU burn grow exponentially until a minor API error becomes a compute incident.
  • The model proposes, the platform decides — never let the model directly control production; proposals flow through validation, a policy engine, and an execution gateway.
  • Agentic control plane — as containers begat Kubernetes, agents demand an “operating system for autonomous AI” handling scheduling, memory coordination, policy, evaluation, and workload routing.
  • Multi-agent memory bugs — stale reads, conflicting updates, and context drift mean many “reasoning failures” are actually consistency failures.
  • Adapt, don’t invent — circuit breakers become tool isolation, rate limits become agent limits, resource quotas become cost governance; humans stay in the loop permanently as exception handlers.

The Missing Layer After Launch · 2.4K views · 19:33

Raphael Kalandadze, Wandero AI

Kalandadze argues that shipping an agent is now the easy part — the real work is the “missing layer” after launch: closing the feedback loop across hundreds of nondeterministic production conversations, where agents fail silently, recover by luck, or report success while botching the task (an itinerary “built” with wrong prices). His answer: operating agents is itself an agent problem — build a meta-harness of agents that watch, diagnose, and fix your agent.

  • Hourly log-monitoring agent: reads a one-hour window of trajectories with codebase access, diagnoses root causes, and opens PRs with diagrams and artifacts — fix-ready in about 30 minutes.
  • Fresh-context review agent: a separate critic scores and challenges each PR before a human sees it; the pair generates 10x more PRs daily than Wandero’s three-person team.
  • Session analyzer dashboard: scores every conversation for a system health number, with AI insights that connect patterns across sessions — sessions affected, root cause, recommended fix.
  • Computer-use agent as fake customer: logs into the real UI via a custom DOM-aware skill (faster than stock Codex browsing) to catch failures logs can’t see.

Building safe Payment Infrastructure for the autonomous economy · 2.3K views · 18:46

Steve Kaliski, Stripe

Kaliski argues that agents are already economic actors — every Claude Code or Codex session is spending money — and lays out the core design principle for agentic commerce: discovery and exploration benefit from non-determinism, but credentials, payments, and checkout require determinism. Handing an agent a raw card number means it can buy from the wrong place, buy the wrong thing, spend the wrong amount, or leak the credential; Stripe’s answer is to move payments off the browser and into scoped, API-driven primitives.

  • Shared payment tokens wrap a real credential (e.g. a Visa card) in a mandate scoped to a specific seller, amount, currency, and time window — his demo shows a $50 charge rejected against a $25/30-day token, then succeeding at the lower amount, with Stripe enforcing the limit while still passing brand/last-four to the seller’s risk systems.
  • Machine payments protocol (built with Tempo): protected endpoints return HTTP 402 with an encoded payload describing what’s being bought and how to pay; his demo settles a one-cent charge in USD on the Tempo blockchain.
  • Agentic Commerce Protocol (ACP), co-built with OpenAI, expresses product catalogs and checkout state as structured JSON so agents negotiate carts, tax, and shipping programmatically instead of scraping UIs — demoed against Stripe Press’s book store.
  • Stripe Projects is confirmed in Q&A as a wrapper over these primitives, and recurring budgets work like OAuth-style refresh flows on the same scoped credential.

Agents in Production: How OpenGov Built and Scaled OG Assist · 2.1K views · 18:30

Gabe De Mesa, OpenGov

De Mesa walks through how OpenGov — a 14-year-old government ERP vendor (budgeting, procurement, asset management, permitting) — built OG Assist, an agent embedded as a button in every product’s navigation bar, with each product team contributing its own tools and skills. It’s a grounded case study of running agents in production: real customers, real mutating operations, and the harness decisions that made it scale.

  • Big bet on Effect: the team migrated off LangGraph to a custom agent loop built on the Effect TypeScript library, gaining tracing, structured concurrency, dependency-injected hot-swappable language models, and typed tools/toolkits out of the box.
  • A2A protocol as contract: Google’s agent-to-agent spec (agent cards, extensions like A2UI) defines the schema both frontend and backend consume, driving team alignment.
  • Human-in-the-loop by default: the loop deterministically interrupts on tool calls requiring approval, showing accept/reject UI before any mutating operation.
  • Sandboxed execution: agents spin up ephemeral, isolated sandboxes on demand for code execution and file creation (demoed generating a downloadable PDF), torn down afterward.
  • Long context via rolling summarization plus recall over the summary, and evals running in CI against real completions alongside thumbs-up/down user feedback.

Design Patterns for AI Trust: Juries, Libraries, and Agent Tiers · 1.9K views · 17:09

Alex Bauer, Upside.tech

Bauer argues that hallucination has an older sibling — a trust problem: ask an agent for revenue and it confidently returns a wrong answer that looks exactly like a right one. His thesis is to manage agents like humans — establish trust through documentation, guides, and second opinions — illustrated through three patterns Upside built for agentic go-to-market data work.

  • Commander’s intent — his one practical tip: tell agents why you want something, borrowed from armed-forces doctrine; agents trained on human text tend to micromanage themselves unless pulled back to the why.
  • Anchor assets — a website rebuild failed in “YOLO mode” even with plan mode; it worked after scaffolding Claude with a product-capabilities reference where every claim carries citations back to source systems.
  • The librarian pattern — agents consult a knowledge service first, which supplies definitions (fiscal year is February–April; “pipeline” means stage two or later) plus schemas of prior failed queries as just-in-time memory.
  • Jury and judge — for multi-touch attribution, independent analyst agents each form evidence-cited opinions; a consensus judge weighs reasoning quality and expands the jury if consensus is weak.
  • Agent tiers — “friends don’t let friends use bad harnesses”: Slackbot’s new MCP client proved “horrifically stupid”; important work needs tier-two tools with powerful models, sub-agents, plan mode, and full MCP support.

GPU Cloud Deployment Without Leaving Your IDE · 1.8K views · 20:19

Audrey Hsu, RunPod

A live-demo walkthrough of Flash, RunPod’s Python SDK for deploying GPU functions straight from your local IDE. Hsu’s pitch: teams spend more time wrestling with CUDA versions, PyTorch compatibility, and Docker build cycles than with their models, and Flash collapses the commit-build-push-allocate loop into a single decorator so you can iterate on GPU code without ever leaving your editor.

  • One decorator to deploy — add @flash.endpoint to an async Python function and it’s packaged onto GPU cloud; everything else runs locally, with hot file reload repackaging changes instantly.
  • Config in the decorator — GPU family (H100 variants), max workers (5), active always-on workers (1), and idle timeout are all specified inline in the endpoint decorator.
  • Live model swap — after SDXL Turbo produced “abstract cats” flying over London, she swapped in DreamShaper (fine-tuned SD 1.5, 25 inference steps) with a code comment and re-ran immediately — no rebuild.
  • Pipeline orchestration — a chained demo used Qwen 3 for prompt engineering, DreamShaper for generation, and Nano Banana 2 to compose photos of RunPod’s founders.
  • Company scale — started in 2022 from spare crypto-mining GPUs offered free on Reddit; now 30+ data centers in 10 countries and $120M annual recurring revenue, with per-second billing (an H100 at ~$0.00116/second serverless).

Your Agent Failed in Prod. Good Luck Reproducing It. · 1.7K views · 14:10

Tisha Chawla & Susheem Koul, Microsoft

When an agent misfires in production, the standard playbook — pull the prompt from logs and rerun it — often can’t reproduce the failure, and temperature zero won’t save you. The speakers argue teams are asking the wrong question: stop chasing bitwise determinism from hosted APIs and instead build replayability, recording every run well enough to debug and retest it with zero model calls.

  • The $190,000 bug: an agent told to “sell $1,000 of stock” dumped 1000 into the quantity field, selling 1,000 shares at $190 each — while the API returned a clean 200 OK in 30ms and dashboards stayed green.
  • Why temp=0 fails: floating-point non-associativity, batch invariance (your request gets grouped with whatever hits the server that millisecond), and MoE expert-capacity rerouting mean identical prompts can yield dozens of different outputs.
  • Chronicle proof-of-concept: a @boundary annotation wraps any node (tool, LLM, RAG call), recording every input/output pair plus model version and build ID as a frozen trace.
  • Replay-as-test: stub the recorded LLM nodes, run the fixed tool live, and assert the bad order gets blocked — deterministic, rerunnable, and free since it never calls the model.

The Pipeline Is Dead · 4.4K views · 19:50

Iris ten Teije, Sky Valley Ambient Computing

Ten Teije argues the entire software distribution stack — CI, registries, app stores — exists to ship one frozen artifact to everyone, an assumption born of code being expensive to produce. Now that a correct, scoped change costs near zero and can be made in the user’s live session, development and distribution collapse into each other: instead of one build gated by feature flags, you deploy one canonical “stem” and every user runs their own bounded divergence of it.

  • Stem plus divergences: each per-user variant is bounded, isolated, immutable, and individually reversible — blast radius of one context, live rollback with no deploy — countering the “millions of AI codebases” brittleness objection.
  • Developer guardrails: mark fields that can never be dropped and zones (auth, payments) that are off-limits to adaptation.
  • CRM example: the system notices an investor always logs who intro’d each deal, hides fields she never fills, and reprioritizes her views — no forking, no R&D spend.
  • Coordination answer: “don’t merge code, merge intent” — users converge on the same goal via different code paths; generation is the easy 80%, provenance and validation are the business.

AI-Driven Multi-Document Correlation for Financial Compliance · 1.1K views · 19:00

Varsha Shah, Enterprise Technical Architect, Tata Consultancy Services (working for Microsoft)

Shah argues that the most significant fraud and compliance risks live between documents, not within them — a payroll record, vendor invoice, and tax filing can each pass individual validation while their combination reveals fraud. Her framework replaces document-level checks with cross-document intelligence, shifting compliance from reactive audit findings to predictive governance.

  • Three-component architecture: a graph-based entity correlation engine (“what is connected?”), an adaptive probabilistic risk model (“what is genuine risk?”), and a cross-jurisdictional normalization layer that standardizes currencies, tax rules, and reporting periods.
  • Evaluated at scale: ~3 million financial records spanning 5 years and four regulatory jurisdictions.
  • Detection numbers: roughly 91% precision, 87% recall, and an F1 score of 0.89 across jurisdictions.
  • Operational payoff: a 76% reduction in false positives and ~40% less manual audit effort, letting investigators focus only on high-risk cases.
  • Continuous learning loop: confirmed fraud cases and false positives from completed audits feed back into risk scoring, so detection adapts as fraud patterns evolve without manual rule updates.

Research to Reality: Bringing Frontier ML Research to Production · 796 views · 14:57

Vaidas Razgaitis, Higharc

Razgaitis, a senior research engineer on Higharc’s labs team, tackles the “baton pass” problem: ML researchers who can pull together frontier papers but haven’t built production APIs, handing off to software engineers who know robust code but not computer vision or LLM training. He frames it as a systems and process problem with three levers for increasing team velocity.

  • Research Prototype Taxonomy (RPT) document — a required handoff doc (kept in Notion) covering domain context, business goal, type contracts, persistence layer, system architecture, and merge plan; a TDD adapted for ML, written for “a software engineer we just hired from JP Morgan.”
  • Python monorepo of decoupled microservices — roughly one researcher per microservice, each a standalone FastAPI app with layered API/business-logic/data architecture, fronted by a gateway on a single Docker bridge network.
  • Graphite stacked diffs for decomposition — monolithic research prototypes are sliced along dependency axes into small PRs, enabling asynchronous review and targeted tapping of subject-matter experts.
  • Diagnostic questions — can you consistently estimate delivery timelines for research handoffs? Ambiguity signals problems upstream in legibility or repo structure.

Respect The Process · 746 views · 16:43

Andrew Dumit, Watershed

Dumit builds AI for product carbon footprints at Watershed, a domain where a 2020 study found six experts given identical data on the same bottle of wine produced answers varying by up to 50% — so validating the answer isn’t enough; you must validate the process. When coding agents replaced his tool-calling agent for editing supply-chain graphs (tens of thousands of nodes), they wrote Python when told TypeScript, edited graph data directly without lineage, and gaslit users by claiming edits they never made.

  • “Constrain the effects, not the expression” — the agent writes code freely, but all graph edits must pass through a typed TypeScript SDK that enforces which fields are editable versus derived.
  • Deterministic execution owned by the harness — a run-executor script lints agent code, detects conflicting edits, runs the code, and validates output artifacts, catching false completion claims.
  • Review artifacts for non-coders — e.g., an impact analysis over 50 graphs producing 749 edit actions and a 45.6% emissions reduction, inspectable without reading code.
  • 43% to 92% — eval accuracy improvement via prompt rewrites, few-shot SDK coaching, better tool ergonomics, and a plan-and-execute loop.

Chat and citations won’t save your vertical AI · — views · 0:00

Atul Ramachandran, Filed Inc

Vertical AI products promise “agents do the work while you sleep,” but chat is synchronous and citations push the verification burden back onto the customer — so neither keeps the promise. Ramachandran, CTO of tax-automation startup Filed ($17M raised; more revenue closed last month than the entire prior year), argues for a third abstraction layer beyond employees and self-service software: agentic delegation, where value decouples from both headcount and user visits.

  • Conveyor-belt model: users become supervisors, agents become workers — design every feature around delegating a task, not participating in it.
  • Four required components: delegatable tasks (find workflows taking 1+ hours), teachable skills, monitoring via task lists and traces, and control to pause/intervene.
  • Automatic skill capture: Filed learns user preferences from product usage rather than asking users to author skills — “a complete separate interface where users go and create skills, that won’t work.”
  • Plans before irreversible actions: before data entry that could erase existing tax-software data, the agent presents a plan for approval.
  • New north-star metric: weekly active sessions (tasks completed, human or agent) should go up while weekly active users go down.

Big picture, product & culture

6 Things to Know about AIE World’s Fair 2026 · 6.2K views · 17:50

swyx (Shawn Wang), AI Engineer

A behind-the-scenes orientation video from conference co-founder swyx laying out what’s new at the 2026 World’s Fair. The pitch: it’s the biggest AIE yet — bigger than prior events combined — positioned as the industry counterpart to academic conferences like NeurIPS and ICML, with a curation philosophy of keeping ~50% evergreen tracks and swapping in 50% brand-new ones.

  • New tracks — auto research, inference vs. post-training/pre-training (split from GPUs), memory and continual learning, plus a data quality track; an extra full day of content runs through July 4th.
  • 4x larger Expo at Moscone West with four Expo stages and themed “streets” (Attention Avenue, Diffusion Drive); an Explorer ticket covers the whole floor.
  • Posters on AI — an ACM-partnered poster session that also prints attendees’ tweets so authors can “defend your tweet” alongside traditional papers.
  • Token billionaire lounge — leadership level reserved for teams spending 1B+ tokens/month (some spend 10 trillion), plus daily McKinsey off-the-record sessions.
  • Vertical bets — FDE, agentic commerce, healthcare, GTM, and finance, with AI Engineer New York pre-announced as an all-finance event; 41+ side events including NEO (new engineer orientation, 300 signed up).

From Writing Code to Designing Systems: How the Developer Role is Changing — Chris Noring, Microsoft · 1.3K views · 23:05

Chris Noring, Microsoft

Noring argues the developer’s center of gravity has shifted from writing code to designing the systems and guardrails that direct agents, and proposes a concrete new workflow: start in the CLI, use the editor as a “control board” for fine adjustments, and scale by delegating work to background agents. Without guardrails, 20x more code just means 20x more slop — so the layered harness of agents.md, skills, and custom agents is the real engineering work.

  • CLI-first workflow: multiple terminals running “build me an app,” “fix this issue,” and “add a feature” simultaneously replaces opening the editor as the default entry point.
  • Guardrail hierarchy: agents.md (repo intent, architecture, dos and don’ts — “the absolute bare minimum”) → skills (strict, repeatable recipe contracts in .claude/skills or Copilot’s equivalent) → custom agents (personas with tools, MCP servers, and orchestration ability in .github/agents).
  • /delegate for scale: sending a session to GitHub spins up a sandboxed agent that opens a draft PR, keeping the human in the loop as reviewer and merger — same flow via “assign to agent” on any GitHub issue.
  • Working demos over PowerPoints: engineers now bring executives running MVPs instead of slide decks.

GTM Is You · 1.7K views · 12:35

Victoria Melnikova, Evil Martians

Building software has never been easier, so the bottleneck has moved to distribution — and in an era of AI-generated outreach slop, the founder’s personal brand is the most underrated competitive advantage a devtool startup has. Drawing on interviews with successful devtool founders, Melnikova argues go-to-market can’t be delegated: people buy from real humans, and AI can amplify your voice but can’t replace it.

  • The PlanetScale anecdote: CEO Sam Lambert says a shocking share of customers come from his personal Twitter account — “my literal favorite thing to do,” and undelegatable.
  • Product-market-fit compass: Evil Martians analyzed 37 successful devtools; 9 out of 10 early-stage clients have product signal stronger than revenue, meaning distribution — not product — is what needs fixing.
  • Come to San Francisco: Sentry’s David Cramer is blunt — “SF is unfair,” a network game worth playing regardless of internet memes.
  • Billboards as credibility proxy: bootstrapped Typesense used SF billboards to signal traction without VC funding milestones, and prospects concluded “I didn’t realize you were this big.”
  • Six-step GTM hygiene: crystallize value prop with paying customers, know your shelf space in a developer’s life, own the channels, befriend the ecosystem, know your foes, and distribute early — even before the product is ready.

You Can’t Prompt the Room: The Last Skill AI Won’t Replace · 1.6K views · 15:45

Balázs Horváth, VisualLabs

With code no longer the bottleneck, Horváth argues the scarce skill is requirements elicitation — getting stakeholders in a room and figuring out what’s actually worth building, because “you can’t prompt the room.” Drawing on 13 years bridging business and IT, he makes the case that the classic analyst toolkit (story mapping, business model canvas, user stories) is the new moat when everyone has the same models.

  • Hackathon evidence: of 21 agent ideas at VisualLabs’ internal hackathon, 17 were abandoned for creating no business value — only 4 changed how the company works.
  • User stories as prompts: AI was trained on the persona/need/why user-story structure, so packaging requirements that way (with acceptance criteria, tracked in a markdown file in the repo) yields measurably better generated software.
  • Four questions before building: whose problem is this, what does winning look like, what would make them refuse to use it, and would it change a decision.
  • Anti-patterns to audit: high shipping velocity with low adoption, demos as deliverables, and PRDs with no real user testers; replace “features shipped” with “features used more than twice.”

500 people vibe-coded for 30 days. I was one of them. · 1.7K views · 17:49

Sanja Grbic, Automattic

A product designer recounts Automattic’s “Radical Speed Month,” where roughly a third of the 1,400-person company — about 500 people — paused roadmap work for 30 days to pair up and ship real projects, starting 794 of them. Her argument: AI velocity in large organizations comes not from tools alone but from agency, enablement, and space to break old habits — in one month her decade-old design process completely shifted.

  • Three shipped projects in 30 days: a board-game session manager built by four people in 2 hours, a design system status tracker built solo in 2.5 weeks, and an iOS chat app for WooCommerce merchants (with WordPress.com auth and an AI answering agent) built by two designers in 6 days.
  • Engineers as enablers: the key insight from project one — an engineer who sets up GitHub and teaches Git basics has more impact than one who just writes more code.
  • Prototype-first process: the team inverted the usual Figma-to-code flow, building live prototypes with Claude Code first and returning to Figma only for visual fine-tuning.
  • Infrastructure that made it possible: a mandatory two-week role-specific AI enablement course and an internal MCP server exposing decades of company documentation to AI tools.

Running a Chess YouTube Channel entirely by AI — Stephan Steinfurt, TNG · 793 views · 16:31

Stephan Steinfurt, TNG

Steinfurt demos a fully automated pipeline that downloads chess games from Lichess every night, analyzes them with an agent, and uploads narrated explainer videos to YouTube — attacking what a German newspaper called “the holy grail of chess programming”: engines play chess brilliantly but can’t explain it, while LLMs explain well but can’t play. A German press piece guessed human-quality AI chess explanation was five years away; TNG’s channel is live now.

  • Tool-equipped agent on Gemini 3 Pro — the best chess model he’s seen (likely chess-specific post-training), given tools for legal moves, a playable board with take-backs, engine evaluation, and a “checks, captures, and threats” tool that surfaces candidate moves beyond the engine’s single best line.
  • Maya engine for human-like moves — the University of Toronto model predicts what a player at a given Elo would play, letting videos explain human-plausible mistakes, not just engine-perfect lines.
  • ElevenLabs V3 narration — the agent itself picks square highlights, arrows, “brilliant move” designations, and excited-voice audio tags.
  • Economics — roughly 20-30 cents per video, ~1 in 20 has a flawed description, and the channel has hit ~500K views and 4,000+ subscribers, mostly in the last month.

OpenClaw in Your Hand: Building a Physical AI Terminal · 1.1K views · 24:36

Lech Kalinowski, Callstack

Kalinowski, a physics PhD working in Callstack’s technology incubator, built a handheld, AI-native hardware terminal — a “Game Boy for LLMs” — as a remote controller for an OpenClaw instance running on his DGX Spark. The talk argues there is a quiet, distraction-free niche for text-first AI devices while everyone else chases audio and video interfaces, and he has filed a provisional patent in the space.

  • Dual-display design: a small monochrome OLED serves as the fast “live surface” for typing, while an e-paper display renders the bistable page on enter — pairing e-paper readability with responsive input.
  • Tiny-firmware constraints: an ESP32 dual-core MCU with fixed static buffers rendering one-bit images from pre-allocated memory — no markdown engine, no malloc — all powered by a single lithium-polymer cell.
  • Backend stack: firmware talks to a full backend serving an open-source 120B-parameter GPT model via TensorRT with an OpenAI-style LLM proxy, driving OpenClaw agent commands like “write a Java example and store it on my local machine.”
  • Surprise hit — RPG mode: four LLM-generated text-RPG worlds (cyberpunk, fantasy, deep-space void) with generated NPCs, maps, and memory; ironically the quiet text game runs on the world’s most powerful GPU.
  • Hardware field notes: software I2C pull-up issues, a silent GPIO 13 failure, a regulator that killed displays, and a cheap encoder needing extra capacitors — roughly 3 months and 130 commits.

Develop at Idea Velocity · 164 views · 15:28

Jeffrey Lee-Chan, Snapchat

A hands-on workshop on developing at “idea velocity” by managing fleets of coding agents instead of writing code directly. Lee-Chan’s stack routes brief Slack-style messages through OpenClaw — which keeps task context, specs, and history separate from implementation detail — down to orchestrated Claude Code workers, arguing the human’s role is now so formulaic that “an agent could replace me.”

  • Frictionless communication plus a central axis: OpenClaw for context/memory, a forked open-source agent-orchestrator for managed workers, and Cmux terminals with git worktrees for parallel personal control.
  • Manager-vs-worker context kills bias: a manager agent reviewing PR 294 recommended closing it in favor of a superseding PR — a worker grading its own code “would have been like, this PR is amazing.”
  • Model economics: he defaults to Codex 5.3 (5.4 “just uses more tokens”), then falls back to MiniMax when quota runs low.
  • Demos built this way: an AI RPG with a D&D dice system so players can’t “just win too much,” and a multi-model analysis site that fans a question out to several LLMs and synthesizes the answers.
  • Staging pattern: run a second OpenClaw instance for integration tests before merging to production — more tokens, more reliability.

State of the Union: Why Local, Why Now · — views · 0:00

Panel: Alex Cheema (EXO Labs), Ahmed Osman (Osmantic), Joseph Nelson (Roboflow), Matthew Berman — moderated by NVIDIA

The Local AI Summit’s opening panel argues local hit an inflection point this year: models, harnesses, and desktop-class hardware all got good enough that frontier-level intelligence can now run in the room, keeping IP, health data, and always-on agent costs under your control. The panelists’ consensus future is multi-model — frontier models plan, small specialized local models execute.

  • 10x on DGX Spark: EXO Labs embedded at NVIDIA HQ for a three-week “swarming” lab and got 10x inference performance over NVIDIA’s own playbook — “we didn’t solve any new computer science,” just retuned data-center configs (vLLM backend, quantization) for the Spark.
  • Frontier on your desk: Nemotron 3 Ultra, a 550B-parameter model, running at 30 tokens/second on four Sparks; GLM 5.2 called “Opus level” on a desk-side DGX Station.
  • GPT-4o in your pocket: Qwen 3.5 4B on an iPhone now roughly matches what “used to be served in data centers.”
  • Distillation pipeline in the wild: Roboflow’s MBARI customer uses SAM 3 plus LLM-as-judge to auto-label deep-sea footage, then distills to a small fixed-class model that runs in real time on submarines.
  • Open-source advocacy: righttointelligence.org launched as a non-technical way to defend open model access.

Full index (all talks, by views)

ViewsDateLenTalk
224,4702026-06-091:072026 AI Engineer Vibe Reel
128,6762026-06-0316:58Beyond Components: Designing Generative UI for MCP Apps — Ruben Casas, Postman
96,9592026-06-2920:43Building Great Agent Skills: The Missing Manual
59,0562026-07-0619:28Field Guide to Fable — Thariq Shihipar, Anthropic
50,1422026-06-1020:56Stop Making Models Bigger, Make Them Behave — Kobie Crawford, Snorkel
41,8632026-06-0428:03Text Diffusion — Brendan O’Donoghue, Google DeepMind
35,3542026-07-0816:02Everything we knew about software has changed — Theo Browne, @t3dotgg ​
30,5902026-06-0911:13RAG is dead, right?? — Kuba Rogut, Turbopuffer
30,1622026-06-2930:38The Future Is Domain-Specific Agents - Justin Schroeder, StandardAgents
28,7412026-06-1125:17Your Attention Is the Bottleneck, Not Your Agents — Zack Proser, WorkOS
23,2572026-06-1837:06The Production AI Playbook: Deploying Agents at Enterprise Scale — Sandipan Bhaumik, Databricks
17,6662026-06-2810:43We Cut 94% of AI Coding Tokens With a Local Code Index - Rajkumar Sakthivel, Tesco
16,3702026-06-2639:32Turn 10,994 Notes Into Memory - Paul Iusztin, Decoding AI & Louis-François Bouchard, Towards AI
15,2922026-07-0925:13The Golden Age of AI Engineering — Alexander Embiricos & Romain Huet & Peter Steinberger, OpenAI
13,1912026-06-287:00HTML is All You Need (for Agents to Make Graphics) - Amol Kapoor, Nori
12,0282026-06-0516:44Dark Factory: OpenClaw Ships Faster Than You Can Read the Diff — Vincent Koc, OpenClaw
11,6272026-06-1121:34The agent-ready web: Simplify user actions with WebMCP — Tara Agyemang, Google
9,3272026-06-0522:38Building Agent Interfaces: Lessons from Chrome DevTools (MCP) for Agents — Michael Hablich, Google
8,8592026-06-2523:48Recursive Coding Agents - Raymond Weitekamp, OpenProse
8,2072026-06-0616:06Building Interactive UIs in VS Code with MCP Apps — Marlene Mhangami & Liam Hampton, GitHub
8,1942026-06-1119:06Why Can’t Anyone Answer Questions About the Business? — Garrett Galow, WorkOS
7,7122026-06-1520:11Why MCP and ChatGPT Apps Use Double Iframes — Frédéric Barthelet, Alpic
7,1162026-06-2519:39Build Systems, Not Code - Angie Jones, Agentic AI Foundation
7,0222026-06-1715:49Your Agent’s Biggest Lie: “I Searched the Web” — Rafael Levi, Bright Data
6,9762026-06-0316:08Benchmarking semantic code retrieval on Claude Code — Kuba Rogut, Turbopuffer
6,6162026-06-0725:26From MCP to Scale: Pipelines That Build Themselves — Rafael Levi, Bright Data
6,2162026-06-2117:506 Things to Know about AIE World’s Fair 2026
5,9432026-07-0732:04What if the harness mattered more than the model? - Aditya Bhargava, Etsy
5,6832026-06-1015:39Self Driving Products: Product Signals to Pull Requests — Joshua Snyder, PostHog
5,6742026-06-2817:47Using Spec-Driven Development for Production Workflows - Erik Hanchett, AWS
5,3152026-06-2828:53AI System Design: From Idea to Production - Apoorva Joshi, MongoDB
4,8422026-06-2817:36Building an Autonomous Engineering Org - Angie Jones, Agentic AI Foundation
4,4572026-06-2934:50The Agentic AI Engineer - Benedikt Sanftl, Mutagent
4,4042026-07-0719:50The Pipeline Is Dead - Iris ten Teije, Sky Valley Ambient Computing
4,3922026-06-2515:11The Log Is The Agent - Ishaan Sehgal, Omnara
4,3762026-06-0619:04Evals Are Broken, Use Them Anyway — Ara Khan, Cline
4,1072026-07-0737:01Beyond the Harness: A Journey Towards Adaptative Engineering - Rajiv Chandegra, Annicha Labs
4,0682026-06-2930:52Frontier results, on device - RL Nabors, Arize
4,0052026-06-2830:14Agents Building Agents - Alfonso Graziano, Nearform
3,7852026-07-1019:33Understanding is the new bottleneck — Geoffrey Litt, Notion
3,3942026-07-0818:19Building an ACP-Compatible Agent Live — Bennet Fenner, Zed
3,3812026-07-0819:09Teaching Coding Agents to do Spreadsheets - Nuno Campos, Witan Labs
3,3772026-07-0528:54MCP Apps: Primitives, discovery, and the Future of Software - Pietro Zullo, Manufact, Inc
3,3562026-06-1618:46You Might Not Need 50 Diffusion Steps — Ziv Ilan, Nvidia
3,3282026-07-056:02Your AI Product Will Fail Unless You Can Explain It - Veronica Hylak, Hey AI
3,3272026-06-0416:30SWE-rebench: Lessons from Evaluating Coding Agents — Ibragim Badertdinov, Nebius
3,2212026-06-297:14Deterministic Infra for Non-Deterministic AI Agents - Nishant Gupta, Meta Superintelligence Labs
3,1682026-07-0725:53Build AI Systems for Discernment, Not Approval - Angel Ortmann Lee, Duolingo
2,9902026-07-0522:35Continual Learning for AI Agents: From Failures to Durable Improvements - Soheil Feizi, RELAI
2,6902026-06-2620:57Stop Writing Tone Instructions. Layer Them. - Isadora Martin-Dye, Isadora & Co
2,6862026-07-0220:13The Prompt Is Still a Punch Card - Ted Johnson, JoinIn AI
2,5702026-06-0423:25The Art & Science of Benchmarking Agents — Vincent Chen, Snorkel AI
2,3792026-07-0519:33The Missing Layer After Launch - Raphael Kalandadze, Wandero AI
2,2522026-06-0618:46Building safe Payment Infrastructure for the autonomous economy — Steve Kaliski, Stripe
2,1722026-06-2820:41Structuring the Unstructured - Cedric Clyburn, Red Hat
2,1602026-06-0525:20Beyond Transcription: Building Voice AI That Understands Conversations — Hervé Bredin, pyannoteAI
2,0952026-07-1021:35Should AI Engineers Still Read Code in 2026? The Z/L Continuum — Alex Volkov, ThursdAI
2,0642026-06-2618:30Agents in Production: How OpenGov Built and Scaled OG Assist - Gabe De Mesa, OpenGov
2,0052026-06-2620:00A Genius With Amnesia - Victor Savkin, Nx
1,9682026-07-0810:08Your coding agent doesn’t always follow your rules — Talha Sheikh, Checkout.com
1,8982026-07-1117:09Design Patterns for AI Trust: Juries, Libraries, and Agent Tiers — Alex Bauer, Upside.tech
1,8062026-06-0920:19GPU Cloud Deployment Without Leaving Your IDE — Audry Hsu, RunPod
1,8042026-06-0919:34From Transcription to Live Music: Gemini’s Audio Stack — Thor Schaeff, Google DeepMind
1,7462026-07-089:11I Run a Fleet of AI Agents Across Three Machines. Here’s What Broke. - Kyle Jaejun Lee, KRAFTON
1,7132026-07-0717:49500 people vibe-coded for 30 days. I was one of them. - Sanja Grbic, Automattic
1,7022026-06-2914:10Your Agent Failed in Prod. Good Luck Reproducing It. - Tisha Chawla & Susheem Koul, Microsoft
1,6962026-06-1020:52Sovereign Escape Velocity: Ownership w Open Models — Gus Martins, & Ian Ballantyne, Google DeepMind
1,6622026-07-0712:35GTM Is You - Victoria Melnikova, Evil Martians
1,6232026-06-285:55Your Agent Is Wasting Tokens and You Don’t Know It - Erik Hanchett, AWS
1,6032026-07-0818:00Think You Can Build a Game with AI? Think Again! - Danielle An & David Hoe, Meta
1,5882026-06-258:12Production Evals For Agentic AI Systems - Nishant Gupta, Meta Superintelligence Labs
1,5682026-06-2915:45You Can’t Prompt the Room: The Last Skill AI Won’t Replace - Balázs Horváth, VisualLabs
1,5172026-06-284:26Browser Agents Don’t Need Better Models. They Need Better Eyes. - Kushan Raj, ARK
1,5012026-06-2917:33The Prompt is the Platform - Dominik Tornow, Resonate HQ
1,4942026-06-2914:41Using RL Agent to Detect and Remediate ETL Pipeline Failures - Anna Marie Benzon
1,4082026-07-0714:28How we taught agents to use good retrieval - Hanna Lichtenberg, Mixedbread AI
1,2832026-06-2813:05Voice In, Visuals Out: The Agony and the Ecstasy - Allen Pike, Forestwalk Labs
1,2722026-07-1123:05From Writing Code to Designing Systems: How the Developer Role is Changing — Chris Noring, Microsoft
1,1572026-06-2828:27The 100-Tool Agent Is a Trap - Sohail Shaikh & Ankush Rastogi, Prosodica
1,1542026-06-2558:17The Miranda Hypothesis: How Hamilton Poisoned Persona Evals - Jacob E. Thomas, Results Gen
1,1472026-06-2824:36OpenClaw in Your Hand: Building a Physical AI Terminal - Lech Kalinowski, Callstack
1,1422026-07-0712:58SWE-Marathon: Evaluating Coding Agents at Billion-Token Scale - Rishi Desai, Abundant AI
1,1222026-06-2819:00AI-Driven Multi-Document Correlation for Financial Compliance - Varsha Shah, Independent
1,0502026-07-089:58Your agent is blindfolded — Johan Lajili, Poolside AI
8812026-06-2815:37User Signal Dies at the Retrieval Boundary - Sonam Pankaj, StarlightSearch
8622026-06-285:52When All Context Matters: Extended Cache Augmented Generation - Luis Romero-Sevilla, Orbis
7962026-06-2814:57Research to Reality: Bringing Frontier ML Research to Production - Vaidas Razgaitis, Higharc
7932026-07-0816:31Running a Chess YouTube Channel entirely by AI — Stephan Steinfurt, TNG
7902026-06-2845:48Bypassing the Multimodal Tax: Hybrid RAG, SQL RRF & UI Telemetry - Abed Matini, Ogilvy
7462026-07-0716:43Respect The Process - Andrew Dumit, Watershed Technology Inc.
5542026-07-0813:58Your LLM Deception Monitor Is Broken. The Fix Is in the Training Data - Sachin Kumar, LexisNexis
1642026-07-1115:28Develop at Idea Velocity - Jeffrey Lee-Chan, Snapchat
0:00From fork() to Fleet: Designing an Agent Sandbox Cloud — Abhishek Bhardwaj, OpenAI
0:00State of the Union: Why Local, Why Now — NVIDIA, Osmantic, Roboflow, EXO Labs, @Matthew Berman
0:00Chat and citations won’t save your vertical AI - Atul Ramachandran, Filed Inc
15:50Road to 5 Million Tokens: Breaking Barriers in Long Context Training — Max Ryabinin, Together AI
26:27Why More Context Makes Your Agent Dumber and What to Do About It — Nupur Sharma, Qodo
24:51Why Eval++ Is the Next Great Compute Primitive — Sunil Pai & Matt Carey, Cloudflare
16:32LLM Observability, Evaluation, Experimentation Platform — Dat Ngo, Arize
13:26Under 5 minutes to a deployed LLM endpoint — Audry Hsu, RunPod

No captions were available for two talks, so they are listed by title only: “From fork() to Fleet: Designing an Agent Sandbox Cloud — OpenAI” and “Using RL Agent to Detect and Remediate ETL Pipeline Failures”. The 1-minute 2026 AI Engineer Vibe Reel (224K views) is a montage, not a talk.


Source material: raw auto-caption transcripts for nearly every talk (98 files, ~319K words) live in the youtube-feed archive repo — unlabeled and skim-only. Speaker-labeled archive entries are produced with the interview-transcriber.