← ClaudeAtlas

workbench-builderlisted

Builds disposable localhost workbenches — Flask + raw sqlite3 + htmx + Server-Sent Events apps — that give an agentic coding/eval/PR/data session a live UI with no build step, npm install, or deploy. The signature move is a two-way human↔agent loop over one SQLite file: the human acts in the browser (htmx POST → SQLite → fragment + SSE invalidation), the agent acts from the terminal (httpx → SQLite → SSE), both seeing the same state update live with no reload. Ships recipes for eval viewers, PR review rooms, document review / redline surfaces, trace replays, refactor cockpits, and more. Use when the user wants a quick local UI for a coding/eval/PR/data task, OR mentions localhost workbench, eval viewer, PR review room, review/redline a document, select text and leave comments, htmx+SSE app, live invalidation, two-way agent loop, or "build me a little UI for this." Do NOT use for production apps or React/Vue/Svelte SPAs (use frontend-design), or static one-shot data pages / HTML reports (use generative-ui).
theagenticguy/agentic-plugins · ★ 2 · Web & Frontend · score 81
Install: claude install-skill theagenticguy/agentic-plugins
## Contents | File | When to load | | ------------------------------- | ------------------------------------------------------------------------------------------------------- | | `references/orchestrator.md` | Running the pipeline — the five phases, the subagent prompt shape, check-in cadence, stuck detection | | `references/write-protocol.md` | Canonical write-protocol block, copied verbatim into every phase worklog and subagent prompt | | `references/architecture.md` | The boring-on-purpose stack — SSE-as-invalidation, the fan-out, the two-way loop, threading, gotchas | | `references/cdn-deps.md` | Verified CDN dependency catalog — SRI hashes, the uncompressed-bytes rule, package-name traps | | `references/rendering.md` | The markdown/mermaid/highlight/sanitize pipeline, progressive disclosure (chip → modal/sheet), charts | | `references/recipes.md` | The recipe catalog — one data model + layout per workbench type, with the unique value of each | | `templates/app.py` | Backend scaffold — SQLite schema, db helpers, SSE fan-out + `publish()`, partial routes, loop endpoints | | `templates/index.html` | Frontend scaffold — CDN tags with verified SRI, design tokens, htmx-SSE wiring, render engine, overlays | | `templates/terminal-helper.py` | PEP 723 httpx helper the termin