The bait, then the rug-pull.
Twenty-five years of launching products and the fear never goes away — but the tooling has caught up. Josh Pigford walks through the exact Claude Code skill stack he uses to ship five AI products simultaneously as a solo founder, including the adversarial review loop that finds the bugs Claude reliably misses.
Where the time goes.
01 · Cold open
Rapid-cut trailer of key moments: launch fear, AI skill stack teaser, ship-fast philosophy.
02 · Tour of 5 products
ProxyUser (synthetic QA with real browsers), Rumored (LLM hallucination monitoring for brands), ReplySocial (unified social reply inbox), KeptWell (family medical records + AI chat). Each shipped within days of the idea.
03 · /build skill: Research, plan, track, implement
The four-phase build skill generates a research doc, then an implementation plan with user-testable phases, each phase in its own git worktree with a unique port. PROGRESS.md carries decisions forward to future phases without relying on conversation history.
04 · /adversarial-code-review: GPT reviewing Opus's code
Opus does the primary build. GPT-5.5 does an adversarial review in Conductor's built-in review panel and finds 3-5 bugs per phase. The model-switch is intentional — different training biases surface different failure modes.
05 · /learnings + /but-for-real skills
The /learnings skill reads a completed worktree's full session history and distills corrections into CLAUDE.md additions. The /but-for-real skill forces a self-audit pass — catching bugs separate from the GPT review.
06 · Design process: Illustrator-first, Rumored brand demo
Logo and color system done in Adobe Illustrator before touching code. Josh walks through the Rumored brand exploration: font hunting for interesting quotation marks, color iteration, texture experiments. Only after brand is locked does AI generate the marketing site copy from the actual feature set.
07 · Advice for builders without technical experience
Vibe coding is not a slur — failing fast is the only way to learn what not to do. Ship within 24 hours. The problem you solved for yourself looks slightly different to every user, and you cannot know that until they are inside the product.
08 · Wrap
Where to find Josh: @Shpigford on X, initialcommit.co.
Lines you could clip.
"I use Opus for the bulk of everything. I'll then do a review pass using GPT-5.5, and it invariably finds three to five bugs that Opus overlooked."
"The 'but for real' skill basically bullies the AI into, 'you almost certainly screwed some stuff up.'"
"The idea of spending months working on something before you put it out for other people to use — I think that's a real bad idea."
Things they pointed at.
Word for word.
How to build a self-correcting AI coding system
The gap between a solo builder who ships five products and one who ships none is almost never talent — it is the feedback loops they have built around their AI.
- Two models reviewing the same code outperforms one model reviewing it twice — GPT-5.5 consistently catches 3-5 bugs per phase that Opus authored and missed.
- Splitting work into git worktrees is not just a context-limit workaround; it creates natural rollback checkpoints and forces each phase to be independently shippable.
- A PROGRESS.md file that records decisions and learnings lets each new session inherit context from the last without dragging in conversation history that causes context rot.
- The /but-for-real adversarial prompt — telling the LLM it almost certainly made mistakes and forcing a self-audit — catches a separate class of bugs from external review; run both.
- A /learnings skill that reads session history and rewrites CLAUDE.md after each worktree means the AI's failure modes decrease over the life of a project instead of persisting indefinitely.
- Design decisions made before code is written — name, logo, type, color — produce less generic-looking products than AI-generated landing pages built from a brief.
- Low-price plans generate the highest support overhead per dollar; pricing to cover infrastructure costs and shutting down when it doesn't is a sustainable solo-business discipline.
- Products ship the day they compile: assumptions about the problem are always slightly wrong, and only real users reveal what the actual problem looks like for people other than the builder.







































































