While driving the new live loop end-to-end against the repeated-aside
fixture, --text disambiguation silently fell back to first-match instead
of landing on the picked card.
Root cause: `el.textContent` concatenates child text nodes without
inserting whitespace, so `<h1>Hero Two</h1><p>Second card body copy.</p>`
reads as "Hero TwoSecond card body copy." — but the source has whitespace
between </h1> and <p>. The single-space normalization on both sides
missed the join boundary; substring comparison failed; filterByText
returned [] and the caller fell through to first-match.
Fix: filterByText now compares both single-space AND no-whitespace
normalizations on each side, accepting the candidate if EITHER matches.
Bumped the minimum-target-length threshold from 6 to 8 to compensate
for the slightly looser comparison.
Plus two doc clarifications surfaced during the same session:
- live.md now warns that variant CSS using bare `:scope { ... }` styles
the variant wrapper div, not the picked element. Always use a
descendant combinator (`:scope > .card`, `:scope .hero-title`, etc.) —
the fake test agent's CSS is the canonical template.
- live.md documents the agent-side abort path. Aborting an in-flight
generate via `live-accept --discard` only mutates source — the browser
bar stays in GENERATING forever. Use `live-poll --reply EVENT_ID error
"msg"` instead so the browser receives the error SSE and resets.
Test coverage:
- New unit test in live-wrap.test.mjs covering the textContent-without-
inter-element-whitespace shape (three identical <aside> branches each
with <h1> + <p>, picks the second by --text).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
39 KiB
Interactive live variant mode: select elements in the browser, pick a design action, and get AI-generated HTML+CSS variants hot-swapped via the dev server's HMR.
Prerequisites
A running dev server with hot module replacement (Vite, Next.js, Bun, etc.), OR a static HTML file open in the browser.
The contract (read once)
Execute in order. No step skipped, no step reordered.
live.mjs— boot.- Navigate to the URL that serves
pageFile(infer frompackage.json, docs, terminal output, or an open tab). If you can't infer it confidently, tell the user once to open their dev/preview URL. Never useserverPortas that URL — it's the helper, not the app. - Poll loop with the default long timeout (600000 ms). After every event or
--reply, runlive-poll.mjsagain immediately. Never pass a short--timeout=. - On
generate— read screenshot if present; load the action's reference; plan three distinct directions; write all variants in one edit;--reply done; poll again. - On
accept/discard— the poll script already cleaned up; just poll again. - On
exit— run the cleanup at the bottom.
Harness policy:
- Claude Code: run the poll as a background task (no short timeout). The harness notifies you when it completes, so the main conversation stays free. Do not block the shell.
- Cursor: run the poll in the foreground (blocking shell — not a background terminal, not a subagent). Cursor background terminals and subagents do not reliably resume the chat with poll stdout.
- Codex: run the poll in the foreground (blocking shell — not a background task, not a subagent). Codex background exec sessions do not reliably surface poll stdout back into the conversation at the moment events arrive, so a "fire-and-forget" background poll will stall live mode.
- Other harnesses: foreground unless you know stdout reliably returns to this session.
Chat is overhead. No recap, no tutorial output, no pasting PRODUCT / DESIGN bodies. Spend tokens on tools and edits; on failure, one or two short sentences.
Start
node .claude/skills/impeccable/scripts/live.mjs
Output JSON: { ok, serverPort, serverToken, pageFiles, hasProduct, product, productPath, hasDesign, design, designPath, migrated }. pageFiles is the list of HTML entries the live script was injected into. Keep PRODUCT.md and DESIGN.md in mind for variant generation — DESIGN.md wins on visual decisions; PRODUCT.md wins on strategic/voice decisions. If migrated: true, the loader auto-renamed legacy .impeccable.md to PRODUCT.md; mention this once and suggest /impeccable document for the matching DESIGN.md.
serverPort and serverToken belong to the small Impeccable live helper HTTP server (serves /live.js, SSE, and /poll). That port is not your dev server and is usually not the URL you open to view the app. The browser page is whatever origin serves one of the pageFiles entries (Vite / Next / Bun / tunnel / LAN hostname).
If output is { ok: false, error: "config_missing" | "config_invalid", path }, this project hasn't been configured for live mode (or its config is stale). See First-time setup at the bottom.
Poll loop
LOOP:
node .claude/skills/impeccable/scripts/live-poll.mjs # default long timeout; no --timeout=
Read JSON; dispatch on "type"
"generate" → Handle Generate; reply done; LOOP
"accept" → Handle Accept; LOOP
"discard" → Handle Discard; LOOP
"prefetch" → Handle Prefetch; LOOP
"timeout" → LOOP
"exit" → break → Cleanup
Handle generate
Event: {id, action, freeformPrompt?, count, pageUrl, element, screenshotPath?, comments?, strokes?}.
Speed matters — the user is watching a spinner. Minimize tool calls by using the wrap helper and writing all variants in a single edit.
1. Read the screenshot (if present)
event.screenshotPath is only sent when the user placed at least one comment or stroke before Go. When present, it's an absolute path to a PNG of the element as rendered with the annotations baked in. Read it before planning — annotations encode user intent not recoverable from element.outerHTML alone.
When screenshotPath is absent, don't ask for one and don't go looking for the current rendering. The omission is deliberate: without annotations, a screenshot would anchor the model on the existing design and fight the three-distinct-directions brief. Work from element.outerHTML, the computed styles in event.element, and the freeform prompt if present.
event.comments and event.strokes carry structured metadata alongside the visual. Treat the screenshot as primary; use the structured data for specifics worth quoting (e.g. the exact text of a comment).
Reading annotations precisely:
- Comment position is load-bearing. Its
{x, y}is element-local CSS px (same coord space aselement.boundingRect). Find the child under that point and apply the comment text LOCALLY to that sub-element. A comment near the title is about the title, not a global description. - Comments and strokes are independent annotations unless clearly paired by overlap or tight proximity. Don't let the visual weight of a prominent stroke override the precise location of a textually-specific comment elsewhere.
- Strokes are gestures — read them by shape. Closed loop = "this thing" (emphasis / focus); arrow = direction (move / point to); cross or slash = delete; free scribble = emphasis or delete depending on context. A loop around region X means "pay attention to X," not "only change pixels inside X."
- When a stroke's intent is ambiguous (circle or arrow? emphasis or move?), state your reading in one sentence of rationale rather than silently guessing. If the uncertainty materially changes the brief, ask one short clarifying question before generating.
2. Wrap the element
node .claude/skills/impeccable/scripts/live-wrap.mjs --id EVENT_ID --count EVENT_COUNT --element-id "ELEMENT_ID" --classes "class1,class2" --tag "div" --text "TEXT_SNIPPET"
Flag mapping — keep them separate, don't collapse into --query:
--element-id←event.element.id--classes←event.element.classesjoined with commas--tag←event.element.tagName--text← first ~80 chars ofevent.element.textContent(trim, single-line). Pass this every call. When the picked element shares classes + tag with sibling components (a list of<Card>s, repeating sections), this is what disambiguates which branch in source to wrap. Without it, wrap silently lands on the first match and may rewrite the wrong element.
The helper searches ID first, then classes, then tag + class combo. If event.pageUrl implies the file (e.g. / is usually index.html), pass --file PATH to skip the search. --query is a fallback for raw text search only — do not use it for normal element lookups.
If --text matches multiple candidates equally well, wrap exits with { error: "element_ambiguous", candidates: [...] } and fallback: "agent-driven" — read the candidate line ranges, decide which one matches the picked element from page context, and write the wrapper manually per the fallback flow.
Output on success: { file, insertLine, commentSyntax }.
Fallback errors. Wrap only writes into files it judges to be source (tracked by git, not marked GENERATED, not listed in config's generatedFiles). If it can't land on a source file, it errors without writing — accepting a variant into a generated file is silent data loss. Three shapes:
{ error: "file_is_generated", file, hint }— user-supplied--filepoints at a generated file.{ error: "element_not_in_source", generatedMatch, hint }— element exists only in a generated file (the next build would wipe any edits).{ error: "element_not_found", hint }— element isn't in any project file; likely runtime-injected (JS component, data-driven render).
All three carry fallback: "agent-driven". Follow Handle fallback below.
3. Load the action's reference
If event.action is impeccable (the default freeform action), use SKILL.md's shared laws plus the loaded register reference (brand.md or product.md). Do not load a sub-command reference. Freeform is not a pass to skip parameters: you still follow the composition budget and the freeform bias in §7 Parameters below. Sub-command files list MUST-have signature knobs; freeform has no such file, so sizing knobs from surface weight and primary axes is entirely on you.
Any other event.action (bolder, quieter, distill, polish, typeset, colorize, layout, adapt, animate, delight, overdrive): Read reference/<action>.md before planning. Each sub-command encodes a specific discipline; skipping its reference produces generic output. Those files may require specific params; layer them on top of the §7 budget, not instead of it.
4. Plan three genuinely distinct directions
Before writing a single line of code, name each variant.
For freeform (action is impeccable, or the user supplied a free prompt): each variant must anchor to a different archetype — a real-world design analogue specific enough to be recognizable at a glance. Not "modern landing page." Not "minimal product hero." Examples:
- Broadsheet masthead with rule-divided columns (think NYT print edition)
- Klim Type Foundry specimen page (dense, technical, catalog-driven)
- Japanese print-poster minimalism with a single oversize glyph
- Bloomberg Terminal status bar
- Condé Nast Traveler feature layout
Then commit each variant to a different primary axis of difference:
- Hierarchy — which element commands the eye?
- Layout topology — stacked / side-by-side / grid / asymmetric / overlay
- Typographic system — pairing, scale ratio, case/weight strategy
- Color strategy — Restrained / Committed / Full palette / Drenched
- Density — minimal / comfortable / dense
- Structural decomposition — merge, split, progressive disclosure
Three variants → three DIFFERENT primary axes, not three riffs on color.
When the primary axis is color or theme, forbid the trio from sharing theme + dominant hue. Two dark-plus-one-dark is not distinct. Aim for one dark-neutral-accent, one light-drenched, one full-palette-saturated — three color worlds, not three shades of the same.
The squint test (before writing code). Write the three one-sentence descriptions side by side:
V1: Broadsheet masthead, ruled columns, 24px ink on cream. V2: Enormous italic title, catalog spec rows, heavy monospace data. V3: Card-framed poster with one oversize glyph, magenta veil.
If two of them rhyme ("both use big type" / "both are stacks of sections" / "both feature the CTA prominently"), rework the offender. Freeform variants failing the squint test is the primary failure mode of this flow — three-of-the-same with minor styling tweaks.
For action-specific invocations, each variant must vary along the dimension the action names:
bolder— amplify a different dimension per variant (scale / saturation / structural change). Not three "slightly bigger" variants.quieter— pull back a different dimension (color / ornament / spacing).distill— remove a different class of excess (visual noise / redundant content / nested structure).polish— target a different refinement axis (rhythm / hierarchy / micro-details like corner radii, focus states, optical kerning).typeset— different type pairing AND different scale ratio each. Not three riffs on one pairing.colorize— different hue family each (not shades of one hue). Vary chroma and contrast strategy.layout— different structural arrangement (stacked / side-by-side / grid / asymmetric). Not spacing tweaks.adapt— different target context per variant (mobile-first / tablet / desktop / print or low-data). Don't make three mobile layouts.animate— different motion vocabulary (cascade stagger / clip wipe / scale-and-focus / morph / parallax). Not three staggered fades.delight— different flavor of personality (unexpected micro-interaction / typographic surprise / illustrated accent / sonic-or-haptic moment / easter-egg interaction).overdrive— different convention broken (scale / structure / motion / input model / state transitions). Skipoverdrive.md's "propose and ask" step — live mode is non-interactive.
5. Apply the freeform prompt (if present)
event.freeformPrompt is the user's ceiling on direction — all variants must honor it — but still explore meaningfully different interpretations. "Make it feel like a newspaper front page" → variant 1 = broadsheet masthead + rule-divided columns, variant 2 = tabloid headline + single dominant image, variant 3 = minimalist editorial with oversized drop cap. Not three newspapers in the same voice.
6. Write all variants in a single edit
Complete HTML replacement of the original element for each variant, not a CSS-only patch. Consider the element's context (computed styles, parent structure, CSS variables from event.element).
Write CSS + all variants in ONE edit at the insertLine reported by wrap. Colocate scoped CSS as a <style> tag inside the variant wrapper — <style> works anywhere in modern browsers and this ensures CSS and HTML arrive atomically (no FOUC).
<!-- Variants: insert below this line -->
<style data-impeccable-css="SESSION_ID">
@scope ([data-impeccable-variant="1"]) { ... }
@scope ([data-impeccable-variant="2"]) { ... }
</style>
<div data-impeccable-variant="1">
<!-- variant 1: full element replacement (single top-level element) -->
</div>
<div data-impeccable-variant="2" style="display: none">
<!-- variant 2: full element replacement -->
</div>
<div data-impeccable-variant="3" style="display: none">
<!-- variant 3: full element replacement -->
</div>
Each variant div contains exactly one top-level element — the full replacement for the original. Use the same tag as the original (e.g. <section> if the user picked a <section>). Loose siblings (heading + paragraph + div as direct children of the variant div) break the outline tracking and the accept flow, which both assume one child.
The first variant has no display: none (visible by default). All others do. If variants use only inline styles and no scoped CSS, omit the <style> tag entirely. Use @scope for CSS isolation (Chrome 118+ / Firefox 128+ / Safari 17.4+).
One edit, all variants — the browser's MutationObserver picks everything up in one pass.
Author every :scope rule with a descendant combinator. The @scope boundary is the variant wrapper <div data-impeccable-variant="N">, not the element you're designing. A bare :scope { background: cream; } styles the wrapper, not the inner replacement, so the cream lands on a display: contents shell while the actual element keeps page defaults. Always step in: :scope > .card, :scope > section, :scope .hero-title, etc. The fake test agent's CSS in tests/live-e2e/agent.mjs is a faithful template — every rule starts :scope > ....
JSX / TSX target files. Wrap <style> content in a template literal so the CSS { / } aren't parsed as JSX expressions, and use className= / style={{…}} on every variant element. Keep data-impeccable-* attributes as-is — they're plain strings:
<style data-impeccable-css="SESSION_ID">{`
@scope ([data-impeccable-variant="1"]) { ... }
@scope ([data-impeccable-variant="2"]) { ... }
`}</style>
<div data-impeccable-variant="1">
{/* variant 1 */}
</div>
<div data-impeccable-variant="2" style={{ display: 'none' }}>
{/* variant 2 */}
</div>
The wrap script already gives you a single-rooted JSX wrapper — a <div data-impeccable-variants="…"> outer element with the marker comments tucked inside. Drop the variants block above into the "Variants: insert below this line" comment and the source stays valid TSX.
7. Parameters (composition-sized, 0–4 per variant)
Each variant can expose coarse knobs alongside the full HTML/CSS replacement. The browser docks a small panel to the right of the outline with one control per parameter. The user drags/clicks and sees instant feedback: there is zero regeneration cost because the knob toggles a CSS variable or data attribute that the variant's scoped CSS is already authored against.
What “optional” does not mean. Parameters are not nice-to-have decoration on large work. The word meant “omit controls that are redundant or cosmetic,” not “default to zero because three variants were enough work.”
When to add. As soon as the variant’s scoped CSS has a meaningful continuous or stepped axis: density, color amount, type scale, motion intensity, column weight, and so on. If you can imagine the user muttering “a bit tighter” or “a touch more accent” without wanting a full regeneration, wire that axis. Not micro-margins or one-off nudges; those are not parameters.
Freeform (action is impeccable) bias. You did not load reference/bolder.md (etc.), so you must choose 1–2 signature-like axes yourself. Prefer knobs that sit on the same dimensions as your three directions (e.g. all three riffs on editorial density → expose density or a steps “air / snug / packed”; two directions differ mostly in chroma → add color-amount). A hero, section, or other large surface that ships with 0 params needs a one-line reason in your head (e.g. “truly a fixed-point A/B/C comparison, no shared dial”), not a default habit.
Budget scales with the element's visual weight, not token budget. Knobs need real estate to read as tunable; three sliders on a single control are noise.
- Leaf / tiny — a single button, icon, input, bare heading, solitary paragraph: 0 params.
- Small composition — labeled input, simple card, short callout (≤ ~5 visual children): 0–1 params when one dominant axis is obvious; otherwise 0.
- Medium composition — section component, nav cluster, dense card, short feature block (6–15 visual children): target 2; 1 is acceptable if the block is simple; 0 only when variants are truly fixed points.
- Large composition — hero section, full page region, spread layout, strong internal structure (16+ visual children or multiple sub-sections): target 2–3; up to 4 when several independent axes (e.g. structure
steps+density+ one accent) are all authored in scoped CSS.
When in doubt, ask whether a dial exists before defaulting to zero. The user can always request more variants, but the point of live mode is instant tuning without another Go. Crowding the panel is bad; under-shipping knobs on a dense composition is the more common failure for freeform. Count by visual children, not DOM depth; a shallow-but-wide hero is still large.
Hard cap per variant — at most four parameters so the panel stays legible; rare fifth only if the reference explicitly allows it.
How to declare. Put a JSON manifest on the variant wrapper:
<div data-impeccable-variant="1" data-impeccable-params='[
{"id":"color-amount","kind":"range","min":0,"max":1,"step":0.05,"default":0.5,"label":"Color amount"},
{"id":"density","kind":"steps","default":"snug","label":"Density","options":[
{"value":"airy","label":"Airy"},
{"value":"snug","label":"Snug"},
{"value":"packed","label":"Packed"}
]},
{"id":"serif","kind":"toggle","default":false,"label":"Serif display"}
]'>
...variant content...
</div>
Three kinds:
range— smooth slider. Drives a CSS custom property--p-<id>on the variant wrapper. Author CSS withvar(--p-color-amount, 0.5). Fields:min,max,step,default(number),label.steps— segmented radio. Drives a data attributedata-p-<id>on the variant wrapper. Author CSS with:scope[data-p-density="airy"] .grid { ... }. Fields:options(array of{value, label}),default(string),label.toggle— on/off switch. Drives BOTH a CSS var (--p-<id>: 0|1) and a data attribute (present when on, absent when off). Use whichever is more convenient. Fields:default(boolean),label.
Signature params per action. For named sub-commands, read that action’s reference/<action>.md for one or two MUST params (e.g. layout → density). Those are non-negotiable when the design can express them. Freeform has no file-level MUST; the Freeform (impeccable) bias in this section is the stand-in. If the user’s action is both stylized and sub-command (e.g. colorize), the sub-command’s MUST list takes precedence for its axes; still respect the Hard cap and add no redundant duplicate knobs.
Reset on variant switch. User dials density on v1, flips to v2, v2 starts at v2's declared defaults. Known limitation; preservation across variants may land later.
On accept, the browser sends the user's current values in the accept event. live-accept.mjs writes them as a sibling comment:
<!-- impeccable-param-values SESSION_ID: {"color-amount":0.7,"density":"packed"} -->
The carbonize cleanup step (see below) reads that comment and bakes the chosen values into the final CSS. For steps/toggle attribute selectors: keep only the branch matching the chosen value, drop the others, collapse :scope[data-p-density="packed"] .grid to a semantic class rule. For range vars: either substitute the literal or keep the var with the chosen value as its new default.
8. Signal done
node .claude/skills/impeccable/scripts/live-poll.mjs --reply EVENT_ID done --file RELATIVE_PATH
RELATIVE_PATH is relative to project root (public/index.html, src/App.tsx, etc.) — the browser fetches source directly if the dev server lacks HMR.
Then run live-poll.mjs again immediately.
Aborting an in-flight session
If wrap or generation fails after the browser has flipped to GENERATING (e.g. wrap landed on the wrong source branch and you've already reverted it, or generation hit an unrecoverable error), tell the browser so its bar resets to PICKING:
node .claude/skills/impeccable/scripts/live-poll.mjs --reply EVENT_ID error "Short reason"
Don't run live-accept --discard for this — that's a pure file mutator, the browser doesn't see it, and the bar gets stuck on the GENERATING dots forever (the user has to refresh). --discard is only correct when the browser initiated the discard (user clicked ✕ during CYCLING) and the agent is just running source-side cleanup the browser already triggered.
Handle fallback
When wrap returns fallback: "agent-driven", the deterministic flow doesn't apply. Pick up here.
The goal is the same: give the user three variants to choose from AND persist the accepted one in a place the next build won't wipe. The difference is that you have to pick the right source file yourself.
Step 1: Identify where the element actually lives
Use the error payload:
element_not_in_sourcewithgeneratedMatch: "public/docs/foo.html"— the served HTML is generated. Find the generator (grep for writers of that path, e.g.scripts/build-sub-pages.js, an Astro/Next template) and locate the template or partial that emits this element.element_not_found— the element is runtime-injected. Look for the component that renders it (React/Vue/Svelte), the JS that assembles it, or the data source that feeds it.file_is_generatedwithfile: "..."— user pointed at a generated file explicitly. Same resolution aselement_not_in_source.
Read the candidate source until you're confident where a change to the element would belong. If the change is purely visual, that source might be a shared stylesheet, not the template.
Step 2: Show three variants in the DOM for preview
The browser bar is waiting for variants. Even without a wrapper in source, you still need to show something:
- Manually write the wrapper scaffold into the served file (the one the browser actually loaded). Use the same structure
live-wrap.mjsproduces —<!-- impeccable-variants-start ID --><div data-impeccable-variants="ID" data-impeccable-variant-count="3" style="display: contents">…</div><!-- end -->. - Insert your three variant divs inside it, same shape as the deterministic path.
- Signal done with
--reply EVENT_ID done --file <served file>. The browser's no-HMR fallback will fetch and inject.
This served-file edit is temporary — next regen wipes it, and that's fine. The real work happens on accept.
Step 3: On accept, write to true source
When the accept event arrives (_acceptResult.handled will usually be false here because accept also refuses to persist into generated files — see Handle accept for the carbonize branch), extract the accepted variant's content and write it into the source you identified in Step 1:
- Structural change → edit the template / component source.
- Visual-only change → add or update rules in the appropriate stylesheet; remove the inline
<style>scope. - Data-driven → update the data source or the render logic.
Then remove the temporary wrapper from the served file if it's still there.
Step 4: On discard, clean up the served file
Remove the wrapper you inserted in Step 2. Nothing else to do.
Handle accept
Event: {id, variantId, _acceptResult}. The poll script already ran live-accept.mjs to handle the file operation deterministically; the browser DOM is already updated.
_acceptResult.handled: trueandcarbonize: false— nothing to do. Poll again._acceptResult.handled: trueandcarbonize: true— post-accept cleanup is required before the next poll. See the "Required after accept (carbonize)" section below. Theevent._acceptResult.todofield and a stderr banner both list the steps explicitly; neither is decorative._acceptResult.handled: false, mode: "fallback"— the session lived in a generated file and the script refused to persist there. You've already written the accepted variant into true source during Handle fallback Step 3; just clean up the temporary wrapper in the served file if any, and poll again._acceptResult.handled: falsewithoutmode— manual cleanup: read file, find markers, edit.
Required after accept (carbonize)
When _acceptResult.carbonize === true, the accepted variant was stitched into source with helper markers and inline CSS so the browser can render it immediately with no visual gap. That stitch-in is temporary. The agent must rewrite it into permanent form before doing anything else. Skipping this leaves dead @scope rules for unaccepted variants, a pointless data-impeccable-variant wrapper, and impeccable-carbonize-start/end comment noise in the source file — all of which accumulate across sessions.
Do these five steps in the current thread, synchronously, before the next poll. Do not poll again until the file is clean.
- Locate the carbonize block in the source file (
_acceptResult.file). It's bracketed by<!-- impeccable-carbonize-start SESSION_ID -->and<!-- impeccable-carbonize-end SESSION_ID -->and contains a<style data-impeccable-css="SESSION_ID">element. If the variant declared parameters, an<!-- impeccable-param-values SESSION_ID: {...} -->comment sits alongside the style tag with the user's chosen values — read it first; it drives steps 3 and 4 below. - Move the CSS rules into the project's real stylesheet. Which stylesheet depends on the project (e.g.
public/css/workflow.cssfor this repo, or the component's co-located CSS file for a Vite/Next project — pick whichever already owns styling for the surrounding element). - Bake in parameter values while rewriting selectors. For
@scope ([data-impeccable-variant="N"])wrappers: retarget to real, semantic classes on the accepted HTML (.why-visual--v2 .v2-label { … }). For:scope[data-p-<id>="VALUE"]selectors: keep only the branch matching the chosen value from the param-values comment; drop the others (they're dead after accept). Forvar(--p-<id>, DEFAULT)in the CSS: either substitute the literal value, or if the param is still useful as a knob going forward, leave the var and update its initial declaration to the chosen value. - Unwrap the accepted content. Delete the
<div data-impeccable-variant="N" style="display: contents">that wraps it. Dropdata-impeccable-paramsand anydata-p-*attributes from it — those are live-mode plumbing, not source. - Delete the inline
<style>block, the<!-- impeccable-param-values -->comment if present, and both<!-- impeccable-carbonize-start/end -->markers. Also drop any@scoperules for variants other than the accepted one — those are dead code now.
Then poll again.
A background agent may be used for the rewrite, but the current thread is responsible for verifying the five steps are complete before issuing the next poll. In practice, inline is usually faster and less error-prone.
Handle discard
Event: {id, _acceptResult}. The poll script already restored the original and removed all variant markers. Nothing to do. Poll again.
Handle prefetch
Event: {pageUrl}. The browser fires this the first time the user selects an element on a given route, as a latency shortcut — it signals the user is likely about to Go on a page you haven't read yet.
Resolve pageUrl to the underlying file:
- Root
/→ thepageFilereturned bylive.mjs(usuallypublic/index.htmlor equivalent). - Sub-routes (e.g.
/docs,/docs/live) → the generated or source file for that route. Use your knowledge of the project layout (multi-page static sites often resolve/foo→public/foo/index.html; SPAs may map all routes to a single entry).
Read the file into context, then poll again. No --reply — this is speculative pre-work; Go will come later. If you can't confidently resolve the route to a file, skip and poll again.
Dedupe is the browser's job (one prefetch per unique pathname per session) — trust it. If the same file shows up twice from different routes mapping to the same file, the second Read is cached anyway.
Exit
The user can stop live mode by:
- Saying "stop live mode" / "exit live" in chat
- Closing the browser tab (SSE drops, poll returns
exitafter 8s) - The browser's exit button
When the poll returns exit, proceed to cleanup. If the poll is still running as a background task, kill it first.
Cleanup
node .claude/skills/impeccable/scripts/live-server.mjs stop
Stops the HTTP server and runs live-inject.mjs --remove to strip localhost:…/live.js from the HTML entry. To stop the server but keep the inject tag (for a quick restart), use stop --keep-inject. config.json persists for future sessions.
Then:
- Remove any leftover variant wrappers (search for
impeccable-variants-startmarkers). - Remove any leftover carbonize blocks (search for
impeccable-carbonize-startmarkers).
First-time setup (config missing or invalid)
If live.mjs outputs { ok: false, error: "config_missing" | "config_invalid", path }, write config.json at the reported path.
Schema:
{
"files": ["<path-or-glob>", "<path-or-glob>", ...],
"exclude": ["<optional-glob>", ...],
"insertBefore": "</body>",
"commentSyntax": "html",
"cspChecked": true
}
files is the inject target — the HTML files the browser actually loads, not necessarily source. Each entry is either a literal path ("public/index.html") or a glob pattern ("public/**/*.html"). Tracked or generated doesn't matter here; wrap has its own generated-file guard and routes accepts through the fallback flow.
exclude (optional) is a list of glob patterns matching files to skip, even if a files glob would have included them. Use for email templates, demo fixtures, or any HTML that isn't a live page.
cspChecked tracks whether the CSP detection step below has already run. Absent on first setup; set to true after CSP is checked (whether patched, declined, or not needed).
Hard-excluded paths (cannot be overridden). **/node_modules/** and **/.git/** are never matched regardless of what the user writes. These are vendor/metadata directories and injecting into them would silently instrument third-party code.
Glob syntax. ** matches any number of path segments (including zero), * matches any characters except /, ? matches a single character except /. Paths are always relative to the project root with forward slashes.
| Framework | files |
insertBefore |
commentSyntax |
|---|---|---|---|
| SPA with single shell (Vite / React / Plain HTML) | ["index.html"] |
</body> |
html |
| Next.js (App Router) | ["app/layout.tsx"] |
</body> |
jsx |
| Next.js (Pages) | ["pages/_document.tsx"] |
</body> |
jsx |
| Nuxt | ["app.vue"] |
</body> |
html |
| Svelte / SvelteKit | ["src/app.html"] |
</body> |
html |
| Astro | [" <root layout .astro>"] |
</body> |
html |
| Multi-page (separate HTML per route) | ["public/**/*.html"] — a glob covering the served directory |
</body> |
html |
Pick an anchor that exists in every file (</body> almost always works). Use insertAfter if the anchor should match after a specific line.
For multi-page sites, prefer a glob over a literal file list. New pages added later are picked up automatically on the next live-inject.mjs run; no config maintenance needed.
For multi-page sites whose pages are rebuilt by a generator (Astro, static-site generators, custom scripts like build-sub-pages.js), the inject survives only until the next regeneration. Re-run live.mjs after each build. Accept is unaffected — it writes to true source via the fallback flow.
Drift-heal warning
On every live.mjs boot, after inject, the project is scanned for HTML files under common page-source roots (public/, src/, app/, pages/). If any exist that aren't covered by the resolved files list, the output includes a configDrift field:
{
"ok": true,
"serverPort": 8400,
"pageFiles": [ "..." ],
"configDrift": {
"orphans": ["public/new-section/index.html", "public/docs/new-command.html"],
"orphanCount": 2,
"hint": "2 HTML file(s) exist but aren't in config.files. Consider adding them, or use a glob pattern like \"public/**/*.html\"."
}
}
When configDrift is present, surface it to the user once per session before entering the poll loop:
Noticed N HTML file(s) in the project that aren't in
config.files:
public/new-section/index.htmlpublic/docs/new-command.htmlAdd them, or switch
filesto a glob like["public/**/*.html"]and let it track new pages automatically?
Don't auto-update the config — let the user decide. configDrift is null when there's no drift.
CSP detection (first-time only)
If config.cspChecked === true, skip this entire section. You already asked this user once; the answer sticks.
Otherwise, run the detection helper:
node .claude/skills/impeccable/scripts/detect-csp.mjs
Output: { shape, signals } where shape is one of append-arrays, append-string, middleware, meta-tag, or null. The shape is named by patch mechanism, so one template covers many frameworks.
null— no CSP; skip to writingconfig.jsonwithcspChecked: true.append-arrays— CSP defined as structured directive arrays. Auto-patchable. See append-arrays below. Covers:- Monorepo helpers with
additionalScriptSrc/additionalConnectSrcoptions (Next.js + shared config package) - SvelteKit
kit.csp.directives - Nuxt
nuxt-securitymodule'scontentSecurityPolicy
- Monorepo helpers with
append-string— CSP written as a literal value string. Auto-patchable. See append-string below. Covers:- Inline
next.config.*headers()with a CSP literal - Nuxt
routeRules/nitro.routeRulesheaders
- Inline
middlewareormeta-tag— rarer. Detected but not auto-patched in v1. Show the user the detected files and ask them to addhttp://localhost:8400toscript-srcandconnect-srcmanually, then markcspChecked: trueand proceed.
Consent prompt template
Use this phrasing so the experience is consistent across agents:
CSP patch needed. I detected a Content Security Policy in your project that blocks
http://localhost:8400— the live picker won't load without an allowance. Here's the change I'd make:[file: <patchTarget>] [exact diff, 2–5 lines]It's guarded by
NODE_ENV === "development"so the extra entry only appears in dev and never reaches production. You can remove it any time by reverting this file. Apply? [y/n]
On "no": skip the patch, mention live won't work until the user adds the allowance manually, still write cspChecked: true (the question's been asked).
On "yes": apply the Shape-specific patch below, then write cspChecked: true.
append-arrays
CSP expressed as structured directive arrays. Patch mechanism: declare a dev-only array, spread it into the script-src and connect-src arrays.
Declare near the top of the file that holds the CSP arrays:
// Dev-only allowance so impeccable live mode can load. Guarded by NODE_ENV.
const __impeccableLiveDev =
process.env.NODE_ENV === "development" ? ["http://localhost:8400"] : [];
Append ...__impeccableLiveDev to the script-src and connect-src directive arrays. Per-framework specifics:
- Next.js + monorepo helper — edit the app's
next.config.*(not the shared helper), appending toadditionalScriptSrcandadditionalConnectSrcpassed intocreateBaseNextConfig(or equivalent). Keeps the shared package clean. - SvelteKit — edit
svelte.config.js, appending tokit.csp.directives['script-src']andkit.csp.directives['connect-src']. - Nuxt + nuxt-security — edit
nuxt.config.*, appending tosecurity.headers.contentSecurityPolicy['script-src']and['connect-src'].
Reference outputs:
tests/framework-fixtures/nextjs-turborepo/expected-after-patch.ts(Next.js)tests/framework-fixtures/sveltekit-csp/expected-after-patch.js(SvelteKit)
Idempotency: if __impeccableLiveDev already exists in the file, the patch is already applied; skip asking and just mark cspChecked: true.
append-string
CSP built as a literal value string. Two-point patch: declare a dev-only string near the top, interpolate it into the CSP at the script-src and connect-src directives.
// Dev-only allowance so impeccable live mode can load.
const __impeccableLiveDev =
process.env.NODE_ENV === "development" ? " http://localhost:8400" : "";
Then in the CSP value string:
script-src 'self' 'unsafe-inline'→`script-src 'self' 'unsafe-inline'${__impeccableLiveDev}`connect-src 'self'→`connect-src 'self'${__impeccableLiveDev}`
(Leading space on the dev string so it concatenates cleanly into the existing value. Convert the literal CSP directives into template strings as part of the edit if they aren't already.)
Per-framework specifics:
- Next.js inline
headers()— editnext.config.*, splicing the variable into the CSP value. - Nuxt
routeRules— editnuxt.config.*, splicing into the CSP inrouteRules['/**'].headers['Content-Security-Policy'].
Reference outputs:
tests/framework-fixtures/nextjs-inline-csp/expected-after-patch.js(Next.js)tests/framework-fixtures/nuxt-csp/expected-after-patch.ts(Nuxt)
Troubleshooting
If a user says "no" to the CSP patch at setup time and later complains that live doesn't work: their dev CSP blocks http://localhost:8400. Fix: delete cspChecked from config.json and re-run live.mjs — setup will ask again.
Then re-run live.mjs.