Fixing a cache:clear command that couldn't run and couldn't be trusted

How Waaseyaa’s cache:clear command couldn’t even run in production, and how a hardcoded bin list quietly reported success while clearing the wrong cache entirely.

September 12, 2026 · 6 min · Russell

Fixing a silent message-drop bug in Waaseyaa's queue worker

How Waaseyaa’s queue worker silently acknowledged persistent messages with no matching handler, and the fail-closed fix that routes them through retry and the failed-job repository instead.

September 11, 2026 · 5 min · Russell

Fixing a schema-mutating access check in Waaseyaa's taxonomy package

How Waaseyaa’s taxonomy package let ordinary request traffic ALTER a table to add a foreign key, and the fix that moved that DDL exclusively into coordinated schema sync.

September 9, 2026 · 5 min · Russell

Stop letting a failing audit logger crash requests that already succeeded

Why a throwing audit logger in Waaseyaa’s MCP endpoint could crash a request after its outcome was already decided, and the containment pattern that fixed it.

September 8, 2026 · 5 min · Russell

Stop walking the filesystem in your CI gates — ask git instead

Why Waaseyaa’s CI gate scanners stopped walking the filesystem with a hand-maintained exclusion list and started asking git what’s actually in the repository.

September 7, 2026 · 5 min · Russell

Fixing a silent truncation bug in Waaseyaa's StreamHttpClient

How Waaseyaa’s StreamHttpClient silently turned a truncated, over-limit response body into an HTTP 200, and the fail-closed fix that rejects incomplete bodies instead of guessing.

September 6, 2026 · 5 min · Russell

Splitting Anokii into composable core, identity, and operator packages

How Anokii went from one monolithic repo with duplicate identity code to three composable Composer packages, published by a governed CI split instead of a manual release process.

August 20, 2026 · 4 min · Russell

One URL, two readers: serving HTML to people and Markdown to agents

How Waaseyaa serves the same content as a web page for people and clean Markdown for AI agents from a single URL, using HTTP content negotiation.

June 19, 2026 · 4 min · Russell

Remember when server-side rendering was just rendering?

How Waaseyaa’s SSR package renders HTML the way PHP always has, with Twig templates, field formatters, and a theme chain loader, no JavaScript runtime required.

April 6, 2026 · 6 min · Russell

Domain routing in Waaseyaa: replacing a giant dispatcher with small routers

How Waaseyaa splits a monolithic controller dispatcher into domain-specific routers using a two-method interface.

April 5, 2026 · 5 min · Russell