Not a pitch for what I could build. A walk through the self-running system I operate for my own business right now — and how the same loops point at yours.
Paul Cowen · AI Orchestration — 1 June 2026
A human triggers each step. A deterministic graph in n8n / Make / Zapier. Last year's "AI copilot" — a 20–30% productivity bump. Useful, but it stops the moment you stop.
The system observes, decides, acts, evaluates its own output, repairs itself, and keeps going on its own clock. The human is removed from the loop — it's already improved by the time you're back.
Your two videos draw exactly this line. It's the side I build on — and the bit most "AI automation" people skip.
Point it at a course folder. It transcribes every video, extracts teachable frameworks + a domain ontology, embeds the synthesis, files it, and makes the cross-course graph richer for the next run. Each course makes the next forge smarter.
Expensive intelligence sits only at orchestration and final judgement. Bulk labour routes to free local models across a private mesh — running 24/7 at zero credit cost.
| Job | Routed to | Why |
|---|---|---|
| Orchestration & judgement | Claude Opus (conductor) | The one brain worth paying for |
| Transcription (190+ videos) | faster-whisper, local M4 | Free, parallel, resumable |
| Framework + ontology forging | Codex / GLM-4.7 on "the Beast" | Bulk reasoning, free, 24/7 |
| Failover when a box stalls | 48GB node over Tailscale | Live multi-machine recovery |
Autonomous agents reading a live database is where most setups quietly leak. Mine read a curated slice through scoped keys — denied at the Postgres grant layer on everything else, including where row-security is off.
| Agent | Course library | Full text + search | Payments · clients · memory | Writes |
|---|---|---|---|---|
| Hermes (tightest) | ✓ read | ✕ denied | ✕ denied | ✕ denied |
| OpenClaw (hardened) | ✓ read | ✓ read | ✕ denied | ✕ denied |
Never the master key. Curated views, standalone roles, revocable in one line. Exactly the governance an agency's "policy layer" demands.
My production autonomy runs in my harness today — not yet inside a client repo with merge-and-deploy loops like your first video. That's an integration job, not a capability gap: same loop, your codebase, your deploy gates. I'd rather flag it now than have you find it.
Paul Cowen · Autonomous Ops