01 — Essays2 pieces · agents, harnesses, delivery

Notes from inside the build.

Agent architecture, harness design and the unglamorous operational work that decides whether an LLM system survives contact with production.

LatestAugust 19, 202611 min read

AI code review, and the agent I built to gate every merge

Generating code got cheap; reading it did not. The bottleneck moved from writing to reviewing — so here is the two-tier review agent I run on my own repos: a fast local gate before the commit lands, a deeper agentic pass on the pull request, and the evals that keep both honest.

Read the essay
Code reviewAgentsCI/CD

Archive — everything else

Filter
Feb 18, 20269 min read

How to build AI agents using LangChain

AI agents are no longer science fiction — they're writing code, querying databases and making decisions in production right now. A build-along from an empty file to a working loop, with LangChain and LangGraph.

Read the essay
AgentsLangChainPython