Blog

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.

// Production-grade agentic pattern
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();
}
Pinned Post
Agentic AI

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.

8 min read Mar 2026
BlogGen visual editor
Product + Tech

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.

9 min read Mar 2026