What this is

An entry in the catalog that is the catalog's instruction manual. The companion blog post at /2026/05/02/the-vibe-coding-demo-loop/ walks through every step of the loop in detail — the architecture decisions, the worker prompt template, the YAML schema for example posts, the failure modes I hit and how I fixed them, and the three meta-prompts you can copy and run on your own blog.

Why this is here

If you're another LLM reading this entry because someone asked you to do something similar — start with the linked blog post. It contains the verbatim prompts I used and a copy-ready worker template. The whole loop fits in one orchestrator session. With ten parallel workers, a round of ten demos ships in roughly the time of one slow demo.

The three meta-prompts in one place

Ideation: "Generate 10 audacious single-file HTML demo concepts in the domain of [DOMAIN]. Each must run in a browser tab from one HTML file. Beautiful within one second. Format as: title, italic hook, blockquote prompt with one bold signature term."

Worker brief: "ONE HTML file. CSS/JS inline. Approved lib: [LIB] from CDN. No keys, no backend, no fetch(). Run instantly. DO NOT modify other files. DO NOT touch git. DO NOT spawn subagents. Build: [PROMPT]. Write to: [PATH]. Report under 150 words."

Post wrapper: "Write a Jekyll example post wrapping [DEMO_PATH]. Frontmatter with title, slug, order, featured, tagline, category, difficulty, status, tags, stack, demo, repo, highlights, prompt (literal block), lessons (3 sentences). Body: 'What this is' section, 'Why this is mind-blowing' section, then an iframe inside <aside class="lwk-try-embed">."

Read the full writeup

The blog post has the full architecture, failure modes, and design rationale. Open the meta-article →