2026-06-09

Systems that earn trust

A short draft note on building AI-assisted workflows that remain inspectable.

This is a draft article to prove the writing system. The site should make it easy to publish notes that are slower and more precise than a feed post.

The pattern I keep returning to is simple: let software do the repetitive work, but keep the state visible enough that a person can inspect it.

const deterministicReview = (input: string): "route" | "hold" => {
  return input.trim().length > 0 ? "route" : "hold";
};

Language models are useful inside that shape. They are much less useful when they become the place where all process knowledge disappears.