A product discussed on AI Engineer.

Your agent architecture has a half-life of 6 months — Dan Farrelly, CTO, Inngest
Jul 21, 2026 · 19:20
Dan Farrelly, CTO and co-founder of Inngest, argues that agent architectures have a half-life of six months because teams couple execution, context, and compute layers together, causing rapid obsolescence when models, frameworks, or patterns change. He presents a mental model of three discrete layers: execution (the brain, for flow, state, durability, retries), context (models, prompts, tools, memory, the layer that changes most), and compute (sandboxes, runtimes, browsers, the hands). Farrelly contends that execution is the stable layer that can last years if properly decoupled, and that it must provide resumability via external durable state, flexible invocation patterns (crons, events, human-in-the-loop), and full session observability beyond LLM calls. He warns against using sandboxes for durability since they are ephemeral and stateless, and instead advises letting execution give sandboxes their context and sequence. Covering emerging trends like background agents and autonomous loops, he emphasizes that these long-running, asynchronous systems require orchestration-aware execution to track failures, debug, and score outcomes. The episode centers on building a harness that…

Infra that fixes itself, thanks to coding agents — Mahmoud Abdelwahab, Railway
Nov 24, 2025 · 18:08
Mahmoud Abdelwahab from Railway presents Railway Autofix, a system that uses Inngest for durable execution and OpenCode as a coding agent to automatically detect infrastructure issues and open pull requests to fix them. The system runs scheduled workflows to fetch project architecture, resource metrics, and HTTP performance data, then analyzes services exceeding thresholds. For affected services, it gathers additional context like logs and generates a detailed fix plan using an LLM. The coding agent then implements the plan and opens a PR with a summary of changes. The talk demonstrates how this shifts developers from manually investigating alerts to simply reviewing auto-generated fixes.

The Demo I Wish I'd Had: OpenAI's Agents SDK... serverless! - Brook Riggio
Jun 3, 2025 · 17:51
Brook Riggio demonstrates deploying AI agent workflows on Vercel's serverless platform using OpenAI's Agents SDK and Inngest orchestration. He presents a reference architecture: Next.js frontend triggers Inngest events that invoke Python agents on Vercel serverless functions, with automatic retries and step-level observability. His demo builds a newsletter generator: users enter topics, a research agent scans news, a formatting agent structures the content, and results save to Vercel blob storage while the frontend polls for completion. He highlights that Vercel automatically detects Python functions without a config file, and Inngest's step.run ensures reliable execution within serverless time limits. The talk emphasizes cost efficiency (pay only for actual execution), full type safety via Pydantic and TypeScript, and easy integration of long-running agent tasks. The open-source repo is available for fork and contributions.
Powered by PodHood