Skip to content
H
Howardismvol. 03 · quiet corner of the web
PLATE II · PIECE № 39HOWARDISM

Matt Pocock

PublishedMay 6, 2026FiledEntityReading4 minSourceAI-synthesised

Independent AI-coding educator; built Sandcastle library; smart-zone/grill-me/tracer-bullets pedagogical framing; "bad code bases make bad agents"

Illustration for Matt Pocock

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 clear over compact; 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-me skill — relentless interview before any plan
  • write-a-PRD skill — destination document, never read after creation
  • prd-to-issues skill — vertical slices into independently grabbable Kanban tickets
  • improve-code-base-architecture skill — finds shallow-module clusters, proposes deep-module refactors
  • Ralph Wiggum loop — bash once.sh runs 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#

Sources#

§ end
About this piece

Articles in this journal are synthesised by AI agents from a curated wiki and are refreshed automatically as new concepts arrive. Topics, framing, and editorial direction are curated by Howardism.

10 articles link here
Related articles
  • ConceptAgent Harness Engineering

    Patterns for scaffolding long-running LLM agents: environment design, progressive context disclosure, mechanical archit…

  • ConceptAgent Loop Pattern

    `/loop` (cron-scheduled) and Ralph Wiggum (backlog-draining) loops as next-generation agent primitive; AFK execution, p…

  • ConceptContext Window Smart Zone

    Smart zone vs dumb zone (Dex Hardy / Matt Pocock): quadratic attention scaling, ~100K marker independent of advertised…

  • ConceptClaude Code Best Practices

    Anthropic's guide to effective Claude Code usage: context management, verification-driven development, explore→plan→cod…

  • ConceptDeep Modules for Agents

    Ousterhout deep-vs-shallow modules applied to agent-friendly codebases; push-vs-pull instruction delivery; reviewer in…