extract
Original:🇺🇸 English
Translated
Crawl an existing website (capped, multi-page) and seed stardust/current/ with PRODUCT.md, DESIGN.md, DESIGN.json, a per-page inventory, and the consolidated brand surface.
9installs
Sourceadobe/skills
Added on
NPX Install
npx skill4agent add adobe/skills extractTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →stardust:extract
Crawl an existing website, parse each page, extract the brand surface,
and produce a stardust-formatted snapshot of the current state under
. The output describes what the site is; later
sub-commands consume it to decide what it should be.
stardust/current/This skill is descriptive: it does not invent direction, it does not
critique, and it does not modify the live site. It writes only under
and updates .
stardust/current/stardust/state.jsonInputs
- — required. The origin to crawl. Examples:
<url>,https://example.com. A path narrows the same-origin crawl to that subtree.https://example.com/shop - — optional. Override the default 5-page cap. The cap is intentionally small — a 5-page sample (home + four IA pillars/templates) is enough for cross-page brand aggregation, system-component detection, and the brand-review HTML to do useful work. Lift the cap with
--cap <N>(the previous default) or higher when a deeper crawl is genuinely needed.--cap 25 - — optional. Lift the cap entirely; extract every discovered page after junk filtering. Equivalent to
--all. Use when the user spontaneously asks for a full crawl.--cap 0 - — optional. Restrict the crawl to specific paths (slugs derived per
--pages <slug,slug,...>). Bypasses the cap.reference/ia-extraction.md - — optional. Re-extract one page that already exists in
--refresh <slug>.state.json - — optional. Equivalent to
--single. Useful for testing.--cap 1 - — optional. Wait strategy per page. Default
--wait <fast|medium|spec|auto>. Seemedium§ Wait modes.reference/playwright-recipe.md - — optional. Disable the default junk-page filter in discovery (see
--no-junk-filter§ Filtering).reference/ia-extraction.md - — optional. Skip the pre-flight consent / cookie banner dismissal (see
--no-consent-dismiss§ Pre-flight: consent dismissal). Use when the redesign scope explicitly includes the consent surface, or when the dismissal's side-effects (script activation that wouldn't otherwise run) need to be avoided. Default behaviour is to dismiss; the contract preserves screenshots, voice aggregation, and per-section style from being polluted by the banner.reference/playwright-recipe.md - — optional. Run in migrate-prep mode: lift the cap, type each page, detect module candidates, capture typed content slots, emit the prep summary. See § Prep mode below. Typically invoked via the
--preporchestrator skill rather than directly.prepare-migration
Setup
Run the master skill's setup procedure first
( § Setup): impeccable dep check, context
loader, state read.
skills/stardust/SKILL.mdAdditional checks for this sub-command:
- Playwright availability. The extraction step needs a real
browser. Detect Playwright in this order: a Playwright MCP server,
then . If neither is available, stop and tell the user how to install Playwright.
npx playwright - Origin collision. If already records
stardust/state.jsonand the newsite.originUrlis a different origin, stop and ask before clobbering. Stardust does not silently mix two sites in one project.<url> - Browser context. Open a fresh for the run. Run the consent dismissal pre-flight per
BrowserContext§ Pre-flight: consent dismissal unlessreference/playwright-recipe.mdis set. Cookies persist across the per-page loop within the same context, so one dismissal covers the whole crawl. Record the resolved method in--no-consent-dismiss._crawl-log.json#consent.method - Bot-management probe. When the first navigation in the run
returns or
ERR_HTTP2_PROTOCOL_ERROR, or hangs through the entire hard-cap on what should be a fast origin, do not retry headless. Switch toERR_QUIC_PROTOCOL_ERRORperheadless: false, channel: 'chrome'§ Bot-management fallback and record the switch inreference/playwright-recipe.mdso re-runs start in headed mode without rediscovering the issue._crawl-log.json#discovery.fetchTechnique
Procedure
Phase 1 — Discovery
Discover the page inventory before crawling. Procedure in
. In summary:
reference/ia-extraction.md-
Fetch, then
<origin>/sitemap.xml, then check<origin>/sitemap_index.xmlforrobots.txtdirectives.Sitemap: -
If no sitemap is reachable, run a same-origin BFS crawl from, depth-limited to 3, link-extracting from rendered HTML.
<url> -
Filter the discovered URL list: same origin only, exclude,
mailto:, anchor-only links, query-only variations, common asset paths (tel:,.css,.js, image extensions)..pdf -
De-duplicate trailing-slash variations.
-
Apply the junk-page filter (§ Junk-page filter) unless
reference/ia-extraction.mdis set. Surface the filtered list to the user as overridable.--no-junk-filter -
Apply the cap (default 5, or, or
--capfor no cap) and proceed silently. Print an informational summary of what was kept and what was cut — but do not gate on user confirmation. The default cap is small enough that the common case is "extract 5 pages and move on"; pausing for a yes/no reply on every run is friction without value. Users who want different scope set it spontaneously at command time:--all$stardust extract https://example.com # default 5 pages $stardust extract https://example.com --cap 25 # bump to 25 $stardust extract https://example.com --all # lift the cap $stardust extract https://example.com --pages home,about,pricing $stardust extract https://example.com --single # just the entry URLThe agent reads spontaneous scope intent from the user's prompt (e.g. "extract all pages", "look at just the home and pricing", "do a full crawl") and applies the equivalent flag. No re-confirmation needed once intent is clear.Informational output (not a prompt — proceed immediately):Discovered 38 pages on https://example.com (sitemap.xml). Filtered as likely junk (5): /test/, /sample-page/, /holiday1/, ... Selecting 5 highest-priority pages: - / (home) - /about - /pricing - /products - /contact Cut (28 pages, --all to lift): /blog/post-1, /blog/post-2, ... Extracting...Selection heuristic: page-type checklist first, then score-based ranking (home + IA-pillar keywords + sitemap priority − archive / version markers). See§ Page selection and § Priority for the cap. The English-only keyword list is a known limitation for localized sites.reference/ia-extraction.md -
Write the discovered list to(created if absent) with
stardust/current/_crawl-log.jsonand the full discovery reasoning, including_provenanceandfilteredAsJunk[]. This is an audit trail, not a state file.userChoice
Phase 2 — Per-page extraction
For each page in the cap-respecting list, render with Playwright
following . The recipe is mandatory —
in particular, do not skip the wait, scroll, or capture-list steps:
reference/playwright-recipe.md- Viewport 1440 × 900 @ 2× DPR
- Wait per the configured wait mode (default ; see § Wait modes in
medium)reference/playwright-recipe.md - Disable animations via
prefers-reduced-motion: reduce - After the wait resolves, scroll to bottom in 4 viewport-height steps with 300 ms pauses, then return to top — this is required to trigger lazy-load and IntersectionObserver-driven content
- Record and
waitMsin the per-pagewaitMode_provenance
Capture per page (full schema in ):
reference/current-state-schema.md- Page metadata (title, meta description, OG tags, theme-color)
- Semantic structure: heading outline, landmark roles, sections
- Content: visible text per section (full innerText, no
truncation per § Capture list 7), structured paragraphs (
reference/playwright-recipe.md), lists, FAQ Q/A pairs, and review/testimonial quotes per § Capture list 7-bis. Without these structured fields, every body region under a heading falls back to placeholder signature at migrate time.body[] - CTA labels and href targets, link inventory (internal vs external)
- Per-section computed style summary: dominant colors, font families in use, spacing rhythm, border-radius, shadows
- Media inventory: img/srcset with original URLs and intrinsic
dimensions, inline SVG count, video/iframe presence,
(including pseudo-element
cssBackgrounds[]/::beforewalks per § Capture list 11) so::afterheroes and motifs do not silently disappear from extract.background-image - Font files captured via network-intercept (per § Capture list
16): every /
woff2/woff/ttfresponse saved underotfand recorded inassets/fonts/with licensing flag._brand-extraction.json#type.files[] - Icon-font detection (per § Capture list 17): when the page
uses with non-default
[class^="icon-"]font-family + codepoint, capture the family, save the file, and record the::beforetable iniconClass → codepoint._brand-extraction.json#iconFont - Interactive elements: forms (with field types), buttons, modals detected by ARIA roles
Save to with as the
first key. Save referenced media to
preserving basename plus a short content hash.
stardust/current/pages/<slug>.json_provenancestardust/current/assets/media/Live-render evidence (synthesis is forbidden). Refuse to mark
a page in unless its
contains , an ISO-8601 , a
positive integer , a from the recipe, and a
final in the 2xx/3xx range. These five fields are
the contract enforced by
§ Live-render evidence and read back by every downstream phase
via per
§ Provenance
validation. Synthesizing a page record from
plus URL patterns plus captured photos
— the 2026-04-30 lovesac shortcut — is the failure mode this
guard exists to prevent. When the agent (or a delegated sub-
agent) cannot satisfy the contract for a page, treat the page
as a Phase 2 failure: record under
with and continue.
extractedstate.json_provenancerenderedBy: "playwright"fetchedAtwaitMswaitModehttpStatusreference/current-state-schema.mdvalidateProvenance()skills/stardust/reference/state-machine.md_brand-extraction.json_crawl-log.json#crawl.failures[]errorClass: "ProvenanceMissing"Mark the page in immediately after each
successful page write. If a page fails, record the error in
and continue — extraction is best-effort per page.
extractedstate.json_crawl-log.jsonPhase 3 — Brand-surface extraction
Run once, after Phase 2 has finished, so cross-page aggregation
has data to work with. Produces
per . Some fields are home-only (logo,
voice samples, register heuristic); the visual tokens that drive
DESIGN.md (palette, radius, shadow, type) are aggregated across all
extracted pages to avoid the home-page bias documented in
§ Aggregation scope. Captures:
stardust/current/_brand-extraction.jsonreference/brand-surface.mdbrand-surface.md- Logo by the v1 priority chain: inline SVG → with logo-ish class/id →
<img>→apple-touch-icon→ favicon → synthesized placeholder. Save toog:image.stardust/current/assets/logo.<ext> - Palette — aggregate computed colors across all extracted pages (background, text, accents, borders, hovers). Frequency-sort, cluster near-duplicates, emit a role-named list (background, surface, text, primary, secondary, accent).
- Type — font families in use with their weights, sizes, and
computed line-heights. Identify the heading family vs body family.
Run the modular-scale audit (§ Modular-scale audit) and emit
brand-surface.md.scaleAudit.kind = "modular" | "ad-hoc" - Motifs — signature border-radius (cross-page mode of non-zero
values, weighted by element count), shadow stack (top 3 distinct,
cross-page), gradient inventory, common patterns (chip, badge,
card, hero-with-image). When the home-only mode disagrees with the
cross-page mode, surface the divergence in .
_provenance.notes - Voice samples — first paragraph of body copy, the hero headline,
3 representative CTA labels, a representative link list. Used by
later but extracted now so the network round-trip is over.
direct - Hero image — elevate the home page's primary visual
asset to (per
voice.heroImage§ heroImage resolution). Without this elevation, downstream prototype reasons over a 16-image list and frequently picks thereference/brand-surface.mdinstead of the live hero.og:image - Icon font — when detected per § Capture list 17, populate
reference/playwright-recipe.mdwith family, file path, and the_brand-extraction.json#iconFonttable so prototypes can render the brand's actual icons.iconClass → codepoint - System components — cross-page repeated DOM blocks (site
header, site footer, cross-promo strips, persistent CTAs,
breadcrumbs). Detected by heading-sequence + CTA-label fingerprint
per § System components. Required — these are usually the most load-bearing surfaces and must not silently disappear from the redesign target.
reference/brand-surface.md
Do not invent values. Every captured value cites a source selector or
URL in for traceability.
_brand-extraction.jsonPhase 4 — Seed stardust/current/PRODUCT.md
and DESIGN.md
stardust/current/PRODUCT.mdDESIGN.mdThe current-state PRODUCT.md and DESIGN.md are descriptive, not
authored — there is no interview to run because the user is not
defining intent here, the agent is describing the existing site. Write
them directly using impeccable's format specs:
- For PRODUCT.md, follow the section structure in impeccable's
. Populate
reference/teach.mdfrom the brand surface (sites that read as marketing/landing →Register; tools/dashboards →brand; ambiguous →productwith a note). Populatebrand,Users,Product Purpose,Brand Personality, andAnti-referencesfrom the captured copy and the brand surface. Where the agent must infer, mark the section withDesign Principlesand a one-line basis sentence._provenance: inferred - For DESIGN.md and DESIGN.json, follow the format spec in
impeccable's . Populate frontmatter (
reference/document.md,colors,typography,rounded,spacing) from the captured tokens. Thecomponentsblock of DESIGN.json carries v1'sextensions,componentStyle, andmotifsarrays so nothing is lost.voice
Stardust does not invoke or for the current-state files: those commands write to project
root (the target) and run an interview. Stardust authors the
descriptive snapshot directly. The format spec from impeccable is the
contract; the runtime command is not.
$impeccable teach$impeccable documentThe target-state PRODUCT.md and DESIGN.md at the project root are
written by in Phase 2 of the pipeline, not here.
$stardust directPhase 5 — Render stardust/current/brand-review.html
stardust/current/brand-review.htmlAfter Phase 4 writes the descriptive PRODUCT.md and DESIGN.md, emit
the current-state brand review per
.
reference/brand-review-template.mdThe brand-review HTML is the first surface a human can eyeball to
verify the extraction before committing to a redesign direction.
Misreads in the JSON (a wrong dominant radius, a missing system
component, a single-page palette bias) are obvious to the eye in five
seconds and invisible in JSON until someone notices. Putting the
review at the end of catches misreads while they are still
cheap to fix — re-extract is fast; re-direct + re-prototype is not.
extractThe template is mandatory. In particular:
- Run the Tensions detectors listed in
§ Detectors. Each rule is mechanical; emit a tension card whenever the trigger condition matches. The review may ship with zero tensions if the data is too thin to evaluate, but the detectors must always be run.
reference/brand-review-template.md - Render in the brand's own captured colors and fonts, not a stardust shell.
- Embed all CSS; do not load external JavaScript or fonts unless the live site already does.
- Cite the source artifact for every section (e.g.
under Typography).
_brand-extraction.json § type
If the data for a section is missing, omit the section — do not
fabricate placeholders. The coverage callout at the top reflects what
is missing.
Phase 6 — Update state and report
After all Phase 2-5 writes succeed:
-
Update(schema in
stardust/state.json):skills/stardust/reference/state-machine.md- ,
site.originUrl,site.extractedAt,site.pageCap,site.totalDiscoveredsite.crawled - — one entry per crawled page with
pages[], filledstatus: "extracted", emptycurrentStatePathandprototypePathmigratedPath
-
Print a one-screen summary:
Extracted https://example.com (5/38 pages, sitemap.xml) stardust/current/ PRODUCT.md (register: brand, inferred from landing) DESIGN.md (5 colors, 2 type families, 3 motifs) brand-review.html (4 tensions surfaced) pages/ (5 files) assets/logo.svg (extracted from inline SVG) _brand-extraction.json _crawl-log.json Per-page evidence: slug live waitMode waitMs status / yes medium 2380 200 /about yes medium 2110 200 /pricing yes medium 1940 200 /products yes medium 2640 200 /contact yes domcontentloaded(fb) 8000 200 Wait summary: 4 resolved at medium (avg 2.4s), 1 fallback (timed out at 8s) → /contact may be under-captured; consider --refresh Open stardust/current/brand-review.html to verify the extraction before running $stardust direct. Coverage note: extracted 5 of 38 discovered pages. The brand surface and brand-review use cross-page aggregation, so 5 pages covering distinct templates is usually sufficient. To extract more, re-run with --cap <N> (e.g. --cap 25) or list specific slugs with --pages. Next: $stardust direct (resolve a redesign direction)The per-page evidence table is mandatory. Thecolumn islivewhenyesAND_provenance.renderedBy === "playwright", elsewaitMs > 0. Anorow means the page record was not produced by a live Playwright render — this should never happen given the write-time guard, but the visible column is the defense-in-depth signal that catches the failure mode when it does (the 2026-04-30 lovesac synthesis bug went four phases deep before being caught because no report column surfaced the missing provenance). A maintainer scanning the summary should seenoon every row.yesCompute the wait summary by grouping each page'sand averaging_provenance.waitMode. List slugs whosewaitMsends inwaitMode(rendered as(fallback)in the table for width) as candidates for(fb).--refresh
Outputs
| Path | Purpose |
|---|---|
| Descriptive strategy of the existing site (impeccable format) |
| Descriptive visual system (Stitch format) |
| Sidecar with extensions for motifs, voice, components |
| Self-contained visual review of the extraction (first eyeball-able artifact) |
| Per-page parsed structure + content |
| Extracted logo |
| Extracted media referenced by pages |
| Per-page viewport screenshots (used by brand-review) |
| Consolidated brand surface (palette, type, motifs, voice, system components) |
| Discovery + crawl audit trail |
| Updated with site + per-page status |
Concurrency
Per : stardust does not lock. Two concurrent extracts
on the same project are last-write-wins. Document this in the user
report; do not engineer around it.
state-machine.mdFailure modes
- Network failure mid-crawl. Continue, record in , end with a partial state. State.json reflects only successfully extracted pages. User can re-run; already-extracted pages are skipped unless
_crawl-log.json.--refresh <slug> - HTTP 4xx/5xx, non-HTML content, soft-404s. Validated explicitly
per § Response validation. Each produces a distinct error class (
reference/playwright-recipe.md,HTTPError,ContentTypeError) recorded inEmptyPageError. Failed pages do not appear in_crawl-log.json#crawl.failures[]asstate.json— they appear only in the failure log. Without this validation a 5xx page silently lands as an empty success and propagates wrong data toextractedanddirect.prototype - Login wall. Do not attempt to authenticate. If the home page redirects to a login screen, capture that one page, mark the rest as unreachable, and ask the user how to proceed (provide cookies via Playwright config, change the entry URL, or scope to public pages).
- Bot-management block (Akamai / Cloudflare / F5 / Imperva).
When the first navigation returns ,
ERR_HTTP2_PROTOCOL_ERROR, or hangs through the hard-cap on a TLS/H2 fingerprint check, the issue is JA3/H2 fingerprinting on bundled-chromium-default headless mode — not auth, not network. Switch toERR_QUIC_PROTOCOL_ERRORperheadless: false, channel: 'chrome'§ Bot-management fallback. Do not retry headless: it will fail identically. The headed fallback works against most enterprise / commerce origins;reference/playwright-recipe.md+ stealth plugin is a non-standard escape hatch for the residual cases. The headed window pops visibly, which is acceptable for interactive runs and unacceptable for unattended pipelines — surface this to the user when first triggered.playwright-extra - JavaScript-only content. Playwright already handles this. If
the configured wait condition never fires within the mode's hard
cap (§ Wait modes), fall back to
reference/playwright-recipe.mdand capture what is rendered. Record the fallback in the per-pagedomcontentloadedand surface in the wait-summary line of the final report._provenance.waitMode - Synthesis attempt (forbidden). When the agent (or a delegated
sub-agent) cannot run a real Playwright render for a page —
whether due to time pressure, token budget, or a tool/network
failure — the only correct outcome is to record the page as a
Phase 2 failure (in
errorClass: "ProvenanceMissing") and continue. Synthesizing a page record from_crawl-log.json#crawl.failures[]plus URL patterns plus captured photos at "semantically matching" template positions is forbidden. This was the 2026-04-30 lovesac.com failure — 20 of 25 pages synthesized this way and the cascade ran four phases on the synthesized data before the gap was caught by a meta-question. The synthesis shortcut produces output indistinguishable from a successful run and propagates fabricated content through every downstream phase._brand-extraction.json
Prep mode (--prep)
When invoked with , extract runs an extended pass that
prepares the inventory for migration. Discovery-mode runs (without
) are unchanged: small cap, no typing, no module detection,
presales-friendly. is the gesture that says "the user is
committing to migrate; build the data structure migrate consumes."
--prep--prep--prep--prep1. Lift the cap
--prep--allreference/ia-extraction.mdSub-agent prompt requirements (when delegating)
When is heavy enough that the agent delegates extraction
to a sub-agent (a presales-shaped pattern when the inventory is
large), the sub-agent prompt must:
--prep- Forbid synthesis by name. The literal sentence
*"do not synthesize a page record from
_brand-extraction.json- URL patterns + captured photos; every page must be a live Playwright render"* must appear in the prompt. The earlier wording "must actually invoke Playwright per page" was satisfiable in spirit by synthesis-with-photo-reuse and produced the lovesac failure. Naming the shortcut explicitly closes that loophole.
- Require a per-page evidence table in the return. Columns:
. The parent agent reads this table on completion and aborts if any row is missing or shows
slug | waitMode | waitMs | fetchedAt | httpStatus.waitMs: 0 - Require the wait-summary line in the return, formatted identically to Phase 6's wait summary, so the parent can surface it in the user-facing report without reformatting.
These three are mandatory; missing any of them in the sub-agent
prompt is itself a recipe violation. The cascade-level guard in
validates the resulting per-page JSONs via
regardless — but a well-formed sub-agent
return makes the failure cheaper to diagnose.
prepare-migrationvalidateProvenance()2. Page typing
For each extracted page, infer the field from URL pattern
and content shape (LLM judgment). Catalog from
§ Page types:
.
typeskills/stardust/reference/state-machine.mdlanding | article | listing | program | form | static | uniqueWrite the inferred type to . The user
confirms or refines during . Discovery-mode runs
leave as .
state.json.pages[].typedirect --preptypenull3. Module candidate detection
After Phase 3 (brand-surface extraction), scan extracted pages for
recurring structural patterns. A pattern that appears in N+
pages with similar shape (same sequence of elements, same
/ , similar text shape) is surfaced
as a module candidate.
data-sectiondata-purposeSignal-source priority
Detection consumes per-page captured fields in this priority
order. Each higher signal is weighted more heavily in the
match-score; lower signals are tie-breakers and corroboration,
not primary evidence. The priority exists because higher-up
fields are explicitly extracted and structured (no parsing
ambiguity), while the bottom of the list (
substring search) is fragile against capture variations and was
the source of the 2026-04-29 sliccy.com under-detection (0
hits for , 1 of 2 hits for —
both modules genuinely present on every page, both invisible
because the substrings being searched lived past the truncation
boundary that has since been removed).
landmarks[].innerTextpre-footer-shellinstall-tile- — cross-page repeats of the same heading text in the same level. Highest signal: structured, explicit, captured in full regardless of body length.
pages/<slug>.json#headings[] - labels — cross-page repeats of the same CTA label appearing on similar surfaces.
pages/<slug>.json#ctas[] - URLs — same asset URL on multiple pages is a strong system-component signal (already specced as a system-component candidate in
pages/<slug>.json#media.cssBackgrounds[]§ Cross-page CSS-background reuse; module detection consumes the same signal at finer granularity).reference/brand-surface.md - actions — cross-page repeats of the same form
pages/<slug>.json#forms[]URL. Newsletter / contact / search forms are the typical hits.action - when present (per future
pages/<slug>.json#components.componentsByLandmarkextension): per-landmark counts of cards / grids / etc.current-state-schema.md - Substring search in — lowest signal. Use only as corroboration once a candidate has already passed the higher-signal checks; never as the primary detector.
landmarks[].innerText
A candidate that fires on signals 1 + 2 above the threshold is
high-confidence; a candidate that fires only on 6 should be
treated as speculative and surfaced as such for the user to
confirm in .
direct --prepCandidate output is a draft entry under
:
DESIGN.json.extensions.modules[]json
{
"id": "candidate-<short-hash>",
"slots": [
{ "name": "<inferred>", "type": "text|link|image|...", "required": false }
],
"instances": [
{ "slug": "home", "selector": "..." },
{ "slug": "donate", "selector": "..." }
],
"status": "candidate"
}The flag distinguishes draft entries from
confirmed modules. is where the user names them
and promotes (or prunes).
status: "candidate"direct --prep4. Typed content slots
Per-page JSON () gains a
section that identifies content slots per page-type:
current/pages/<slug>.jsonslots- pages:
article,headline,deck,byline,meta,lead-image,body,pullquotes[]related[] - pages:
listing,index-headline,filter-controlswith typed sub-slots per cardcard-grid - pages:
program,program-headline,summary,feature-gridcta-band - ,
landing,form— typed slots inferred per content shapestatic
Schema additions live in
§ Typed slots (extend that doc separately).
reference/current-state-schema.md5. Prep summary
Replace Phase 6's standard report with the prep summary format:
extract --prep complete
=======================
Inventory: 127 pages crawled (5 prior, 122 new)
Provenance: 127/127 live (every page has Playwright evidence)
Page types: landing 1 · article 84 · listing 6 · program 12 · form 3 · static 18 · unique 3
(LLM-inferred; refine in direct --prep)
Module candidates: 8
hotline-211 5 instances (home, get-help, donate, news, programs)
donate-band 12 instances (home, donate, news, all article footers)
story-card 7 instances (home, news, programs)
...
Typed slots: filled per page-type (see current/pages/<slug>.json § slots)
Next: $stardust direct --prep (confirm types, name modules)The line is mandatory in
prep-mode output. When the ratio is anything other than
the prep run has failed the synthesis guard;
list the affected slugs as a sub-bullet and treat the prep run
as incomplete (the cascade-level guard in
SKILL.md surfaces the same check between
phases).
Provenance: <live>/<total> live<total>/<total>prepare-migrationDefault mode (no ) is unchanged. The flag is intended for
the orchestrator, though direct invocation is
supported.
--prepprepare-migrationReferences
- — viewport, capture list, logo locator chain.
reference/playwright-recipe.md - — sitemap + BFS crawl + cap procedure.
reference/ia-extraction.md - — per-page JSON schema.
reference/current-state-schema.md - — consolidated brand-surface schema.
reference/brand-surface.md - — current-state brand-review HTML contract + Tensions detectors.
reference/brand-review-template.md - — state.json contract.
skills/stardust/reference/state-machine.md - — provenance shape.
skills/stardust/reference/artifact-map.md