Ryan Carson's one-person agent company (Untangle, via Greg Isenberg's podcast, Jul 24) fused with our loop engineering system. Every claim below was verified against the verbatim transcript, including the numbers the AI analysis pass got wrong.
Founder of Treehouse (taught ~1,000,000 people to code), now running Untangle (AI divorce agent for family-law firms) as its only employee. Revenue 4x'd the month of recording.
Carson never says the word "loop engineering," but all three of his automations are textbook loops. Map them onto the six-part anatomy from the Loop Engineering Playbook and you see he's running the exact same machine, pointed at the BUSINESS instead of the codebase.
The Grace loop, in loop-anatomy terms:
TRIGGER -> daily
DOER -> pull yesterday's real customer conversations
CHECKER -> grade each against a written rubric (the human wrote the rubric,
the agent applies it: worker isn't grading its own homework)
STOP -> all conversations graded; fixes spawned only below threshold
MEMORY -> the rubric + the grade history
SKILLS -> child fix-sessions on cheaper models (parent/child = 10-80-10)
The insight that matters for us: the loop playbook taught WHERE loops come from (repeat asks) and HOW to build them safely (checker, caps). Carson adds WHAT to point them at: real customer interactions, graded nightly. Code loops make you ship faster. Interaction-grading loops make the product better while you sleep, and they find work nobody would ever assign: "there are things that I just wouldn't bother doing."
Five imports, each one wired to assets we already own.
| Carson's pattern | Our version | Ingredients we already have |
|---|---|---|
| The Grace loop | Nightly loop pulls the day's CallSetter voice-agent calls and demo interactions, grades each against a rubric built from the script checklist, queues fixes for anything below the bar. Voice-agent edits stay surgical and approval-gated per our laws. Same recipe later for RRC bookings and GH nurture replies. | Call recordings, script-checklist.ts, the voice-agent SOP, sales-manager-analyzer skill |
| 9:00 AM watchdog digest | One morning digest that consolidates ALL our monitors (GH funnel, deploy ledger, A2P status, review machine, bounce alerts) into a single message with direct links. Today those are scattered outputs nobody reads until something breaks. | All the monitor crons, the brain dash, iMessage bridge |
| E2E flow test | Scheduled real-browser runs of the money paths: GH checkout (card + crypto), Mold Scanner scan purchase, RRC booking, CallSetter demo booking. Screenshot proof, text on failure. | agent-browser, Playwright, the checkout tunnel knowledge |
| Parent/child split | Formalize in every loop: smart model plans and reviews, cheap models grind. Already our subagent routing law, now a hard default in loop templates. | subagent-model-routing rule |
| Phone-first decisions | Carson does half his work from his phone. Our decision queue routes to the iMessage bridge: morning digest + approval asks land as texts, you clear 10 decisions from anywhere. The 25-minute batching rhythm instead of terminal-hovering. | iMessage bridge (live), XaviDash approvals write-path |
Merged with the loop playbook's upgrade backlog, ordered by revenue impact.