How I AI

How I AI

Spec-driven development: The AI engineering workflow at Notion | Ryan Nystrom

47 min · 11. Mai 2026
Episode Spec-driven development: The AI engineering workflow at Notion | Ryan Nystrom Cover

Beschreibung

Ryan Nystrom is a software engineer at Notion. He joined in December 2024 after Notion acquired Campsite, the team communication platform he co-founded with Brian Lovin. At Notion, he’s been a core builder of Notion AI and the Custom Agents feature launched in February 2026. He manages a team of six to seven engineers while still writing code himself, currently running Project Afterburner, a push to cut Notion’s CI time to a quarter of its current duration. What you’ll learn: 1. How to build a Notion AI custom agent that auto-generates your daily standup pre-read by pulling from Slack, GitHub, Honeycomb metrics, and yesterday’s meeting transcript 2. How to configure subagents and MCP integrations within Notion AI 3. How Notion’s internal “Boxy” system lets engineers @mention Codex from within Notion comments and get a full pull request with screenshots in 20 minutes 4. The spec-first development workflow: dictate an idea into Whisper, have Codex format it as a proper spec, commit it to the repo, and let the agent implement and verify it autonomously 5. Why fast CI is absolutely critical in the age of AI coding agents 6. How to prompt AI coding agents to defend their reasoning under pushback 7. Why engineering managers and even senior executives should keep writing code — Brought to you by: WorkOS [https://workos.com/?utm_source=lennys_howiai&utm_medium=podcast&utm_campaign=q22025]—Make your app enterprise-ready today Orkes [https://www.orkes.io/]—The enterprise platform for reliable applications and agentic workflows — In this episode, we cover: (00:00) Introduction to Ryan Nystrom (02:48) How AI has upended 12+ years of the same working routine (04:30) Project Afterburner: Notion’s push to cut CI time to a quarter (09:00) Why high-frequency, high-quality meetings beat lower-frequency standups (11:10) How automated context surfaces every engineer’s work equally (12:15) Why cutting meeting prep is a burnout protection mechanism (14:26) The case for engineering managers writing code (16:13) Inside “Boxy”: Notion’s internal VM-based background agent system (20:30) Old World vs. New World code review (24:51) Prompting Codex from Notion comments (29:20) The emotions around code review (31:01) Quick recap (32:00) Spec-first development: writing and checking agent specs into the repo (35:10) The spec as changelog: version control for how a feature actually works (37:53) How engineers’ roles are evolving (39:00) Lightning round (45:21) Where to find Ryan — Tools referenced: • Notion AI: https://www.notion.com/product/ai [https://www.notion.com/product/ai] • Notion Custom Agents: https://www.notion.com/blog/introducing-custom-agents [https://www.notion.com/blog/introducing-custom-agents] • Codex (OpenAI): https://openai.com/codex [https://openai.com/codex] • Claude Code (Anthropic): https://claude.ai/code [https://claude.ai/code] • Honeycomb (observability + MCP): https://www.honeycomb.io [https://www.honeycomb.io/] • Whisper (OpenAI voice transcription): https://openai.com/research/whisper [https://openai.com/research/whisper] • Slack: https://slack.com [https://slack.com/] • GitHub: https://github.com [https://github.com/] — Other references: • How Stripe built “minions”—AI coding agents that ship 1,300 PRs weekly from Slack reactions | Steve Kaliski (Stripe): https://www.chatprd.ai/how-i-ai/stripes-ai-minions-ship-1300-prs-weekly-from-a-slack-emoji [https://www.chatprd.ai/how-i-ai/stripes-ai-minions-ship-1300-prs-weekly-from-a-slack-emoji] • Notion 3.3 Custom Agents launch (February 24, 2026): https://www.notion.com/releases/2026-02-24 [https://www.notion.com/releases/2026-02-24] — Where to find Ryan Nystrom: X: https://x.com/ryannystrom [https://x.com/ryannystrom] LinkedIn: https://www.linkedin.com/in/ryannystrom/ [https://www.linkedin.com/in/ryannystrom/] GitHub: https://github.com/rnystrom [https://github.com/rnystrom] — Where to find Claire Vo: ChatPRD: https://www.chatprd.ai/ [https://www.chatprd.ai/] Website: https://clairevo.com/ [https://clairevo.com/] LinkedIn: https://www.linkedin.com/in/clairevo/ [https://www.linkedin.com/in/clairevo/] X: https://x.com/clairevo [https://x.com/clairevo] — Production and marketing by https://penname.co/ [https://penname.co/]. For inquiries about sponsoring the podcast, email jordan@penname.co.

Kommentare

0

Sei die erste Person, die kommentiert

Melde dich jetzt an und werde Teil der How I AI-Community!

Loslegen

2 Monate für 1 €

Dann 4,99 € / Monat · Jederzeit kündbar.

  • Podcasts nur bei Podimo
  • 20 Stunden Hörbücher / Monat
  • Alle kostenlosen Podcasts

Alle Folgen

85 Folgen

Episode How to design AI agent loops: schedules, goals, and subagents in Claude Code and Codex Cover

How to design AI agent loops: schedules, goals, and subagents in Claude Code and Codex

I break down every loop type from scratch—what a heartbeat, cron, hook, and goal loop actually are, when each one fits, and the five things any effective loop needs before it touches production. Then I build two live loops: a daily aging-PR reviewer in Claude Code that schedules itself at 10:15 a.m. and spins off its own subagents, and a weekly skills-identification loop in Codex that spawns goal-based subagents to validate its own output in real time. What you’ll learn: 1. The plain-English definition of a loop—and why it’s just an automated prompt, not a scary new paradigm 2. The four loop types (heartbeat, cron, hook, and goal) and when each one actually fits your workflow 3. How to think about loop design using the “onboarding an employee” mental model 4. The five things every effective loop needs: work trees, skills, plugins/connectors, subagents, and state tracking 5. How to build a scheduled PR-review routine in Claude Code that babysits aging PRs and alerts your team 6. How to set up a weekly skills-identification automation in Codex that spawns its own validating subagents 7. Why goal-based loops are the hardest to write well—and where most people burn tokens for nothing 8. The two warning signs that your loop is going to get expensive before it gets useful — Brought to you by: WorkOS [https://workos.com/?utm_source=lennys_howiai&utm_medium=podcast&utm_campaign=q22025]—Make your app enterprise-ready today Runway [https://runwayml.com/howIAI]—The creative AI platform for images, video, and more — In this episode, we cover: (00:00) Prompts are out and loops are in (02:30) Defining a loop (03:03) The four ways to automate a prompt: heartbeat, cron, hooks, and goals (06:03) Five things every effective loop needs (09:26) The “onboarding an employee” framework for designing loops (11:58) Live build #1: Daily aging PR loop in Claude Code (17:08) Subagents inside loops (19:00) Live build #2: Weekly skills identification loop in Codex (22:57) Watching subagents spin up in real time (25:28) Warning signals around loops (27:31) What listeners are doing with loops — Tools referenced: • Claude Code: https://claude.ai/code [https://claude.ai/code] • Codex: https://chatgpt.com/codex [https://chatgpt.com/codex] • OpenClaw: https://openclaw.ai/ [https://openclaw.ai/] — Other references: • Claire’s article “Why OpenClaw Feels Alive Even Though It’s Not”: https://x.com/clairevo/article/2017741569521271175 [https://x.com/clairevo/article/2017741569521271175] • Addy Osmani’s article on loop engineering: https://addyosmani.com/blog/loop-engineering/ [https://addyosmani.com/blog/loop-engineering/] • Using Goals in Codex: https://developers.openai.com/cookbook/examples/codex/using_goals_in_codex [https://developers.openai.com/cookbook/examples/codex/using_goals_in_codex] — Where to find Claire Vo: ChatPRD: https://www.chatprd.ai/ [https://www.chatprd.ai/] Website: https://clairevo.com/ [https://clairevo.com/] LinkedIn: https://www.linkedin.com/in/clairevo/ [https://www.linkedin.com/in/clairevo/] X: https://x.com/clairevo [https://x.com/clairevo] — Production and marketing by https://penname.co/ [https://penname.co/]. For inquiries about sponsoring the podcast, email jordan@penname.co.

17. Juni 202629 min
Episode How Braintrust uses AI agents, evals, and CI to ship better software | Ankur Goyal Cover

How Braintrust uses AI agents, evals, and CI to ship better software | Ankur Goyal

In this episode, I sit down with Ankur Goyal, founder and CEO of Braintrust, the AI evals and observability platform used by teams like Notion, Stripe, Vercel, and Zapier. This one is for the senior engineers, staff engineers, VPs of engineering, and CTOs in my audience. We get into how coding agents can take on deeply technical architecture and infrastructure work that no single human engineer could tackle before, and then we demystify evals so you can use them to make your AI products better without touching the implementation. What you’ll learn: 1. How Ankur uses Codex to run week-long benchmark experiments across database indexes, column store formats, and execution engines to speed up slow queries 2. Why he argues there’s no excuse to skip rigorous benchmarking now that agents can run them tirelessly 3. The “agent line” framework: how to decide which decisions, directions, and interactions you can hand off to an agent 4. How I think about the practical vs. theoretical quality of AI on hard technical problems, and why human attention decays on tedious work 5. Why evals are the modern version of a PRD, and how to encode “what good looks like” so a model can figure out the “how” 6. How to build a scoring function live and let an agent improve your prompt inside a safe playground 7. How Ankur turned his designer David’s taste into a repeatable eval so quality scales beyond one person 8. Why fixing your CI is the highest-leverage way to speed up engineering velocity — Brought to you by: Guru [https://www.getguru.com/?utm_source=howi_ai_podcast&utm_medium=podcast&utm_campaign=q1]—The AI layer of truth Persona [https://withpersona.com/lp/howiai]—Trusted identity verification for any use case — In this episode, we cover: (00:00) Introduction to Ankur Goyal (03:00) Using AI agents for database optimization (06:10) Running exhaustive benchmarks with coding agents (09:03) Why staff engineers are wrong about AI limitations (11:30) The “agent line” framework for delegation (14:00) Ankur’s workflow: running 4 to 6 concurrent agents (17:16) Technical setup: foreground agents, background agents, and cloud environments (20:32) Spending time with AI tools (23:06) Demystifying evals (26:02) Live demo: Building an eval for documentation answers (30:20) The alternative to evals: vibe checks and whack-a-mole (32:09) Capturing designer taste in scoring functions (33:13) Quick recap (33:44) Managing velocity and throughput (35:40) Why CI/CD investment is critical for AI-accelerated teams (37:30) Ankur’s prompting strategy when agents fail (39:10) Closing thoughts and how to connect — Tools referenced: • Braintrust: https://www.braintrust.dev/ [https://www.braintrust.dev/] • Codex: https://openai.com/codex/ [https://openai.com/codex/] • GPT 5.4: https://developers.openai.com/api/docs/models/gpt-5.4 [https://developers.openai.com/api/docs/models/gpt-5.4] • Claude: https://claude.ai/ [https://claude.ai/] — Other references: • GPT 5.5 just did what no other model could: https://www.lennysnewsletter.com/p/gpt-55-just-did-what-no-other-model [https://www.lennysnewsletter.com/p/gpt-55-just-did-what-no-other-model] • Paul Graham’s Maker vs. Manager Schedule: http://www.paulgraham.com/makersschedule.html [http://www.paulgraham.com/makersschedule.html] • tmux: https://github.com/tmux/tmux [https://github.com/tmux/tmux] • Chris Tate at Vercel: https://www.linkedin.com/in/ctatedev/ [https://www.linkedin.com/in/ctatedev/] — Where to find Ankur Goyal: LinkedIn: https://www.linkedin.com/in/ankrgyl/ [https://www.linkedin.com/in/ankrgyl/] — Where to find Claire Vo: ChatPRD: https://www.chatprd.ai/ [https://www.chatprd.ai/] Website: https://clairevo.com/ [https://clairevo.com/] LinkedIn: https://www.linkedin.com/in/clairevo/ [https://www.linkedin.com/in/clairevo/] X: https://x.com/clairevo [https://x.com/clairevo] — Production and marketing by https://penname.co/ [https://penname.co/]. For inquiries about sponsoring the podcast, email jordan@penname.co.

15. Juni 202640 min
Episode Claude Fable 5 review: what the new Mythos model gets right (and very wrong) Cover

Claude Fable 5 review: what the new Mythos model gets right (and very wrong)

Claude Fable 5 is the first Mythos-class intelligence model to be generally available, and I got early access to test it before launch. In this episode, I walk through what Anthropic is promising, what actually stood out when I used it on real work, and where I think it fits in your AI stack. — In this episode, we cover: (00:00) Introduction: Fable 5 is finally here (00:31) What Anthropic says about the model (05:14) Token-intensive by design (06:28) Safety classifiers and the new fallback concept (07:46) Is this or is this not Mythos? (08:30) New product launches: Managed Agents and more (09:20) Crushing benchmarks (09:55) What it’s actually like to use (the good and the bad) (11:40) Test 1: product graph spec (12:56) Test 2: designing a skills registry (14:04) Conservative on execution (14:43) Test 3: multi-agent orchestration (15:39) My takeaways — Tools referenced: • Claude Fable 5: https://www.anthropic.com/news/claude-fable-5-mythos-5 [https://www.anthropic.com/news/claude-fable-5-mythos-5] • Claude Managed Agents: https://platform.claude.com/docs/en/managed-agents/overview [https://platform.claude.com/docs/en/managed-agents/overview] — Other reference: • SWBench Pro benchmark: https://www.swebench.com/ [https://www.swebench.com/] — Where to find Claire Vo: ChatPRD: https://www.chatprd.ai/ [https://www.chatprd.ai/] Website: https://clairevo.com/ [https://clairevo.com/] LinkedIn: https://www.linkedin.com/in/clairevo/ [https://www.linkedin.com/in/clairevo/] X: https://x.com/clairevo [https://x.com/clairevo] — Production and marketing by https://penname.co/ [https://penname.co/]. For inquiries about sponsoring the podcast, email jordan@penname.co.

9. Juni 202617 min
Episode Shopping with Claude: How to find quality brands, automate returns, and buy things that last 100 years | Nicole Ruiz Cover

Shopping with Claude: How to find quality brands, automate returns, and buy things that last 100 years | Nicole Ruiz

Nicole Ruiz is a writer and parent who has built a comprehensive AI-powered shopping system to help her family buy high-quality, long-lasting items while avoiding the noise of drop-shipping brands, paid ads, and poorly made products. She writes an interview series on Substack about how technology is changing the household. What you’ll learn: 1. How to build a Claude Project with custom instructions for vetting brands based on heritage, craftsmanship, and return policies 2. The shopping criteria that help surface century-old manufacturers over trendy direct-to-consumer brands 3. How to use Claude to search through trusted vendor websites that have terrible UX 4. Why AI actually helps small artisans and heritage brands compete against Amazon’s infrastructure 5. How to use Claude Cowork to automate returns by finding receipts in your email and drafting refund requests 6. The technique for getting Claude to analyze whether a brand is legitimate or just a drop-shipping operation 7. How to shop within a specific budget or with gift cards using AI assistance — Brought to you by: Orkes [https://www.orkes.io/]—The enterprise platform for reliable applications and agentic workflows Metaview [https://www.metaview.ai/home/how-i-ai]—The agentic recruiting platform for winning teams — In this episode, we cover: (00:00) Introduction to Nicole and AI-powered shopping (02:29) The problem (04:55) Building a Claude Project for household purchasing (07:44) The “anti-to-do list” concept for reducing mental overhead (10:30) Shopping for a can opener: the system in action (15:53) How AI helps century-old brands with terrible websites (18:45) Processing returns with Claude Cowork (25:06) Using gift cards strategically (26:33) Vetting brands (29:40) Recap, lightning round, and final thoughts — Tools referenced: • Claude: https://claude.ai/ [https://claude.ai/] • Claude Cowork: https://www.anthropic.com/product/claude-cowork [https://www.anthropic.com/product/claude-cowork] — Other references: • Boston General Store: https://bostongeneralstore.com/ [https://bostongeneralstore.com/] • L.L.Bean: https://www.llbean.com/ [https://www.llbean.com/] • Manufactum: https://www.manufactum.com/ [https://www.manufactum.com/] • 5 OpenClaw agents run my home, finances, and code | Jesse Genet: https://www.lennysnewsletter.com/p/5-openclaw-agents-run-my-home-finances [https://www.lennysnewsletter.com/p/5-openclaw-agents-run-my-home-finances] • From a $6.90 newsletter to $3M API: How a non-coder built Memelord | Jason Levin: https://www.lennysnewsletter.com/p/from-a-690-newsletter-to-3m-api-how [https://www.lennysnewsletter.com/p/from-a-690-newsletter-to-3m-api-how] — Where to find Nicole Ruiz: X: https://x.com/nwilliams030 [https://x.com/nwilliams030] Substack (The Third Oikos): https://www.thirdoikos.com/ [https://www.thirdoikos.com/] — Where to find Claire Vo: ChatPRD: https://www.chatprd.ai/ [https://www.chatprd.ai/] Website: https://clairevo.com/ [https://clairevo.com/] LinkedIn: https://www.linkedin.com/in/clairevo/ [https://www.linkedin.com/in/clairevo/] X: https://x.com/clairevo [https://x.com/clairevo] — Production and marketing by https://penname.co/ [https://penname.co/]. For inquiries about sponsoring the podcast, email jordan@penname.co.

8. Juni 202636 min
Episode Gemini Omni: Clone yourself with AI in under 15 minutes Cover

Gemini Omni: Clone yourself with AI in under 15 minutes

In this experimental episode, I document my real-time attempt to create an AI avatar of myself using Google Flow and the new Gemini Omni video generation model. I walk through the entire process—from scanning my face with my phone to generating a complete one-minute hype video for the podcast, all in about 15 minutes. What you’ll learn: 1. How to create an AI avatar using Google Flow in under five minutes 2. Why video AI tools unlock creative possibilities for people with zero video production skills 3. The step-by-step process of generating a full storyboard using AI as your creative producer 4. How to use character consistency features to generate multiple video scenes with the same avatar 5. The uncanny-valley moments you’ll encounter when your AI clone doesn’t quite nail emotions or physics 6. How to stitch together AI-generated scenes into a complete video using built-in editing tools — Brought to you by: Merge [https://www.merge.dev/howiai]—Connective infrastructure for production AI Jira Product Discovery [https://atlassian.com/howiai]—Prioritize with insights, build with confidence — In this episode, we cover: (00:00) Getting started with Google Flow and Gemini Omni (01:38) The avatar creation process: scanning and photo capture (02:55) Using Flow to brainstorm a hype video storyboard (06:59) Generating the first video scene with the avatar (08:41) Troubleshooting: accidentally generating images instead of videos (09:32) Generating all seven scenes for the complete video (11:37) Reviewing the avatar videos (13:13) Stitching the videos together in the browser-based editor (14:32) The complete How I AI hype video (15:32) What worked and what didn’t (19:04) Final thoughts — Tools referenced: • Google Flow: https://labs.google/fx/tools/flow [https://labs.google/fx/tools/flow] • Gemini Omni: https://gemini.google/overview/video-generation/ [https://gemini.google/overview/video-generation/] • Veo 3: https://deepmind.google/technologies/veo/ [https://deepmind.google/technologies/veo/] — Where to find Claire Vo: ChatPRD: https://www.chatprd.ai/ [https://www.chatprd.ai/] Website: https://clairevo.com/ [https://clairevo.com/] LinkedIn: https://www.linkedin.com/in/clairevo/ [https://www.linkedin.com/in/clairevo/] X: https://x.com/clairevo [https://x.com/clairevo] — Production and marketing by https://penname.co/ [https://penname.co/]. For inquiries about sponsoring the podcast, email jordan@penname.co.

3. Juni 202620 min