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
// Choose the stack by operating model
const stack = selectAgentStack({
  goal: "production agents",
  constraints: ["speed", "reliability"],
  memory: "postgres + vector",
  evals: "promptfoo",
  tracing: "langfuse"
});

return stack.ship();
Product + Tech

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.

11 min read May 2026