Systems

The differentiator isn't six websites. It's the organization and pipeline that build, test, and operate them — mostly without human hands.

Autonomous agent organization

A multi-agent company structure — CEO, planner, builders, QA auditor — running work through sprint-style phase loops driven by cron. Roles have narrow charters: builders ship to staging only, QA signs off independently, promotion is a separate authority.

  • Role separation
  • Cron phase-loops
  • Evidence-based QA

LAN staging platform

Every property gets a per-site staging server on an isolated development machine — noindex-enforced, keepalive-monitored, one port per site. Nothing reaches production unsigned: a build is only "done" when it has a staging URL and a passing QA verdict.

  • Per-site isolation
  • noindex enforced
  • Acceptance gates

Daily release train

One batched production write per day, in a fixed window. Per site: snapshot → QA-PASS gate → promote → smoke check → report line. Rollback is a snapshot restore. No ad-hoc writes to production exist — by policy and by tooling.

  • Snapshot-first
  • QA-gated
  • Fixed window

Edge infrastructure

An affiliate link proxy with click tracking, an A/B experiment platform serving variants and capturing metrics across sites, retry tooling that absorbs upstream model failures, and hourly health checks feeding the live status below.

  • Link proxy + tracking
  • A/B platform
  • Hourly health feed

Live status

Health of all six properties, checked hourly from independent infrastructure. This widget reads the same feed our operations dashboards use.

Loading status…

Feed updates hourly. If this panel shows stale data, the checker itself is down — which we would also know, because it pages us.

The loop

How a change reaches production:

  1. Plan. A phase plan with acceptance criteria is written before any code.
  2. Build. A builder implements on the LAN staging platform — never directly on production.
  3. Verify. The builder self-checks routes, headers, links; then QA audits independently against the acceptance criteria.
  4. Gate. QA writes a signed pass marker. No marker, no promotion — enforced by the release tooling itself.
  5. Promote. The daily release train snapshots current production, promotes the verified build, and smoke-checks it from outside the network.
  6. Roll back if needed. Snapshot restore. Minutes, not hours.