Talk Notes · Classification & Key-Point Synthesis

AI Engineering Talks — Classified & Distilled

A systematic read-through of all 100 conference and YouTube talk notes — sorted into 9 thematic categories, with each talk distilled into a short key-point summary, plus 9 cross-cutting insights drawn from the entire corpus. Every summary is doubly grounded: click a talk title to expand the full original notes embedded in this page, or follow "▶ Source video" back to the original YouTube talk.

100Talk notes
9Thematic categories
9Cross-cutting insights

Overview: Category Distribution

All 100 talks are filed under a single primary theme across 9 categories (A–I). Use the tabs above to jump to any category; every card includes the speaker/company, a key-point summary, and a link to the source video.

Category distribution (100 talks)

A BI / Analytics / Semantic Layer
11
B Agent Evaluation & Observability
15
C Agent Architecture, Reliability & Productionization
12
D Agent Security & Identity
6
E Context / Memory / RAG
11
F Data Infrastructure
14
G Model Training & Inference
15
H AI Coding & AI-Native Engineering
9
I Product Strategy & Business
6

How to read this report

This report focuses on three things: ① Classification — organizing the 100 talks into 9 thematic categories; ② Key-point summaries — a 2–3 sentence summary distilling the core argument of each talk; ③ Thematic analysis — converging shared cross-talk trends into 9 insights.

Every claim is traceable: card titles and "▶ Source video" link to the original YouTube talk; the "Related talks" links after each insight jump to the matching card. Content language: English.

Key Themes: 9 Insights Cutting Across the Corpus

The key points of all 100 talks distilled into 9 cross-talk throughlines. The "Related talks" after each one jump to that talk's card (which contains the original video link as a reference).

01

The semantic layer is being redefined: sinking from BI tools down into "context that agents can read and write"

Several speakers argue that the traditional BI semantic layer actually becomes a ceiling for AI agents — its coverage is limited to pre-defined metrics, and LLMs perform far worse on a proprietary DSL than on SQL. The emerging consensus is to "deconstruct" semantics into text context that agents can read and write (query history, column values, metric definitions, knowledge graphs), and to push the semantic layer down from BI tools into the data layer (e.g., Open Semantic Interchange). This is the architectural question that data-analytics tools most need to take a side on in the agent era.

02

The key to reliable text-to-SQL is grounding and data modeling, not a bigger model

ADE-bench, Cortex Code, WorkOS, Vercel D0, and Snorkel's 4B model all point to the same conclusion: real-time schema/RBAC grounding, column and table descriptions, a semantic layer, and "tool-use discipline" (avoiding hallucinated table names and SELECT *, and recovering from errors) sharply improve accuracy — "humans don't read the docs, but models do." An RL-fine-tuned 4B model even beats a 235B generalist on tool discipline alone. Investing deeply in metadata and making SQL error-recovery robust often pays off more than chasing a bigger model.

03

Evals move from "gut feel" to data-driven engineering

A consistent message across Braintrust, Arize, Meta, Cline, Agenta, and others: turn agent testing from a "vibe check" into data-driven engineering — read traces to find failure modes, design binary pass/fail scorers, use a calibrated LLM-as-judge, and build a data flywheel from a golden dataset. And static benchmarks are insufficient for continuously adapting systems, which need "live, online" evaluation. Several speakers say bluntly that eval capability is an AI team's moat.

04

From PoC to production: reliability is systems engineering, not a model problem

"95% of GenAI pilots stall at the POC stage" comes up again and again, and the breakthrough lies not in the model but in explicit data read/write contracts, durable/recoverable execution, three-way observability (kill switch/replay/override), and progressive autonomy (start human-in-the-loop, build confidence in low-risk scenarios, then loosen the reins). Reliability is repeatedly framed as an engineering and process problem, not something to wait for a stronger model to solve.

05

Context engineering and memory decide whether an agent uses the right data

The shared philosophy: push complexity into the "indexing / data-structure" stage rather than the query-time prompt. Retrieval is a whole toolkit — vector + full-text + grep + filter — that the agent calls iteratively; memory should be split into short-term / semantic / procedural and have its lifecycle managed. Whether you can reliably retrieve "the right context" directly determines the quality of downstream generation.

06

Data infrastructure is being reshaped for AI / agents

Unified OLTP+OLAP, real-time CDC, data lineage, deconstructed databases, and a "database experience designed for agents" are all trending; meanwhile data freshness, governance, and "certified datasets" are prerequisites for trustworthy analytics (one speaker argues only L3-grade certified datasets are fit for AI). The timeliness and governance maturity of the underlying data set the ceiling for everything built on top.

07

Security and identity are prerequisites for agents to access enterprise data

Agents hand decisions off to a non-deterministic LLM, so perimeter-based security breaks down; what's needed is least privilege, task-scoped credentials, turning identity into an always-on control plane, and runtime PII protection. The core principle: "if a human isn't allowed to see it, neither is the agent." This is the key threshold for autonomous agents to enter the corporate network and win acceptance from security teams.

08

The future of BI and the product data flywheel

BI won't be replaced by chat; it will be upgraded into a "code-based, agent-driven, self-optimizing organizational intelligence system." The explosion of self-service content is actually a "goldmine of intent signals," where feedback → automatically opened PRs form a self-reinforcing loop. Several speakers argue every company should redesign its product to capture preference signals and build a proprietary data moat.

09

Small, specialized models / agents beat big and general-purpose ones

An RL-fine-tuned 4B model beats a 235B generalist on tool discipline at one-tenth the inference cost; composing domain-specific agents is more token-efficient and easier to govern than stuffing context into a single mega-agent. The trend is to break tasks into specialized sub-agents and make good use of model routing to control cost.

A

BI / Analytics / Semantic Layer 11 talks

Semantic layers, text-to-SQL, self-service analytics, conversational analytics, causal decision-making — the core themes of data analytics and business intelligence.

#02 A · BI / Analytics / Semantic Layer

A Guide to Deploy an Enterprise-Ready ClawdBot in Under 30 Minutes

Ethan, TextQL

Demonstrates how to deploy an enterprise-ready data agent in under 30 minutes — one that proactively cleans up messy data, runs SQL, and combines external APIs, running long background "brute-force searches" of the database to proactively surface revenue opportunities and cost-optimization points and suggest next steps, rather than passively waiting for people to ask questions. It also emphasizes security design — semantic layers, PII anonymization, a sandbox proxy, and Okta / Azure AD identity integration — that lets CISOs feel confident putting it into production.

#11 A · BI / Analytics / Semantic Layer

Agents Are Eating the Semantic Layer

Zenlytic

Argues that the traditional semantic layer has become a ceiling for AI agents: its coverage is limited to predefined metrics, and LLMs perform far worse on a proprietary DSL than on SQL, leaving them unable to answer real business questions that require multiple CTEs, window functions, or cohort comparisons. Proposes "decomposing" semantics into text-based context that agents can read and write (query history, field values, instructions, memory, knowledge graphs), letting agents write arbitrary SQL directly and using semantics for explanation and governance instead.

#15 A · BI / Analytics / Semantic Layer

Benchmarking AI Agents Against Realistic Analytical Tasks with ADE-bench

ADE-bench team

Points out that clean benchmarks that only test "LLM writes SQL" are far removed from real analytical work, so the team designed ADE-bench: deliberately "breaking" models and changing business rules inside messy DBT projects full of legacy code, macros, and third-party packages, to test whether an agent can navigate context, understand ambiguous business instructions, and fix the data world. Practical insight: semantic layers plus data modeling plus field/table descriptions substantially boost accuracy ("humans don't read the docs, but Claude does") — data agents currently complete roughly 60-70% of the work.

#24 A · BI / Analytics / Semantic Layer

Building the Blueprint for Scalable Data Products in Public Sector

Chief Data Officer, City and County of San Francisco

San Francisco's CDO argues that "AI is cheap — the hard part is data and infrastructure governance," pointing out that government data is fragmented and lacks shared definitions and SLAs. She splits maturity into L1/L2/L3 (only L3 — with certified datasets, clear owners, SLAs, and strict RBAC — is safe to put AI on). She proposes a "three-question checklist" and the principle "if a person can't see it, neither can the agent," using a unified platform with a semantic layer as the example.

#32 A · BI / Analytics / Semantic Layer

Democratizing Analytics via Self Service

Netflix

Netflix uses a semantic layer and self-service tools to extend "who looks at data" to non-technical roles, proposing the 3D principle (Democratize / Discover / Define) and splitting the semantic layer into a semantic model, query engine, and UI. It then extends to an AI-native conversational analytics stack: data layer → semantic layer → MCP tool layer → agent layer → skills → evaluation layer, and proposes the "analytics trilemma" of Speed / Flexibility / Accuracy, emphasizing that metrics should be run like a product.

#41 A · BI / Analytics / Semantic Layer

From Prediction to Uplift: Causal Modeling for Better Decisions

Intuit

Explains that "predictive models" can only answer "who will do X," not "who will change their behavior because of an intervention" — yet the latter is what actually matters for decisions. Introduces uplift (causal) modeling: using potential outcomes, CATE, and S-learner/T-learner to estimate intervention gains, evaluated with uplift-by-decile curves. Conclusion: when treatment has a cost and can't be applied to everyone equally, you should shift from prediction to estimating causal uplift.

#61 A · BI / Analytics / Semantic Layer

Powering Agents with Context Graphs & Ontologies

Datalinks

Argues that real enterprise data mostly lives in tables, so it uses a "tabular graph" plus an ontology, linking PDFs, wide tables, and extensive discussion cell-to-cell into a queryable context layer, letting agents jump between tables with programming-language-like queries to answer business questions. The modeling principle: every wide table should work as an executive dashboard on its own, with field semantics clear to both humans and LLMs, then linked into a graph via connecting fields; agent decision trajectories are also stored as a context graph for auditing.

#90 A · BI / Analytics / Semantic Layer

We Solved Agent Building

Vercel

Shares the evolution of Vercel's internal text-to-SQL data agent, D0: from stuffing the entire Snowflake semantic layer (roughly 300 entities) into the prompt, to decomposing into multiple sub-agents, and finally — inspired by Claude Code — switching to "filesystem + minimal tools (read/write files, plotting, bash) + skill distillation," automatically distilling common questions into 40+ reusable skills (handling around 2,000 queries a day). This experience was ultimately abstracted into a "Next.js for agents" framework.

#44 A · BI / Analytics / Semantic Layer

Welcome to Our Data Benchmark, Where Everything's Made Up and the Points Don't Matter

Izzy, Hex

Criticizes existing public benchmarks for data-analysis agents (DS-Bench, Spider, Tinybird, etc.) for being mostly single-turn text-to-SQL, built on fabricated data and brittle string matching — nothing like real data work (clarifying what "revenue" means, whether units are cents or dollars, broken ETL). Argues that evaluation should be "stateful, long-running, and agentic," testing whether a model can learn from its mistakes, and introduces the team's own Metric City: a 90-day simulation.

#91 A · BI / Analytics / Semantic Layer

What Happens to BI in an AI-First World?

Sean, Evidence

Argues that in the AI era, BI won't be replaced by chat — it will be upgraded into a "codified, agent-driven, self-optimizing organizational intelligence system." The core is an "analytics as code" repo (YAML/markdown/SQL plus full lineage), where chat/reports/dashboards can be upgraded or downgraded into one another, and the explosion of self-service content is treated as a "goldmine of intent signals" fed to AI to form a self-reinforcing feedback loop (customer feedback → automatic PR). The data team's role shifts from "taking orders to build reports" to running the entire intelligence-system product.

#96 A · BI / Analytics / Semantic Layer

Why Can't Anyone Answer Questions About the Business?

Garrett Galow, WorkOS

Introduces the internal tool Studio: it lets support and operations staff query Snowflake/Linear/Notion in natural language and generate reusable widgets (declarative JS that no longer goes through an LLM at execution time, so it's cheap and behaves predictably). The three pillars of reliability are sequencing (preflight checks, injecting schema on demand only at the moment a tool is actually needed), layering (multi-layer prompts telling the model not to trust its own stale knowledge and to trust the primary source instead), and validation (actually running the query to confirm there's data before baking it into the widget).

B

Agent Evaluation & Observability 15 talks

Evals, LLM-as-judge, trace/trajectory observability, benchmarks: turning agent quality from "gut feeling" into data-driven engineering.

#01 B · Agent Evaluation & Observability

5 Lessons from the Classroom for Evaluating Agents

Andrew Zigler, Dev Interrupted

Applies classroom teaching experience (backward design, a daily agenda, rubrics that demand "show your work") to agent design and evaluation, arguing for structured task graphs in place of scattered notes so humans and multiple agents can share context. The core argument: a good eval isn't a radar chart of abstract scores, but a set of discrete binary pass/fail checkpoints that let you inspect the intermediate decision chain and feed failure signals back into the prompt, tools, and architecture.

#03 B · Agent Evaluation & Observability

AI Attribution: Measuring What AI Actually Did

Shopify

Presents a framework for measuring AI contribution: an "evidence ladder" (usage → acceptance → retention → outcome → incrementality) plus field-level attribution status, quantifying how much of what AI produces is actually kept and creates value, while emphasizing that "assisted" (helping someone get past a blank page) is itself a success. Warns that this must be paired with guardrail metrics (edit rate, rollback rate, retention) to avoid Goodhart's-law traps, and that attribution can only detect patterns — incrementality still needs to be proven with A/B experiments.

#08 B · Agent Evaluation & Observability

Agent Optimization with Pydantic AI: GEPA, Evals, Feedback Loops

Samuel Colvin, Pydantic

Using data extraction as the example, walks through a full pipeline — from a Pydantic AI agent, a golden dataset, and a deterministic evaluator, to using GEPA (a genetic algorithm plus Pareto frontier) to automatically iterate the system prompt — pushing accuracy from a hand-written 0.92 to 0.967. Also demonstrates using Logfire managed variables to hot-update prompts/models without redeploying and to run A/B tests (e.g., Shopify using a small model plus GEPA to cut annual cost from 5 million down to 60-70K).

#10 B · Agent Evaluation & Observability

Agentic Evaluations at Scale, For Everybody

Nicholas Kang & Michael Aaron, Google DeepMind (Kaggle)

Proposes rebuilding agent evaluation infrastructure at the "community level" to solve the problems of scattered, outdated evaluations, lack of reproducibility, and too few designers — launching four initiatives: hackathons, standardized Agent exams, Game Arena, and Kaggle Benchmarks. Using the SWE-Bench Pro example, shows that switching harnesses alone can swing scores by 20+ percentage points, emphasizing that many "model evals" actually conflate the model with the tool chain and prompt engineering.

#20 B · Agent Evaluation & Observability

Build Trustworthy LLM Apps Powered by Agentic Evals

Meta

Argues for treating agentic eval as an "observability and control layer" that simultaneously measures capability, reliability, safety, and cost, and proposes engineering mitigations for non-determinism, hallucination, tool misuse, accumulated error over long chains, and stale memory (fixed seeds/structured outputs, requiring citations, idempotency and sagas, plan-act-observe-replan, memory tiering and TTL). Splits graders into three types — code-based, model-based, and human — and introduces the open-source GAIA 2 / ARE benchmarks.

#36 B · Agent Evaluation & Observability

Evals 101: Intro to Evals for Engineers

Braintrust

Teaches engineers to treat eval as a fixed loop of "observe real traces → find failure modes → design scorers → iterate," emphasizing that eval is not unit testing and shouldn't chase a perfect score. Introduces LLM-as-judge (designed to verify rather than re-solve), code-based scorers, and combinations of the two, arguing that eval is a team activity requiring domain-expert labeling, and that since most cases lack a single ground truth, scoring should be compressed to binary.

#37 B · Agent Evaluation & Observability

Evals Are Broken, Use Them Anyway

Ara Khan, Cline

Shares how to hill-climb a coding agent from 43% upward on a realistic benchmark like Terminal Bench — the key isn't swapping in a stronger model but harness and prompt engineering. Proposes guidelines for reading evals (don't fully trust official scores; find evals that are recent and precise enough), uses a separate agent to read failure traces for attribution, and specifically warns about the danger of overfitting to the benchmark.

#42 B · Agent Evaluation & Observability

From Spans to Trajectories: Observability for Long-Running Agents

HoneyHive

Argues that long-running agents capable of thousands of steps break traditional spans/traces, requiring a "trajectory" view instead, and catalogs failure modes such as context rot, amnesia, YOLO, delegation, and stochasticity. Proposes replacing static evals with "observability-driven development": instrument thoroughly first, run 100-1,000 real traffic samples, use clustering to discover task types, then write a rubric evaluator and guardrails/alerting for each type.

#53 B · Agent Evaluation & Observability

Judge the Judge: Building LLM Evaluators That Actually Work with GEPA

Mahmoud Mabrouk, Agenta AI

Demonstrates using the evolutionary prompt-optimization framework GEPA to calibrate an LLM-as-a-judge so it aligns with human annotations, avoiding evaluations that are "confidently wrong." Using an airline customer-service agent as the example, emphasizes doing error analysis first, designing binary metrics, and collecting expert annotations with reasons attached, then iterating with a reflection template carrying a strong prior — raising judge accuracy from about 60% to about 74%.

#58 B · Agent Evaluation & Observability

Malleable Evals: Why Are We Evaluating Adaptive Systems with Static Tests?

Vincent Koc, OpenClaw

Argues that evaluating agentic systems that "keep adapting and differ from person to person, organization to organization" with "static" benchmarks is no longer sufficient — calling this "eval calcification." Proposes that eval should shift from "matching the correct answer" to aligning with "the outcome that was intended" (fuzzy criteria can be described with rubrics), and should itself become a living agent: self-curating test sets from real traces, running as a standing online evaluation, and feeding telemetry back into the loop for self-repair.

#70 B · Agent Evaluation & Observability

Ship Real Agents: Hands-On Evals for Agentic Applications

Laurie Voss, Arize

Runs a hands-on workshop using Arize Phoenix plus the Claude Agent SDK to turn agent testing from a vibe check into data-driven engineering: first read traces to classify failures, then apply three complementary approaches — code eval, LLM-as-judge, and human eval — while distinguishing capability evals from regression evals. Key lesson: "test the outcome, not the path"; use a golden dataset for meta-eval to compute the judge's precision/recall; evals become a data flywheel and a moat.

#71 B · Agent Evaluation & Observability

Shipping AI That Works: An Evaluation Framework for PMs

Aman Khan, Arize

Gives PMs an evaluation framework for AI products: breaking down eval into the four components of LLM-as-judge (role / context / goal / label), and emphasizing that the judge should output text labels rather than scores. Using a multi-agent travel-itinerary demo, shows building a dataset from traces, running A/B tests in a prompt playground, then using human annotation to "eval your eval." The core idea: treat eval plus a labeled dataset plus target values as the new PRD / acceptance criteria.

#74 B · Agent Evaluation & Observability

Systematic LLM Prompt Optimization with DSPy and Databricks

Databricks

Uses DSPy plus Databricks to turn prompt tuning into a trainable pipeline, treating the prompt as an optimizable parameter via signatures/modules/optimizers. The method has two layers: first use 30-100 SME gold-standard examples with MIPROv2 to align the LLM judge, then use GEPA with the judge as the metric to optimize the main prompt. Using maintenance-message urgency classification as the example, accuracy rises from about 70% to nearly 100%.

#76 B · Agent Evaluation & Observability

The Agentic AI Engineer

Benedikt Sanftl, Mutagent

Turns the human engineer's job of iterating on an agent (spec → build → eval → deploy → monitor → diagnose → optimize) into an eval-driven dual loop run by a set of collaborating agents. An evaluator agent automatically builds datasets and evaluation logic; a diagnose agent samples traces to find failure modes, performs root-cause analysis, and outputs fix tasks that can be fed directly to a coding agent. Also argues for separating spec from implementation.

#98 B · Agent Evaluation & Observability

Your Agent Failed in Prod. Good Luck Reproducing It.

Tisha Chawla & Susheem Koul, Microsoft

Points out that once a production agent fails, it's nearly impossible to reproduce, and debunks the myth that "temperature=0 means deterministic" (GPU floating point, batching, and MoE routing all introduce nondeterminism). Argues the goal isn't bitwise determinism but replayability: use record & replay to log input/output and metadata at each node's "logical boundary," so you can later replay without calling the model to pinpoint the failing node, and freeze the failing trace into a deterministic test.

C

Agent Architecture, Reliability & Productionization 12 talks

Architectural choices on the road from PoC to production: durability, long-running execution, coordination / state / control, and progressive autonomy.

#05 C · Agent Architecture, Reliability & Productionization

AI System Design: From Idea to Production

Apoorva Joshi, MongoDB

Using a health-insurance claims-review system as the example, presents a four-stage framework — product requirements → system design → evaluation & monitoring → optimization — emphasizing that in the age of AI writing code, the hard part is defining the product spec and system design, not the implementation. Covers data strategy (hybrid search combining vectors and metadata), RAG/router/human-in-the-loop patterns, guardrails and domain-metric evaluation, and optimizations such as reranking, semantic caching, and structured outputs.

#13 C · Agent Architecture, Reliability & Productionization

Agents Building Agents

Alfonso Graziano, Nearform

Argues that building a reliable agent is a systems-engineering problem, not a search for a magic prompt. The core is a golden dataset plus eval plus scorer to quantify quality, with AutoAgent (having a coding agent read the target agent's code/traces, repeatedly propose hypotheses, modify prompts/tools, run evals, keep what works and roll back what doesn't) doing automatic optimization. Real user traces and feedback are clustered into failure modes and fed back into eval, with Harness Engineering used to build a reliable environment for automatic improvement.

#16 C · Agent Architecture, Reliability & Productionization

Beyond the AI Pilot: A Framework for Building Systems That Actually Deliver

InterSystems

Argues that 95% of AI pilots get stuck at the POC stage, mainly due to two gaps: the infrastructure gap (AI can't access accurate, fresh business context, and has no safe, controlled way to execute) and the execution gap (the vision was never broken down into an executable plan). Proposes three tools — the Read Contract, the Write Contract, and the Execution Ladder — backed up with cases such as Air Canada, Zillow, Knight Capital, and JP Morgan COIN.

#19 C · Agent Architecture, Reliability & Productionization

Breaking the Proof-of-Concept Cycle: Stop Prototyping and Get Into Production

Neha, GitLab

Presents three steps for getting AI/data prototypes out of "prototype hell": Embrace the chaos (provide a safe space to experiment, and hold retros even on failures), Find product-market fit (judge by actual usage behavior rather than verbal feedback, watching for prototypes that spread virally), and Thin the garden (deliberately kill off most prototypes and concentrate effort on productionizing the few winners). Uses the selection process among multiple "talk-to-your-data" approaches as the example.

#22 C · Agent Architecture, Reliability & Productionization

Building Durable, Long-Running Autonomous Agents

RedScope AI

Argues that agents will inevitably make mistakes, so what matters is being able to safely continue afterward. Breaks durable agents into three pillars: durable execution (state persistence and fault tolerance, comparing Temporal vs. LangGraph), durable autonomy (learning "when to call a human" using uncertainty / novelty / value of intervention), and durable statefulness (distinguishing state / memory / context and externalizing progress).

#54 C · Agent Architecture, Reliability & Productionization

Lessons From RL Systems That Looked Fine Until They Didn't

Aethon

Drawing on quant-fund experience, explains that RL systems often "look fine until they flip over in production" — and the root cause isn't a badly designed reward, but poorly designed optimization scope and behavioral boundaries. Solutions include trimming the world model down to only the useful structure, using competition-style selection to weed out brittle models, adding human-set "guardrails" and an evaluation agent, and splitting traces into small, weightable spec files for auditing.

#67 C · Agent Architecture, Reliability & Productionization

Running Enterprise Agents in Production: Architecture and Secure Execution Models

Salesforce

Argues that the reliability of enterprise agents is an engineering problem, not a model problem: first honestly choose the runtime type (conversational / autonomous / long-horizon), then work backward to patterns across the three dimensions of coordination, state, and control. Uses telecom contract renewal as an example to illustrate Saga compensation explosion and event reordering, noting that practice mostly settles on "hierarchical delegation plus human-in-the-loop"; emphasizes that without three-lens observability and a kill switch / replay / override, you shouldn't even consider going to production.

#68 C · Agent Architecture, Reliability & Productionization

Running Millions of (Millisecond) AI Sandboxes without Breaking the Piggy Bank

Felipe, Unikraft

Explains that multi-tenant, untrusted AI agents need VM-level isolation rather than containers; Unikraft uses an extremely small unikernel so VMs get both millisecond startup and strong isolation, extending millisecond wake-up across the entire chain. Through snapshot/fork/checkpoint and scale-to-zero, they measured fitting over a million wakeable VMs onto a single 48-core server.

#72 C · Agent Architecture, Reliability & Productionization

Should agents be durable?

Joey Baker, Render

Points out that an agent's execution time, compute, and external calls are highly unpredictable — a 20-step workflow accumulates a failure rate approaching one in five — so a "durable, elastically scalable, observable" abstraction is needed. Render Workflows lets you get sub-second startup, declarative retries, task-level durability (if step 8 fails, retry only from that step), tens of thousands of concurrent executions, and full execution history, just by adding a decorator to a function.

#80 C · Agent Architecture, Reliability & Productionization

The Future Is Domain-Specific Agents

Justin Schroeder, StandardAgents

Argues that the future belongs to "compositions of small, domain-specialized agents" rather than a single all-purpose giant agent, criticizing the practice of continually stuffing context into one agent as being like OOP inheritance — composition should be used instead: one small, specialized agent per domain, coordinated on top by a coordinator using natural language. The benefits are token efficiency (potentially over 80%) and cost savings, easier permission security and horizontal scaling; the talk predicts 2027 will be the year of multi-agent orchestration.

#92 C · Agent Architecture, Reliability & Productionization

What It Takes to Build Reliable AI Systems for Production Operations

Steven, Resolve AI

Points out that once coding gets cheap, the bottleneck shifts to "operations and debugging after launch," using a multi-agent swarm for incident triage and root-cause analysis. Emphasizes that AI for production is a systems-design problem, adopting "design the eval before designing the system": positive evals, negative evals (whether the agent dares to say "I don't know"), evidence-chain evals (every step needs telemetry evidence to prevent reward hacking), and confidence calibration — building trust gradually through progressive permissions.

#95 C · Agent Architecture, Reliability & Productionization

When Your AI Agent Runs for 16 Days Straight

Factory

Introduces a long-horizon coding agent capable of running continuously for tens of hours up to 16 days straight (producing around 38,000 lines of code). The core is the Missions architecture: an Orchestrator writes requirements into strict "verification contracts" and Features, dispatching them to Workers (implementation) and Validators (which QA-test user journeys like a real tester), forming a long-running self-correcting loop; also highlights multi-model routing and the "adversarial context" created by an append-only trajectory.

D

Agent Security & Identity 6 talks

Prompt injection, least privilege, identity control planes, PII protection — the prerequisites for agents accessing enterprise data.

#09 D · Agent Security & Identity

Agentic AI: From Risk Awareness to Practical Control

Noma Security

Points out that agents hand decision-making authority to non-deterministic LLMs, causing security boundaries to collapse: the trusted/untrusted line within the context window gets flattened, indirect prompt injection is hard to defend against, non-human identity permissions balloon, and agent-to-agent interaction becomes a new blind spot. Advocates for least-privilege, task-scoped permissions, layered deterministic controls upstream and downstream, and runtime governance (allow / deny / defer / escalate) instead of reviewing logs after the fact.

#12 D · Agent Security & Identity

Agents Break Data Security — And Here's What You Do About It

Skyflow

Argues that in architectures with agents, MCP, and multi-agent collaboration, old perimeter-based security fails — security controls must run continuously alongside data flow across every component, and must "protect the data rather than block it." Demonstrates runtime data controls using labels plus vault tokens, so that indexes and systems never store real PII, while still preserving cross-system relationships and keeping RAG/search precision/recall as good as with plaintext.

#35 D · Agent Security & Identity

Enabling Highly Autonomous Trusted Agents

Panel discussion (AI Council SF '26)

Discusses how to safely put increasingly autonomous agents into production: because LLMs are non-deterministic, most companies still run a semi-automatic "human in the loop" approach. Covers the combined blow-up risk of agent supply chains and over-provisioned credentials, prompt injection, an AI version of shared responsibility, and the hard problems of agent identity and visibility. Converges on a Security / Autonomy / Capability triangle and an "Excessive CAP" mental model, arguing for building confidence first in low-risk, repetitive scenarios.

#51 D · Agent Security & Identity

Identity Is the Bottleneck: Why Agents Force a New Security Model

Keycard

Argues that traditional identity and authorization (.env API keys, OAuth) cannot handle the emergent behavior agents introduce — crossing trust boundaries, multi-hop delegation chains, and high-velocity risk — since an agent exploring new paths is structurally identical to an intruder's lateral movement. Proposes making identity an external, continuously running control plane for agents: first-class cryptographic identity, contextual policy evaluation, progressive trust, task-scoped permissions, and a full audit chain.

#75 D · Agent Security & Identity

The Agent Attack Surface: Why AI Is Breaking Software Security As We Know It

Feross, Socket

Points out that supply-chain attacks exploded after GPT-4, with modern applications drawing over 90% of their code from open-source dependencies, while AI agents will select, install, and run packages on their own; attackers now craft perfect malicious READMEs aimed at LLMs, and MCP/skills have also become a new attack surface. AI has compressed the time from "vulnerability disclosed" to "exploited" down to about 10 hours. Advocates switching to reachability analysis to fix only reachable vulnerabilities, using targeted local patches.

#79 D · Agent Security & Identity

The End of the Internet As We Know It

Raffi Krikorian, Mozilla

Mozilla's CTO argues that AI has simultaneously made both "writing code" and "finding zero-day vulnerabilities" easier, breaking the old security "truce" where offense and defense were roughly matched in difficulty — while critical open-source projects that depend on just one or two maintainers are extremely vulnerable under AI-automated vulnerability scanning. Calls for treating AI as a co-author, basing merges on behavior and evals, having git record prompt/model versions and provenance, and pushing secure-by-design.

E

Context / Memory / RAG 12 talks

Context engineering, memory systems, hybrid retrieval, agentic RAG: what determines whether an agent can get to the "right" context.

#21 E · Context / Memory / RAG

Building Agentic RAG Systems with ClickHouse

ClickHouse

Demonstrates spinning up a complete agentic RAG stack — ClickHouse + LibreChat + MCP + LangFuse — with one Docker Compose command, letting an agent query ClickHouse in natural language via MCP and output interactive chart artifacts. Showcases skills, sub-agents, RBAC, and using LLM-as-a-judge in LangFuse to sample-evaluate traces.

#26 E · Context / Memory / RAG

Bypassing the Multimodal Tax: Hybrid RAG, SQL RRF & UI Telemetry

Abed Matini, Ogilvy

Demonstrates building a production-ready enterprise RAG FAQ chatbot using a local-first, low-framework, SQL-heavy approach: Docling converts documents into clean Markdown, chunking follows a deliberate strategy, and Postgres plus pgvector does hybrid retrieval combining vectors, BM25, and RRF, before handing off to a small local model to answer. Emphasizes replacing agents with plain Python functions to cut latency, running guardrails before hitting the LLM, and using Langfuse plus a frontend widget for observability.

#28 E · Context / Memory / RAG

Context Engineering 2.0: Unifying MCP, Agentic RAG, and Memory

Redis

Argues that the key to a usable agent is the "context engine," not the model, upgrading RAG from linear pre-querying into a tool agents can navigate autonomously (Agentic RAG), while emphasizing that context must be low-latency and fresh, and that memory is really just state. The architecture is built from fresh-data ETL, a Context Retriever that auto-builds a semantic layer with Pydantic plus MCP, short- and long-term memory extraction, and semantic caching, demonstrated with an agent querying structured data rather than a policy PDF.

#29 E · Context / Memory / RAG

Context Engineering at the Frontier

Linus Lee, Thrive Capital

Builds the research agent Puck and the action agent Hobgoblin, with the core philosophy of "pushing complexity into the data structure and indexing stage, rather than into the query-time prompt." Techniques include hybrid search combining BM25, vectors, and a neural reranker; pre-enriching "authoritative entity cards" at indexing time; using SQL sub-agents and parallel sub-agents to avoid polluting the main context; and custom tools for verbatim, verifiable citations.

#30 E · Context / Memory / RAG

Context Engineering for Video Intelligence: Beyond Model Scale to Real-World Impact

TwelveLabs

Argues that the key to making video AI usable isn't model size but turning video into a "context pipeline," proposing four pillars — Write → Select → Compress → Isolate (structured evidence, multimodal semantic retrieval, rolling summarization, and isolation by type/time) — and arguing that context should be treated as an engineering artifact to be measured and version-controlled.

#33 E · Context / Memory / RAG

Designing Memory Systems for AI Agents

MongoDB

Gives a complete walkthrough of designing a memory system for agents, distinguishing three types of memory: short-term (session chats, using session_id plus TTL), semantic long-term (user facts & preferences), and procedural long-term (step-by-step guides, using embedding plus vector search). The focus is on the "memory lifecycle" — what to store, when to store it, and when to prune — demonstrated with a memory API, tool execution, and the agent loop.

#45 E · Context / Memory / RAG

Hermes Architecture EXPLAINED: Memory, Context & Gateways

Hermes project

Breaks down the architecture of Hermes, an always-on agent: the agent loop, rebuilding context every turn (soul.md / user.md / memory.md plus historical summaries plus tool descriptions), a context-compression mechanism that estimates tokens by character count, multi-platform gateways (Telegram / Slack / Email) with session management, and three-tier memory (markdown plus SQLite plus external memory) with cron scheduling.

#100 E · Context / Memory / RAG

Learning while you sleep: Beyond memory to dreaming

Lamis Mukta, Anthropic

Traces the path from "memory systems" to "dreaming," arguing that context engineering — not a smarter model — is what makes an agent durable and scalable. Recaps a year of memory evolution (Claude MD → agent-driven memory tools → Skills with progressive disclosure → memory-as-a-file-system) and the production guardrails that follow: versioning, hash-based concurrency control, permissioning, and portability behind a clean API. Then introduces "dreaming," an out-of-band batch process in which an orchestrator and sub-agents mine large volumes of session transcripts for recurring failure patterns and propose a reviewable set of additions, edits, and deletions to the memory store — like a teacher revising the curriculum after watching a whole cohort. Memory (in-band) is the short loop that sharpens the next run; dreaming (out-of-band) is the long loop that keeps memory fresh and, despite the extra tokens, lowers overall cost and latency by letting agents get later tasks right in one shot.

#55 E · Context / Memory / RAG

Let's Teach Claude Code Semantic Code Search With turbopuffer

turbopuffer

Demonstrates using turbopuffer (vector plus full-text) to add semantic code search to Claude Code (treating embedding as cached computation), quantified with ContextBench. Finds that semantic search improves precision and reduces unnecessary file reads (from about 65% up to nearly 90%), but is complementary to grep rather than a replacement for it — the real difficulty is teaching the agent when to choose which tool.

#64 E · Context / Memory / RAG

RAG is dead, right??

Kuba Rogut, Turbopuffer

Argues that "RAG isn't dead — what's dead is the narrow definition of RAG as vector search plus stuffing context." Real retrieval is a whole toolbox — vectors, full-text (BM25), grep, filters — that an agent calls repeatedly until it has gathered enough context. Contrasts Cursor (pre-indexing embeddings) with Claude Code (re-scanning with grep every time) to illustrate the tradeoff in indexing cost, and emphasizes staged retrieval that first narrows down to "the right million tokens."

#89 E · Context / Memory / RAG

Turn 10,994 Notes Into Memory

Paul Iusztin & Louis-François Bouchard

Demonstrates an "AI Research OS": turning tens of thousands of second-brain notes into research memory an AI can use, deliberately using files plus an index (raw/, index.yaml, wiki/) instead of a vector database or a giant context window. Queries follow a tiered, token-saving strategy (read the index first → source summary → concepts → raw), the raw notes are read-only, and the wiki is a "living memory" that grows with each question answered. The design philosophy favors local markdown/YAML files for easier debugging.

#94 E · Context / Memory / RAG

When All Context Matters: Extended Cache Augmented Generation

Luis Romero-Sevilla, Orbis

For situations where "all documents are relevant, and they're often updated in bulk," proposes Extended Cache Augmented Generation (ECAG): instead of stuffing everything into one giant context, it spins up multiple CAG "buckets" simultaneously (multiple sets of KV cache), with a supervisor model deciding which buckets to query and how to synthesize the answer. The key design choice is to shuffle documents randomly into buckets rather than group them by topic, so as not to overlook a domain holding a critical clue; because loading is parallel, it's faster than GraphRAG while delivering better quality than plain RAG.

F

Data Infrastructure 14 talks

Databases, OLTP/OLAP, CDC, lakehouses, vector search, data lineage: the foundation that analytics and data agents run on.

#04 F · Data Infrastructure

AI Needs a New Kind of OLTP: Lakebase & Serverless Postgres in the Agent Era

Databricks (Lakebase/Neon)

Agent-generated applications create huge volumes of short-lived, bursty database workloads that traditional Postgres can't handle, so Lakebase/Neon splits Postgres into a stateless, storage-compute-separated cloud-native architecture, with data landing on object storage and a page-server cache smoothing out latency. This brings scale-to-zero, auto-scaling, and cheap database "branching," letting every PR or agent turn open an independent branch to experiment and roll back.

#07 F · Data Infrastructure

After the Lakehouse: Building Data Infra for the AI Era

Panel: Snowflake, Databricks, ClickHouse

Representatives from three major data platforms agree that the central data platform isn't going away — if anything, it becomes more important for governance and trust, and it keeps deepening around storage-compute separation, data gravity, multi-layer caching, and consumption pricing to support agents' high-concurrency, low-latency queries. They note that "traditional BI is disappearing," and the semantic layer must sink from BI tools down into the data layer (e.g., Open Semantic Interchange), while data platforms are expanding from selling storage/compute infrastructure into the app/agent battleground.

#14 F · Data Infrastructure

Agents will need trillions of databases. Let's give it to them!

Turso

Predicts that AI agents will push the number of databases into the trillions, because every agent/session/vibe-coded app needs its own state, memory, and context database — and SQLite, with roughly a trillion instances already deployed, proves this is feasible. Turso fully rewrote SQLite in Rust, keeping file-format compatibility, and added full async support, multi-writer MVCC, native WASM, vector search, materialized views, and strong typing.

#25 F · Data Infrastructure

Building the Database for Trillion-Scale AI Search

Nikhil, turbopuffer

Describes how turbopuffer, built around an "object-storage-native," minimal core, evolved from small-scale vector search into trillion-scale AI search supporting 4 trillion documents and 2.5M writes per second — earning its complexity incrementally based on real production metrics. Also points out that agents are causing search volume and complexity to explode, and shows how search models and git-style branching cut costs.

#31 F · Data Infrastructure

Data Lake CDC: Are we there yet?

ClickHouse

Explores why "CDC incremental sync from a data lake into an analytics store" is needed, and compares Delta (changes precomputed, easier to consume) with Iceberg (changes embedded in rows, harder). Points out three missing pieces today — cross-table global ordering, durable change retention, and a consistent standard consumption interface — and argues these "cross-cutting semantics" should be solved at the catalog layer, concluding "not there yet, but past the halfway point."

#38 F · Data Infrastructure

Five years of OpenLineage: How we built an industry standard and why agents need it

Datadog (OpenLineage)

Introduces OpenLineage, a vendor-neutral spec hosted under the Linux Foundation that describes runtime lineage events in JSON (core concepts: Job/Run/Dataset + facets), arguing that runtime observation is more accurate than inferring after the fact from source code or logs. Emphasizes that as AI agents read and write data at scale, lineage is the key infrastructure that turns agents from black boxes into observable, auditable, and reproducible systems.

#39 F · Data Infrastructure

Forgiveness, Not Permission: Running Agents On Production Data

Jacopo, Bauplan

Argues that trust in agents shouldn't come from stripping down permissions, but from designing systems to stay correct and recoverable even when an agent makes mistakes. Proposes a Git-like lakehouse (Iceberg + immutable commits + branch/merge + time travel), using temporary branches plus merges to implement MVCC-like transactions. Also uses formal verification to find API counterexamples, emphasizing that the API is small enough — around 60K tokens — for even cheap models to learn.

#40 F · Data Infrastructure

From Postgres to ClickHouse and Back: Building a Unified OLTP + OLAP Database for AI Workloads

Kaushik, ClickHouse (PeerDB)

Explains why "Postgres for transactions + ClickHouse for analytics" has become a common architecture (AI-native companies hitting walls early, with data volume growing 1000% in 6 months), and identifies the pain point as the complexity of keeping both sides in sync. ClickHouse responded by launching a managed Postgres service, focused on large-scale consistent parallel backfill, low-overhead replication slots, second-level end-to-end latency, and an open-source extension that acts as an FDW to auto-push-down queries.

#69 F · Data Infrastructure

Scaling CDC to Trillions of Rows: What Broke, What We Rebuilt, and What AI Demands Next

Artie

Uses a fictional data engineer's journey to trace how CDC evolved from snapshots and incremental batches to a Debezium + Kafka + Snowflake architecture that eventually broke down at scale — leading to a full rewrite: a custom-built WAL reader, separating backfill from live CDC, and consumers with transactional semantics and automatic schema evolution. Argues that AI agents will shift the analytics bottleneck from people to ingestion/transformation, and that CDC should evolve into an event bus that AI can react to in real time.

#73 F · Data Infrastructure

Super-Secret Next Big Thing for DuckDB

Hannes, DuckDB

Introduces Quack, a new DuckDB extension that solves the pain point of "DuckDB can't talk to itself properly" — one side serves, and the other side uses ATTACH/remote.query to query a remote DuckDB as a schema, built on over-HTTP RPC. Performance tests show transferring 60 million rows takes about 5 seconds (versus roughly 3 minutes for Postgres), moving DuckDB from single-node embedded use toward distributed deployment.

#78 F · Data Infrastructure

The Deconstructed Database at Datadog

Julien and Pierre, Datadog

Explains how siloed query systems were refactored into a "deconstructed database" assembled from open standards: separating control/data plane and storage/compute, then using Substrait to unify logical plans across various DSLs, Calcite for optimization, and DataFusion for execution, with metadata/formats converging on Iceberg/Arrow/Parquet. Frames building a company-wide semantic layer and data lineage as the key next step for supporting AI/agents.

#81 F · Data Infrastructure

The Modern Data Stack Lost the War: Stop Building more DataFrame APIs

OpenAI

Argues that in the AI/agent era, we shouldn't keep building new DataFrame APIs, but should instead move toward "function-first" data programming tools: extracting core logic into reusable Python functions (UDFs), paired with an efficient UDF engine. Benchmarks show plain Python plus a function-first engine can be an order of magnitude faster than traditional dataframes in UDF scenarios, and demonstrates using Codex to generate, in a single day, a translation layer that used to take 20 people 2 years to build.

#87 F · Data Infrastructure

Trillion is the New Billion: Managing Really Large Multimodal Datasets for AI

LanceDB

Argues for managing trillion-scale, multimodal datasets with a "unified data layer," replacing the siloed approach of repeatedly copying the same data across labeling, training, and evaluation. Core design elements include storing huge blobs and fine-grained columns in the same table with multimodal indexing, immutability plus versioning plus lineage, and "zero-cost schema/feature evolution" on large tables. Also proposes an L0–L5 data maturity model.

#99 F · Data Infrastructure

Your Database Wasn't Built for This

Andy, CockroachDB

Argues that traditional databases weren't designed for the agent era, and that in the future most database "users" will be agents rather than humans. Using cases like the internal tool Mica (which lets 60% of employees generate reports/dashboards/apps in natural language), it explains the need to improve "agent experience" (structured, parseable, foolproof interfaces), build permission governance and secure defaults into the platform, and even create an "agent experience benchmark" to measure completion rates and token consumption.

G

Model Training & Inference 15 talks

Training, RL/RLVR, MoE, quantization, inference infrastructure — mostly background technology, more indirectly related to the product layer.

#06 G · Model Training & Inference

AI: too good to be true, too bad to be useful

Diogo (ex-OpenAI), TypeSafe AI

Argues that today's LLMs are RLHF-optimized to be "assistants that please humans" rather than "reliable autonomous executors" — which is why they seem amazing when a human is watching, but aren't reliable enough to run unsupervised, exactly the gap behind "looks powerful but hasn't delivered an economic revolution." Believes assistant behavior and autonomy are conflicting optimization targets, and the way out is toward type-safe language models that deeply integrate the model with type systems and structured data.

#17 G · Model Training & Inference

Beyond the API: Modern Inference for Modern Workloads

Panel: NVIDIA, Together AI, Modal

The core message is that fine-tuning isn't dead — it's coming back in the form of RL/"model shaping," and compressing intelligence into smaller, more specialized models can improve both experience and latency, while model routing is application developers' moat. Also notes that token usage is growing roughly 10x year over year and supply won't catch up with demand for years, so saving tokens is a shared responsibility between application builders and providers, and inference will eventually spread from pure cloud to local and edge over the long term.

#43 G · Model Training & Inference

Great Infra for Background Agents

Sail

The argument is that as agents run autonomously in the background for long stretches, inference infrastructure needs to shift from "low-latency replies to humans" toward "high-throughput, built for machines," which can cost 5–6x less than mainstream providers. Emphasizes that "parallel intelligence" (many agents running in parallel) beats a single model's IQ, and calls for cloud sandboxes that can auto-sleep for billing purposes.

#47 G · Model Training & Inference

How Open Frontier Labs Actually Train Their Models

Sami, Prime Intellect

Explains that because open frontier labs spend 70%+ of their costs on inference, they design architectures around "inference cost and latency" rather than benchmark accuracy. Two main themes: efficient attention (GQA/MLA, sliding window, sparse attention) to cut down KV cache for long sequences; and MoE sparsification, which scales up total parameters without increasing per-token FLOPs.

#49 G · Model Training & Inference

How to Unlock Enterprise Value by Training Your Own Language Models

Snowflake

Shares principles for when enterprises should train their own models (only train where you have a defensible advantage, solving customer pain beats chasing benchmarks, data matters more than algorithms, and know when to stop), using Arctic Embed (enterprise retrieval embeddings) and Arctic Text-to-SQL as case studies. Notes that because RAG plus agents can retrieve multiple times, the marginal benefit of top-1 ranking declines; also admits the Text-to-SQL model succeeded technically but product integration hit snags.

#52 G · Model Training & Inference

Inference for Async Agents in Production

Meryem, Doubleword

Abstracts the challenge of long-running async agents into a "token problem" = token count × cost per token, and proposes three levers: context management (compaction, pruning useless tool results, external memory, caching — saving roughly 80%) to cut token count; switching to good-enough, cheap open-source models; and redesigning the inference stack for "high-throughput, latency-insensitive" workloads.

#57 G · Model Training & Inference

Making Neural Networks Smaller: Quantization and Pruning

PrismML

Introduces how quantization and pruning make large models smaller, faster, and more power-efficient: explains that outliers and KV cache exceeding weight size at long sequence lengths are the two big bottlenecks, and counters them with techniques like per-group quantization, Hadamard rotation, mixed precision, and SVD-Quant. Shows that fully 1-bit/ternary models can retain roughly 90–95% of performance while cutting memory by about an order of magnitude.

#59 G · Model Training & Inference

No Dropped Frames: designing a VLM around a latency budget

Moondream

Explains how a real-time VLM was redesigned around a "latency budget" at three layers: switching the model architecture to a roughly 9B MoE to speed up decoding; using SuperBPE and dedicated grounding tokens to drastically cut output tokens; and building a custom inference engine (custom CUDA kernels, with scheduling and decode running in parallel). Runs at about 30ms per frame on a B200, supporting multiple 30 FPS streams.

#60 G · Model Training & Inference

Optimizing Model Training End-to-End: A Tiny MoE Case Study

Zach Mueller, Lambda

Using a roughly 500-million-parameter tiny MoE as an example, demonstrates cutting pretraining time on a home multi-GPU rig from about 61 hours down to about 13.2 hours. The optimization comes from a string of details: power-of-two batch sizes, Flex Attention, pre-tokenization, fused AdamW, and using gradient accumulation to cut communication frequency to 1/10.

#65 G · Model Training & Inference

RLVR in Practice: From Synthetic Data to GRPO

Chris, NVIDIA

Breaks down the hero-run pipeline for training Nemotron: SFT paves the way with a small amount of high-quality synthetic data, multi-environment RLVR uses programmatically verifiable rewards, then adds RLHF/GenRM. Highlights include how the data mix reveals the model's positioning, GRPO ranking a group of samples against each other, and Pivot RL only running rollouts after "the step that gets hard" to save compute. The training framework is largely open-sourced.

#83 G · Model Training & Inference

The Open Layer: How Open Models, Routing, and Inference Are Reshaping Agentic Engineering

Panel: OpenRouter, Fireworks, Arcee

Discusses the role of open-weight models, model routing, and inference infrastructure in agentic engineering. Highlights include: "open" means control and choice; open-weight models are already "good enough and an order of magnitude cheaper" for most commercial tasks; the quality/cost/speed tradeoff triangle; and the "range anxiety" of token-based pricing along with subscription-model design.

#85 G · Model Training & Inference

The World Is Not Enough: RL's Environment Problem

Panel: Fleet, Prime Intellect, Taste

Argues that the bottleneck for RL/agent progress has shifted from compute to "high-quality environments," and the hardest part of that is "verification/scoring" — especially how to avoid reward hacking in subjective domains like design and aesthetics. Emphasizes that evals are tightly coupled to environments and need top human experts to set standards, and proposes a "product data flywheel": every company should redesign its product to capture preference and behavioral signals, forming a proprietary loop of RL data and model improvement.

#86 G · Model Training & Inference

Towards Reliable Financial Agents: How a 4B Model Outsmarted a 235B Giant

Snorkel AI (with UC Berkeley)

A 4B specialist model fine-tuned with RL beats a 235B generalist (about 51%) with roughly 60% pass@1 on a custom FinQA benchmark (SEC 10-K filings, about 6,900 SQL tables). The key isn't reasoning power but "tool-use discipline": large models often hallucinate table names, overuse SELECT *, and don't correct errors when they occur; the small model learns schema exploration, correct SQL, and error recovery. Ablations show the simplest 0/1 correctness reward beats a complex rubric, and inference cost is only about 1/10 as much.

#88 G · Model Training & Inference

Trinity: Training a 400B MoE from Scratch Without Losing Your Mind

Lucas (CTO), Arcee AI

Shares the process of pretraining a 400B MoE model from scratch (only 13B active per token) on roughly $50M in funding within a 30-day rental window. Hit severe routing imbalance around 100B tokens, and eventually stabilized training by shipping six changes at once. Covers debugging philosophy (narrowing the search space), the low inference cost that comes from MoE sparsity, and leadership and team psychological safety under high pressure.

#93 G · Model Training & Inference

What comes after Deep Learning?

Incept Labs

Uses "path dependence" to examine the design baggage of today's large models: layered networks, serialized backprop, synchronous large-scale training, and black-box optimizers are mostly artifacts of 1980s hardware and application assumptions, and have now become bottlenecks in an era where "arithmetic is cheap, memory is expensive." Predicts the trend will move toward reworking algorithms first, erasing abstraction boundaries (mega-kernels), hardware-hugging DSLs, and task-specialized optimizers.

H

AI Coding & AI-Native Engineering 9 talks

Coding agents, AI-native development workflows, and organizational transformation: the methodology is worth borrowing, though most cases involve general-purpose coding agents.

#23 H · AI Coding & AI-Native Engineering

Building a Data Native Agent: Cortex Code

Snowflake

Introduces Snowflake Cortex Code, a "data-native" coding agent whose core purpose is closing the "context gap" where a typical agent generates SQL referencing tables/columns that don't exist — solved by grounding it in real time against the actual schema, RBAC, and warehouse, and always "executing as the user." Treats skills as first-class citizens (with evals that lift pass rates from 40–60% to 90–95%), uses MCP to connect to DBT/Airflow, and emphasizes that security comes from low-privilege accounts and auditing rather than prompt guardrails.

#27 H · AI Coding & AI-Native Engineering

Calvin French-Owen on the Future of Agentic Coding

Calvin French-Owen (ex-OpenAI Codex)

Unpacks how coding agents are shaped by pretraining and RL, and how the inference/harness layer manages context and long-running tasks, then suggests engineers shift their time toward design decisions that are "hard to verify and context-dependent," leaving verifiable, automatable implementation to the agent. Also compares different model personalities and applies management thinking to acting as the bottleneck manager of a "software factory."

#46 H · AI Coding & AI-Native Engineering

How Action Bias Breaks Autonomous Software Maintenance

LogicStar.ai

Points out that autonomous-maintenance coding agents have an "action bias": even when the code is already fixed (about 50% of bug reports are duplicate/stale), there's still a 35–65% chance the agent will make unnecessary changes and pile up technical debt. Uses FixedBench to show that increasing the reasoning budget doesn't help — what actually works is explicitly including "doing nothing is also success" in the outcome space of prompt/task design; the root cause is that RL almost exclusively rewards "taking action."

#50 H · AI Coding & AI-Native Engineering

How we made Trail of Bits AI-Native (so far)

Dan Guido, Trail of Bits

How a security consultancy actually became AI-native: using an AI maturity matrix, an AI handbook, internal hackathons, a skills repository, multiple sandboxes, and MCP governance to treat agents as regular teammates — pushing bug discovery on some projects from 15 per week to roughly 200. The second half discusses how AI makes finding vulnerabilities cheap, shifting the bottleneck to human judgment.

#56 H · AI Coding & AI-Native Engineering

Make Vibe Coding Safe: How to Test with Playwright

Amazon AGI Lab

Explains how to use Playwright (paired with Playwright Test MCP) to build reliable end-to-end tests for vibe-coded web features: letting the agent actually open a browser and read the rendered accessibility tree to pick the most stable locator. Recommends keeping tests small and focused, running them on every commit, and treating failures as bugs to investigate.

#66 H · AI Coding & AI-Native Engineering

Recursively Self-Improving Agents as Autonomous Software Engineering

Factory

Applies a "signal→fix" automatic loop to its own codebase: a daily-batch online evaluation system called Signals uses an LLM judge to tag friction/delight in user sessions, letting Droid automatically triage, open tickets, open PRs, and add tests. Before reaching human review, PRs must pass multiple gates — regression evals, independent agent code review, security review, and end-to-end QA. Concludes that automation can absorb a large share of clearly scoped, locally fixable work, while direction and taste remain steered by humans.

#77 H · AI Coding & AI-Native Engineering

The Best Engineer in the Room Doesn't Write Code

Emilie, Kilo Code

Argues that the strongest engineer's value isn't in writing the most code, but in owning the problem and the outcome, and that the key going forward is turning AI from a session-based tool into an "always-on, outcome-accountable" AI colleague. Using always-on agents as an example, explains the need to give agents a persistent identity, finely scoped permissions, event-driven triggers, and a separation between the control plane and the runtime plane.

#82 H · AI Coding & AI-Native Engineering

The Mythical Agent-Month

Posit

Now that agents can write large amounts of code on our behalf, argues that an engineer's real value lies in scoping the problem, designing the architecture, and exercising "taste" — borrowing from The Mythical Man-Month's distinction between essential and accidental complexity, since agents are good at accidental complexity but struggle with essential design. Describes their own agentic engineering stack (automated code review, a session database, a self-built issue tracker).

#84 H · AI Coding & AI-Native Engineering

The Prompt is the Platform

Dominik Tornow, Resonate HQ

Proposes a new engineering workflow where "the spec is the product, the prompt is the platform": a reusable abstract spec is turned into custom implementations for different platforms by a coding agent. The key is having the agent first produce a "simulated implementation" in a deterministic simulation environment to verify the correctness of distributed algorithms, then derive the concrete spec and production implementation from it — turning the agent from an end-of-pipeline code writer into a design lead.

I

Product Strategy & Business 6 talks

Product strategy, pricing, AI-native startups, organizational culture: thinking about product and business models in the AI era.

#18 I · Product Strategy & Business

Born Different: How AI Natives Build Startups

Panel: Turbopuffer, Cognition, Higgsfield

Three AI-native founders point out that under high uncertainty, long-term planning compresses into a month-to-month or week-to-week cadence, decisions get pushed down heavily, and AI is used to amplify small teams' output. Also discusses filtering hires by AI adoption, traditional SaaS turning into a "headless database plus AI agent layer," and organizational/GTM observations like how engineering-to-sales ratios differ sharply at AI-native companies.

#34 I · Product Strategy & Business

Do the Boring Stuff to Make Open Source AI Win

John Dickerson, Mozilla.ai

Argues open-source AI doesn't need to match closed-source giants on benchmarks — it should instead use satisficing (good enough is good enough) to capture the 99% of use cases that only need a passable model, shifting focus from "bench-maxing" to "experience-maxing" (experience, controllability, trust, distribution). Introduces "boring engineering" like AnyAgents, multi-model routing, a guardrail abstraction layer, and an MCP proxy, and emphasizes that the real weak spot is UI/UX and reaching non-technical users.

#48 I · Product Strategy & Business

How Product and Research Build Together at the Frontier

Izzy & Olivia, Hex

Hex's AI research and product leads share how they collaborate when "the model gets a new version every few weeks": the first 80% of a demo is easy, but the 80→95% quality tail is the hardest part — you have to learn to call it quits early and wait for the model to get better, and design the infrastructure that patches model shortcomings to be "removable." Also discusses the difficulty of evaluating data work (deliberately planting a bug, where the model has zero instinct to "doubt the numbers") and a moat built from deep understanding of data workflows plus sandbox infrastructure.

#62 I · Product Strategy & Business

Pricing AI Agents

Orb

Argues that in the AI agent era, pricing and usage-based billing need to be "engineered" — iterating continuously across four time scales and four levers (price point, value metric, charging model, contract structure) — and emphasizes that choosing a value metric (tokens vs. workflows/outcomes) is really telling customers "what counts as value." Finally points out the governance gap created by agents' explosive volume and high-frequency actions, and proposes agent wallets that compute the cost of each run in real time.

#63 I · Product Strategy & Business

Prompt to Production: Building from Traditional SaaS to True AI-Native SaaS

Utkarsh Sengar, Webflow

Shares three stages from "bolting on AI features" to becoming truly AI-native: first falling into the trap of one-click-generation demo slop, then pulling back to a "high-quality, constrained starting point," and finally projecting the website as a React codebase plus design.md, opening up a canvas API/MCP so agents can edit directly. The core idea is treating the agent as a "first-class persona," using an autonomy slider to divide work between human and machine, with the moat being the application layer that turns the underlying stack into customer value.

#97 I · Product Strategy & Business

You Can't Prompt the Room: The Last Skill AI Won't Replace

Balázs Horváth, VisualLabs

Argues that once AI can write most of the code, the one skill that remains irreplaceable is figuring out what to build and aligning people around it. Uses an internal hackathon (21 ideas, only 4 actually shipped) to illustrate that "being able to build it doesn't mean it's worth building," and proposes User Story Mapping, four questions for judging value, and a Value→Architecture→Design path, suggesting teams change their metric from "number of features shipped" to "number of features used more than twice."