Writing on AI, System Design & Enterprise Architecture
Long-form guides, frameworks, and lessons from 16+ years of building at scale. Practical, opinionated, and built for people who actually build things.
async function buildAgent() {
const tools = loadMCP("enterprise");
const guardrails = loadPolicy("compliance");
const agent = orchestrate({
model: "claude-4",
tools,
guardrails,
fallback: "human-in-loop"
});
return agent.deploy();
}
Building an AI Orchestration Platform From Scratch: What I Learned
Architectural decisions, trade-offs, and what 16 years of enterprise systems taught me about production AI.
const stack = selectAgentStack({
goal: "production agents",
constraints: ["speed", "reliability"],
memory: "postgres + vector",
evals: "promptfoo",
tracing: "langfuse"
});
return stack.ship();
Best AI agent stack 2026: a practical guide
Four credible AI agent stacks, when to use each, and how to pick the right one for your team.
Static Site Generators in 2026: What They Get Right, What They Get Wrong, and Why I Built Something Simpler
A look at static site generators like Hugo, 11ty, and Astro — and why I built BlogGen, a simpler alternative for personal blogs.
Agentic AIWhat Is Agentic AI? A Solution Architect's Guide to the Next Frontier
Agentic AI enables autonomous goal-directed systems that observe, plan, act, and reflect. Learn the architecture, real deployments, and when to use agents vs. simpler AI.
Agentic AIWhat Is Generative AI? Cutting Through the Hype with 16 Years of Enterprise Context
Generative AI predicts and generates new content by learning patterns from data. Learn how transformers work, real enterprise deployments, and when to actually use it.