Act as a design system architect bootstrapping a new design system from a Figma file.
Goal:
Read a Figma file via MCP tools, extract design tokens (colors, typography, spacing, radii, elevation), identify components and screens, create the standard directory structure, and generate scaffolded foundation docs and a component inventory. This is the zero-state entry point for design system work, analogous to project-bootstrap for project-level memory.
-
Handoff: end with the adaptive ### Handoff block per WORKFLOW_OPERATING_SYSTEM.md ## Global output contract (Mode A compact or Mode B full).
-
Persona prompt (pre-Step 1): Before extraction, ask the user for the persona set this product uses. Defaults to single-persona (no subfolders). Canonical multi-persona vocabulary per wos/design-system-conventions.md → ## Personas and screen organization: auth, shared, operative, controller, client, super-admin. Custom personas allowed; record the chosen set in OPEN_QUESTIONS.md.
-
Step 1: Extract variables. Call get_variable_defs on the Figma file to retrieve all design variables. Group by foundation area (color, typography, spacing, grid, radii, elevation, motion, iconography, effects).
-
Step 2: Extract metadata. Call get_metadata to understand the file structure (pages, top-level frames, component sets).
-
Step 3: Identify components. Call get_libraries or scan component sets from metadata. Classify each by atomic tier (atom, molecule, organism, layout) per wos/design-system-conventions.md.
-
Step 4: Create directory structure. Create the canonical WOS-UI layout (per wos/design-system-conventions.md → ## Repository structure (docs split)):
docs/research/
README.md (from a brief stub)
COMPONENT_GUIDELINES.md (copy from templates/COMPONENT_GUIDELINES.md)
ATOM_AUDIT.md (from templates/ATOM_AUDIT.md; empty table)
_templates/
COMPONENT.md (copy from templates/COMPONENT_SPEC.md)
JOURNEY.md (copy from templates/JOURNEY_SPEC.md)
FOUNDATION_SPEC.md (generic, copy from templates/)
foundations/ (copy templates/foundations/*.md including README.md)
_inventory/
README.md (stub per Step 4b)
figma_components.md (from templates/INVENTORY.md scaffold)
foundations/ (populated by Step 5; one file per area)
components/
atoms/README.md (stub per Step 4b)
molecules/README.md (stub per Step 4b)
organisms/README.md (stub per Step 4b)
layouts/README.md (stub per Step 4b)
patterns/README.md (stub per Step 4b; reusable UX patterns written by pattern-doc)
journeys/README.md (stub per Step 4b)
docs/app/
README.md
routes.md (copy from templates/ROUTES.md)
navigation.md (copy from templates/NAVIGATION.md)
SCREEN_MAP.md (copy from templates/SCREEN_MAP.md)
_template.md (copy from templates/SCREEN_SPEC.md)
screens/<persona>/README.md (stub per Step 4b; one per persona, flat if single-persona)
docs/OPEN_QUESTIONS.md (copy from templates/OPEN_QUESTIONS.md)
-
Step 4b: Stub sub-folder READMEs. Each created sub-folder MUST receive a minimal README on bootstrap so the structure is self-documenting before any spec is written. Without this step, sub-folder READMEs get authored slice-by-slice later, which fragments the work and produces inconsistent shapes across sub-folders. Each stub follows the same shape:
# <Folder title>
<One-sentence purpose, per `wos/design-system-conventions.md`>
## Inventory
| <appropriate columns> |
## Adding an entry
Run `<owning command>` <with the relevant args>.
Concrete stubs to generate:
components/atoms/README.md -- title "Atoms". Purpose: "Smallest indivisible UI elements; consume only tokens." Inventory columns: Component / Spec doc / Code dir / Story file. Owning command: component-spec with tier=atom.
components/molecules/README.md -- title "Molecules". Purpose: "Groups of 2+ atoms forming a distinct functional unit." Same inventory columns. Owning command: component-spec with tier=molecule.
components/organisms/README.md -- title "Organisms". Purpose: "Complex sections composed of molecules and atoms with their own layout logic." Same inventory columns. Owning command: component-spec with tier=organism.
components/layouts/README.md -- title "Layouts". Purpose: "Structural containers that define page-level arrangement." Same inventory columns. Owning command: component-spec with tier=layout.
journeys/README.md -- title "Journeys". Purpose: "Cross-screen user flows." Inventory columns: Journey / Spec doc / Personas / Status. Owning command: journey-map.
_inventory/README.md -- title "Figma Inventory". Purpose: "Snapshots of the upstream Figma component library." Inventory columns: Last refresh / Source / Component count / % traceable. Owning command: inventory-snapshot.
app/screens/<persona>/README.md -- one per persona declared in the Persona prompt. Title "Screens -- ". Purpose: "Screens scoped to the <persona> persona; see wos/design-system-conventions.md for vocabulary." Inventory columns: # / Screen / Route / Status / Figma. Owning command: screen-spec with persona=<persona>.
All stubs MUST link to wos/design-system-conventions.md for vocabulary and to the canonical templates under docs/research/_templates/ (where applicable). Do not pad the stub beyond this minimum; the spec content lives in per-component / per-screen files, not in the sub-folder README.
-
Step 5: Generate foundation scaffolds -- per area. For each foundation area observed in Figma, create docs/research/foundations/<area>.md from the matching templates/foundations/<area>.md sub-template (color, typography, spacing, grid, radii, elevation, motion, iconography, effects, states). Pre-fill extracted tokens in the Tokens table. Mark confirmed (observed in Figma) or (proposed) (inferred). If an area has no Figma variables, omit the file (do NOT stub) and note the omission in foundations/README.md. Always create states.md even when Figma has no variables for it -- it is cross-component vocabulary.
-
Step 6: Populate Figma components inventory. Fill docs/research/_inventory/figma_components.md (already scaffolded in Step 4) with each identified component: Figma name, inferred tier, node ID, spec/code/story columns left blank for now. Counts and % traceable calculated at 0%.
-
Step 7: Populate SCREEN_MAP.md. For each top-level frame that appears to be a screen (not a component definition), add a row to docs/app/SCREEN_MAP.md with: route (proposed if not yet decided), persona (inferred or ?), screen name, status=pending, Figma node ID.
-
Step 8: Bootstrap OPEN_QUESTIONS.md. Pre-populate with extraction-time ambiguities (e.g., BRAND-01: dark mode palette not observed in Figma; light mode only extracted). Use the prefix conventions from wos/design-system-conventions.md → ## Open questions tracking convention.
-
Step 9: Code mirror scaffold (optional, only if monorepo paths exist). If packages/design-system/src/ and apps/storybook/ exist in the workspace, create the tier subfolders to mirror docs:
packages/design-system/src/{atoms,molecules,organisms,layouts}/ (empty; per-component dirs created by component-spec)
apps/storybook/stories/{atoms,molecules,organisms,layouts}/ (empty)
Skip silently if these paths do not exist (do NOT scaffold monorepo here; that is a separate task).
-
Step 10: Verify traceability split. Confirm docs/research/ and docs/app/ are both populated and orthogonal per wos/design-system-conventions.md. Report the count of files created per tree in the output summary.
-
Token naming must follow wos/design-system-conventions.md (semantic-first, not numeric).
-
Mark anything derived but not directly observed as (proposed) in the docs.
-
Do not invent components or tokens not present in the Figma file.
-
Do not centralize design-system templates outside docs/research/_templates/. The repo-root templates/ keeps the meta-templates that this command copies in.
-
When this applies. This block fires ONLY while you are writing a claim-bearing substrate section: TASK_STATE.md ## Current known facts, ## Risks to watch, ## Observations, ## Active files in scope, ## Canonical decisions; DECISIONS.md ## Locked decisions; IMPLEMENTATION_PLAN.md ## Current gaps, ## Risks and mitigations; IMPACT_ANALYSIS.md; EXTERNAL_RESEARCH.md; REFERENCES.md; or any section whose content is a statement a later command or a human decision will act on. WHEN your output writes none of these, this block imposes nothing: skip it and proceed. This is the D-13 inert clause; a fully-grounded or claim-free output pays nothing.
-
The unit is the load-bearing claim. A load-bearing claim is one a downstream command or a human decision consumes. A passing aside is not load-bearing; a statement someone will act on is. Apply the rest of this block per load-bearing claim, not per sentence.
-
Ground it or abstain. Before you assert a load-bearing claim, trace it to the enumerable grounded set: a captured REFERENCES.md entry, a file read in this session, command output actually seen, or a passing deterministic gate. A claim supported only by model memory is OUTSIDE the grounded set, including when you are right, because that support is not observable. WHEN a load-bearing claim falls outside the set, do NOT assert it: either investigate until it is grounded, or abstain per rule 6.
-
Status records provenance, never confidence. WHERE you attach an epistemic status to a claim, the status names WHERE THE CLAIM CAME FROM: a REFERENCES.md entry title, a file path plus line, or the gate output it came from. It SHALL NOT express a degree of certainty. Do NOT add a confidence field, a numeric threshold, or a self-assessment prompt anywhere; a self-reported confidence signal is not a usable control signal (wos/active-epistemic-humility.md Part 1.3). A status whose referent slot is empty is read as UNKNOWN, not as a weak yes.
-
Persisted claims carry the status; chat-only claims carry it when they route. Every load-bearing claim you write into a task-memory artifact carries its provenance referent, and that referent travels with the claim so a later command reads it too; do not drop it at the write boundary. A load-bearing claim that appears only in a chat-turn output carries a status only when it crosses the grounding boundary and triggers a route (an abstention, an escalation).
-
Abstain as a routed continuation, never a bare refusal. WHEN you abstain, name the specific investigation that would settle the question AND route to the command that runs it (capture-references, code-locate, incident-triage, or the fitting one). A withholding that stalls the work is invalid output. Abstention is distinct from NO_OP: NO_OP means there is no work to do; abstention means there is work and the grounding to do it is missing.
-
An unfired gate is not evidence. The absence of a fired check does not mean grounding existed. Do not read silence here as a pass.
Quality bar:
Extract faithfully from Figma. Mark observations vs proposals explicitly. Generate enough structure that the next person can continue documenting without re-reading the Figma file.