Sources#
Summary#
Independent TypeScript educator turned AI-coding educator. Runs the AI Hero website. Authored a Claude Code course (recorded at 200K context window; Anthropic launched 1M context the day his course shipped). Built Sandcastle, a TypeScript library for parallel agent loops with Docker-sandboxed git worktrees.
Notable claims and stances#
- Software engineering fundamentals still apply. Central thesis of his AI Engineer 2026 keynote and workshop: "We forget that actually software engineering fundamentals, the stuff that's really crucial to working with humans, also works super well with AI." Cites Brooks's Design of Design, Pragmatic Programmer's tracer bullets, Ousterhout's Philosophy of Software Design, Fowler's refactoring rules.
- Smart zone vs dumb zone. Borrows Dex Hardy (Human Layer)'s framing: LLMs degrade quadratically with context size. Pegs the smart-zone marker around 100K tokens regardless of advertised window (see Context Window Smart Zone).
- Memento metaphor. Each session resets to the system prompt. Prefers
clearovercompact; compaction creates "sediment" that degrades subsequent work. - Specs-to-code is wrong. Vibe coding by another name. The code is the battleground, not the spec.
- Grill, then plan, not plan, then read. Uses a relentless-interview skill (
grill-me) to reach Brooks's "design concept" — shared understanding with the LLM — before writing the PRD. Doesn't review the resulting PRD because alignment was achieved during grilling (see Design Concept Grilling). - Tracer bullets over multi-phase plans. Vertical slices that touch every layer beat horizontal layer-by-layer execution; agents naturally code horizontally and need to be pushed (see Vertical Slice Tracer Bullets).
- Kanban over sequential plans. A Kanban with blocking relationships parallelizes; a numbered phase list serializes.
- Deep modules win. Ousterhout's deep-module pattern makes codebases agent-friendly: small interface, lots of behavior, big test boundary (see Deep Modules for Agents).
- Reviewer in fresh context. Implementation in the smart zone leaves the reviewer in the dumb zone if both share context. Always clear before review.
- Push for reviewer, pull for implementer. Coding standards always-in-context for the reviewer; on-demand-via-skill for the implementer.
- Doc rot kills. Delete (or close) PRDs after implementation; old PRDs mislead future agents.
- Own your stack. Doesn't trust spec-kit / open-spec / Taskmaster / similar pre-built stacks because users lose observability when they break.
Tools, skills, primitives he uses#
grill-meskill — relentless interview before any planwrite-a-PRDskill — destination document, never read after creationprd-to-issuesskill — vertical slices into independently grabbable Kanban ticketsimprove-code-base-architectureskill — finds shallow-module clusters, proposes deep-module refactors- Ralph Wiggum loop — bash
once.shruns Claude with full backlog as context, repeats - Sandcastle — TypeScript orchestrator: per-issue Docker work tree, parallel implementer agents (Sonnet), reviewer agent (Opus), merger agent
- Status-line token-count widget — "essential information on every coding session" (knows when nearing dumb zone)
Workflow shape (his diagram)#
Idea → grill → research/prototype → PRD (destination) → Kanban (journey, vertical slices) → AFK loop (implement → review → merge → loop) → human QA → team review
The first half is human-in-the-loop; the AFK loop handles implementation with no human present; QA is the place where human taste re-enters the system.
Key quotes#
- "If your code base doesn't have feedback loops, you're never ever ever going to get decent AI decent output out of AI."
- "I needed to reach a shared understanding. I needed an asset, I didn't need a plan, I needed to be on the same wavelength as the AI."
- "Bad code bases make bad agents."
- "There are two essential documents that we need: a document that documents the destination, and a document that documents the journey."
Connections#
- Context Window Smart Zone — his clearest pedagogical framing of the constraint
- Design Concept Grilling — the grill-me skill is his
- Vertical Slice Tracer Bullets — applies Pragmatic Programmer to agent task decomposition
- Deep Modules for Agents — applies Ousterhout to agent-friendly codebases
- Agent Loop Pattern — Ralph loop is his canonical example
- Harness Shrinkage as Models Improve — counterpoint: he sees harness as still important even with strong models, but agrees implementation can go fully AFK
- Agentic Technical Debt — his deep-modules + grill-me + Sandcastle stack is the practitioner-pragmatist version of the same defense Anthropic prescribes for founders via CLAUDE.md
Sources#
- Full Walkthrough: Workflow for AI Coding — Matt Pocock — AI Engineer World's Fair workshop, 2026-04-24
Cited by 19
- Learning to Co-Work with AI: A Software Engineer's Field Guide×8
Adopt a grill-me discipline. Matt Pocock's skill, verbatim: "Interview me relentlessly about every…
- Agent Loop Pattern×5
A loop is an agent process that repeatedly executes a prompt until a queue is empty or a stopping…
- Opinions on Using AI Tools & the Future of the Software Engineering Role×4
Code-review fluency — the new bottleneck once agents ship faster (Matt Pocock, Ai Native Product…
- Context Window Smart Zone×3
LLMs do not degrade linearly as context grows; they degrade quadratically because attention…
- Design Concept Grilling×3
Matt Pocock's grill-me skill — a relentless interviewer prompt that walks down decision-tree…
- Harness Shrinkage as Models Improve×3
Not every voice agrees. Matt Pocock argues the harness — feedback loops, deep modules, mechanical…
- Deep Modules for Agents×2
John Ousterhout's A Philosophy of Software Design distinguishes deep modules (small interface,…
- The PRD-Replacement Spectrum at AI-Native Speed×2
Alignment is relocated, not removed. It moves earlier (grill before any artifact — Design Concept…
- Vertical Slice Tracer Bullets×2
Borrowed from The Pragmatic Programmer and applied to agent task decomposition by Matt Pocock: when…
- Agentic Technical Debt
Deep Modules For Agents — Ousterhout-style deep modules + persistent-context discipline are the…
- AI Native Product Cadence
Code review. When agents ship more code, humans review more. Matt Pocock's confession applies: "I…
- Building Is Cheap, Arguing Is Expensive
This norm is in productive tension with the wiki's planning-first concepts. Design Concept Grilling…
- Claude Code
Matt Pocock — workshop-grade workflow; adapts skills to grill-me + Ralph loop pattern
- Context Lifecycle Management
Summarization's cost is now quantified, not intuited. Context Window Smart Zone records Matt…
- Evals as Product Spec
Matt Pocock doesn't use the word "evals" — his pedagogical framing is "verification" and "feedback…
- Entities — People, Orgs, Tools & Projects
Matt Pocock — Independent AI-coding educator; built Sandcastle library;…
- Open Questions Backlog
Agent Loop Pattern: Loop output review is now Matt Pocock's confessed bottleneck — "we just need to…
- Prototype Over PRD
PRD as destination doc · Design Concept Grilling (Matt Pocock) · Reach the design concept by…
- Where Does the Why Live?
The grilling session. Matt Pocock's grill-me (Design Concept Grilling) drives toward Brooks's…
Related articles
- Claude Code Best Practices
Anthropic's guide to effective Claude Code usage: context management, verification-driven development, explore→plan→cod…
- Design Concept Grilling
Matt Pocock's `grill-me` skill; reach Brooks "design concept" before any plan; counter to specs-to-code; PRD as destina…
- Context Window Smart Zone
Smart zone vs dumb zone (Dex Hardy / Matt Pocock): quadratic attention scaling, ~100K marker independent of advertised…
- Agent Harness Engineering
Patterns for scaffolding long-running LLM agents: environment design, progressive context disclosure, mechanical archit…
- Agent Loop Pattern
`/loop` (cron-scheduled) and Ralph Wiggum (backlog-draining) loops as next-generation agent primitive; AFK execution, p…
