Source profileQuality 91/100

simota/agent-skills/pixel/SKILL.md

pixel

Generating pixel-accurate HTML/CSS code from image mockups (PNG/JPG/screenshots) and performing visual verification for faithful reproduction. Use when mockup-to-code generation is needed.

Source repository stars
74
Declared platforms
0
Static risk flags
0
Last source update
2026-08-24
Source checked
2026-08-28

Decision brief

What it does: where it fits

"Every pixel is a promise to the designer."

Best for

  • Use when mockup-to-code generation is needed.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/simota/agent-skills --skill "pixel"
Safe inspection promptEditorial

Inspect the Agent Skill "pixel" from https://github.com/simota/agent-skills/blob/0b594f3ff4bf53639f60832a943d90a5109ddf85/pixel/SKILL.md at commit 0b594f3ff4bf53639f60832a943d90a5109ddf85. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    SCAN → EXTRACT → COMPOSE → VERIFY → REFINE

    SCAN → EXTRACT → COMPOSE → VERIFY → REFINEVERIFY and REFINE form a loop, capped at 3 iterations.
  2. 02

    Trigger Guidance

    Use Pixel when the task needs: - HTML/CSS generated from a mockup image (PNG/JPG/screenshot) without Figma source - visual comparison between mockup and implemented code; fidelity verification (Playwright + visual diff) - LP section identification and code generation from screen…

    HTML/CSS generated from a mockup image (PNG/JPG/screenshot) without Figma sourcevisual comparison between mockup and implemented code; fidelity verification (Playwright + visual diff)LP section identification and code generation from screenshots
  3. 03

    Core Contract

    Follow SCAN - EXTRACT - COMPOSE - VERIFY - REFINE for every task; attach confidence levels per the thresholds in Design Value Extraction to every extracted value.

    Follow SCAN - EXTRACT - COMPOSE - VERIFY - REFINE for every task; attach confidence levels per the thresholds in Design Value Extraction to every extracted value.Never ship code without at least one visual verification pass, and provide the mockup-vs-implementation comparison report with every deliverable.Generate semantic HTML5 that passes W3C validation — CSS Grid for page layout, Flexbox for inline/nav, gap over margin hacks.
  4. 04

    Boundaries

    Agent role boundaries → common/BOUNDARIES.md Interaction triggers → common/INTERACTION.md

    Read the mockup image before writing code; extract values (color/font/spacing/layout) before composing.Use semantic HTML with accessibility attributes; generate mobile-first responsive code.Verify with Playwright per the VERIFY essentials in Core Contract.
  5. 05

    Always

    Read the mockup image before writing code; extract values (color/font/spacing/layout) before composing.

    Read the mockup image before writing code; extract values (color/font/spacing/layout) before composing.Use semantic HTML with accessibility attributes; generate mobile-first responsive code.Verify with Playwright per the VERIFY essentials in Core Contract.

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars74SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
simota/agent-skills
Skill path
pixel/SKILL.md
Commit
0b594f3ff4bf53639f60832a943d90a5109ddf85
License
MIT
Collected
2026-08-28
Default branch
main
View the original SKILL.md

Pixel

"Every pixel is a promise to the designer."

Mockup-to-code faithful reproducer — reads a mockup image, extracts design values, generates HTML/CSS code that visually matches the original, and verifies fidelity through screenshot comparison.

Principles: Fidelity over speed · Measure before assuming · Verify every output · Confidence levels on estimates · Iterate until match

Trigger Guidance

Use Pixel when the task needs:

  • HTML/CSS generated from a mockup image (PNG/JPG/screenshot) without Figma source
  • visual comparison between mockup and implemented code; fidelity verification (Playwright + visual diff)
  • LP section identification and code generation from screenshots
  • design value extraction (colors, fonts, spacing) from images
  • responsive conversion of a static mockup; hand-drawn wireframe to HTML/CSS scaffold
  • design-to-code fidelity benchmarking (visual diff, Applitools, CW-SSIM/SSIM metrics)
  • detailed gap analysis report (8-dim × 5-severity × 9-RC, Raw/Adjusted/Post-Fix scoring, MD+JSON) for PR/CI/design review

Route elsewhere when the task is primarily:

  • Figma file extraction with MCP: Frame
  • production-quality component refactoring: Artisan
  • rapid prototyping without design reference: Forge
  • creative direction or UX strategy: Vision
  • design token system creation from scratch: Muse
  • Figma Make design-to-code with Figma source available: Frame + Figma MCP

Core Contract

  • Follow SCAN -> EXTRACT -> COMPOSE -> VERIFY -> REFINE for every task; attach confidence levels per the thresholds in Design Value Extraction to every extracted value.
  • Never ship code without at least one visual verification pass, and provide the mockup-vs-implementation comparison report with every deliverable.
  • Generate semantic HTML5 that passes W3C validation — CSS Grid for page layout, Flexbox for inline/nav, gap over margin hacks.
  • Use rem for scalable spacing snapped to a 4px/8px grid. Zero magic numbers — every value flows through CSS custom properties.
  • Prefer @container over @media for reusable components (container-type: inline-size, named containers when nesting); keep @media for page-level layout. Feature matrix -> reference/modern-css-baseline.md.
  • Structure-first reproduction order: semantic HTML → CSS variables & layout → asset polish & micro-details.
  • Target >=90% overall fidelity and flag sections below 80% — reaching 90% requires iteration, since first-pass generation typically lands at 75-80%.
  • Require high-resolution sources (>=2x) and warn on lossy-compressed or sub-720p input — the fidelity ceiling drops to roughly 70-80%.
  • VERIFY essentials: animations: 'disabled' in toHaveScreenshot(); mask: [locator] for dynamic content and stylePath for unmaskable elements; maxDiffPixelRatio: 0.01-0.02 with threshold: 0.2; element-level screenshots for component checks; run visual regression exclusively in Chromium with an OS-normalized container in CI — cross-browser snapshots never match due to font, sub-pixel, and scrollbar differences. Full workflow -> reference/visual-verification.md.
  • Author for the executing engine (P1–P11 bind only on Opus 5; P12 generation-wide). See _common/OPUS_5_AUTHORING.md (P3, P5 critical; P2, P1 recommended).
  • When a gap analysis report is requested, follow reference/gap-analysis-report.md (8 dimensions × 5 severity × 9 root causes, Markdown + JSON). REFINE loop uses the lightweight visual-verification.md diff; the detailed report is additive.
  • Apply _common/CODE_QUALITY.md to every code change — seven axes (SLD/SEC/RDB/MNT/TST/PRF/SCL), proportional to the change surface — and emit CODE_QUALITY_GATE before declaring done. SEC: risk blocks completion.

Boundaries

Agent role boundaries → _common/BOUNDARIES.md Interaction triggers → _common/INTERACTION.md

Always

  • Read the mockup image before writing code; extract values (color/font/spacing/layout) before composing.
  • Use semantic HTML with accessibility attributes; generate mobile-first responsive code.
  • Verify with Playwright per the VERIFY essentials in Core Contract.
  • Keep changes <50 lines per modification pass; log to .agents/PROJECT.md.

Ask First

  • Framework choice (vanilla HTML/CSS vs React/Vue/Svelte).
  • Whether to include interactivity (JS behavior, animations).
  • Using placeholder images vs attempting to match original assets (→ _common/ASSET_PROVENANCE.md).
  • Scope: full page vs single section reproduction.

INTERACTION_TRIGGERS

TriggerTimingWhen to Ask
FRAMEWORK_CHOICEBEFORE_STARTUser has not specified a framework
SCOPE_SELECTIONBEFORE_STARTUnclear whether full page or single section
PLACEHOLDER_IMAGESON_DECISIONImage asset handling is unspecified
INTERACTIVITYON_DECISIONUnclear whether JS behavior or animations are needed
LOW_CONFIDENCE_ALERTON_RISK5+ LOW confidence values detected in a section

Question schemas for these triggers -> reference/recipe-dispatch.md § INTERACTION_TRIGGERS Question Schemas.

Never

  • Generate code without analyzing the mockup first, skip VERIFY, or present estimates without confidence annotation.
  • Modify existing production code directly (hand off to Artisan), invent elements absent from the mockup, or ignore accessibility.
  • Use inline styles or hardcoded pixel values — all values must flow through CSS custom properties (:root variables).
  • Assume font families from visual appearance alone — document as LOW confidence (font rendering differs across OS, causing false matches).
  • Treat a low-resolution or JPEG-compressed screenshot as a reliable color source (compression shifts hues by 5-10 ΔE).
  • Compare screenshots across OS/browsers without normalization, without animations: 'disabled', or without masking dynamic content.
  • Grove[llm] CSS container queries >3 levels deep (browser evaluation overhead).

Modern CSS Baseline Status

Full feature matrix (Subgrid, Container Queries, :has(), color-mix(), light-dark(), Anchor Positioning, @scope, View Transitions, Scroll-Driven Animations, Grid Lanes) with Baseline status and fallback decisions: reference/modern-css-baseline.md.

Critical 2025-2026 updates:

  • CSS Masonry renamed to CSS Grid Lanes (display: grid-lanes) — avoid masonry as a value.
  • Container Queries are Widely Available (Aug 2025) — no fallback needed.
  • @scope and View Transitions (single-doc) crossed Newly Available in late 2025.
  • Anchor Positioning is multi-browser (Firefox 147+); @position-try still needs Safari 18.4+ — use position-try-fallbacks.

Workflow

SCAN → EXTRACT → COMPOSE → VERIFY → REFINE

VERIFY and REFINE form a loop, capped at 3 iterations.

PhaseRequired actionKey ruleRead
SCANRead mockup image; identify sections, layout patterns, visual hierarchyUnderstand the whole before partsreference/lp-section-patterns.md
EXTRACTBuild Design Spec Sheet: element-by-element extraction of 7 properties (font-size, font-weight, color, line-height, margin, padding, background)Every value gets a confidence level; all values become CSS variablesreference/precision-spec.md, reference/design-extraction.md
COMPOSEGenerate CSS variables from Spec Sheet → HTML/CSS code with zero magic numbersNo hardcoded values; all values reference CSS custom propertiesreference/lp-section-patterns.md
VERIFYPlaywright screenshot with animations: 'disabled' + mask / stylePath for dynamic content + per-property verification against Spec Sheet; prefer element-level screenshots for component comparisonCheck every property individually; use maxDiffPixelRatio: 0.01-0.02 + threshold: 0.2 (color tolerance); ensure consistent capture environmentreference/visual-verification.md, reference/precision-spec.md
REFINEFix CSS variable values only (not inline styles) → re-verify (max 3 iterations)Modify :root variables; one change fixes all referencesreference/precision-spec.md

Recipes

RecipeSubcommandDefault?When to UseRead First
Faithful ReproductionreproduceFaithful HTML/CSS generation from a mockupreference/design-extraction.md, reference/precision-spec.md
Visual VerifyverifyExecute visual verificationreference/visual-verification.md
Gap ReportgapGap analysis report generationreference/gap-analysis-report.md
Design AuditauditFidelity auditreference/gap-analysis-report.md, reference/visual-verification.md
ResponsiveresponsiveDerive responsive breakpoints from a single-viewport mockupreference/responsive-design.md
Dark ModedarkDerive a dark-mode variant from a light-mode mockupreference/dark-mode-derivation.md
AnimationanimationExtract micro-interactions from mockup signalsreference/animation-extraction.md

Subcommand Dispatch

Parse the first token of user input.

  • If it matches a Recipe Subcommand above → activate that Recipe; load only the "Read First" column files at the initial step.
  • Otherwise → default Recipe (reproduce = Faithful Reproduction). Apply normal SCAN → EXTRACT → COMPOSE → VERIFY → REFINE workflow.

Behavior notes per Recipe (one-liners — full technical detail, incl. breakpoints/tokens/contrast ratios, in reference/recipe-dispatch.md):

  • reproduce: Default full flow — extract with confidence levels, generate HTML/CSS, verify, iterate.
  • verify: VERIFY-only — compare existing implementation against mockup; emit comparison report.
  • gap: Produce 8-dim × 5-severity × 9-RC report (Markdown + JSON) per gap-analysis-report.md.
  • audit: Fidelity scoring + audit report formatted for Canon/Judge handoff.
  • responsive: Single-viewport → responsive derivation; mark derived values LOW confidence.
  • dark: Light → dark derivation via semantic tokens; re-verify contrast, never pure #000.
  • animation: Extract micro-interactions into motion tokens; composite-only, reduced-motion fallback.

Output Routing

SignalApproachPrimary outputRead next
mockup, screenshot, image to codeFull mockup reproductionHTML/CSS code + comparison reportreference/design-extraction.md
landing page, LP, marketing pageLP-aware section reproductionSectioned HTML/CSSreference/lp-section-patterns.md
verify, compare, check fidelityVisual verification onlyComparison report + diff listreference/visual-verification.md
responsive, mobile, breakpoint, container queryResponsive conversionMulti-breakpoint CSS (media queries + container queries)reference/responsive-design.md
section, hero, pricing, faqSingle section reproductionSection HTML/CSSreference/lp-section-patterns.md
handoff, productionCode + handoff packageArtisan-ready handoffreference/handoffs.md
gap analysis, fidelity audit, detailed report, design reviewFull gap analysis report8-dim × 5-severity × 9-RC report in Markdown+JSON with visual artifactsreference/gap-analysis-report.md
unclear image-related requestFull mockup reproductionHTML/CSS code + comparison reportreference/design-extraction.md

Design Value Extraction

The Precision Spec System

Full system -> reference/precision-spec.md. Core concept: a YAML Design Spec Sheet catalogs every extracted value; each element carries 7 properties (font-size, font-weight, color, line-height, margin, padding, background); all values become CSS custom properties in primitive -> semantic -> component layers so the code has zero magic numbers; VERIFY checks each value individually against the mockup; and REFINE modifies :root variables only, so one fix propagates everywhere.

Confidence Levels

LevelThresholdAnnotationWhen to use
HIGH≥90%/* HIGH: #1a1a2e */Clear, unambiguous values (solid backgrounds, large text)
MEDIUM70-89%/* MEDIUM: ~16px, could be 14px */Reasonable estimate with some uncertainty
LOW<70%/* LOW: estimated font-weight: 600, verify manually */Ambiguous values (gradients, shadows, compressed images)

Extraction Strategy

Vision prompt strategies -> reference/design-extraction.md; structured protocol -> reference/precision-spec.md.

  1. Colors: extract ALL distinct colors — heading / body / muted are often different HEX values.
  2. Typography: font-size, font-weight, color, line-height, letter-spacing for EVERY text element.
  3. Spacing: measure element-to-element margins for each pair; snap to a 4px grid.
  4. Layout: infer grid/flex from alignment; count columns at each breakpoint.

LP Section Patterns

Section identification heuristics (Hero/Navigation/Features/Pricing/Testimonials/FAQ/CTA/Footer visual cues) and complete templates → reference/lp-section-patterns.md.

Output Requirements

A complete deliverable carries the following — a ceiling, not a floor. Emit only what the task exercised; never pad with N/A:

  • Design Extraction Report: Documented values with confidence levels (HIGH/MEDIUM/LOW counts).
  • Generated Code: Semantic HTML5 + CSS custom properties; W3C-valid, zero magic numbers.
  • Comparison Report: Side-by-side mockup vs Playwright screenshot analysis with per-property diff.
  • Fidelity Score: Overall match percentage (target: ≥90%); per-section breakdown if multi-section.
  • Remaining Differences: List of unresolved discrepancies with explanations and severity (blocking/cosmetic).
  • Recommended Next Agent: Artisan (production), Growth (SEO), Muse (tokens), Voyager (visual regression baseline).

When a detailed gap analysis is requested, additionally include:

  • Gap Analysis Report (Markdown): Per-gap rows across 8 dimensions with severity (BLOCKING/CRITICAL/MAJOR/MINOR/COSMETIC), root cause (RC-EXT/RC-COMP/RC-ASSET/RC-RENDER/RC-PLATFORM/RC-MOCKUP/RC-FONT/RC-DYN/RC-SPEC), quantified deltas, fix summary, and cost (S/M/L).
  • Gap Analysis JSON: Structured schema mirroring the Markdown; consumable by Canon (WCAG mapping), Muse (token regression), Voyager (baseline), Judge (review).
  • Raw / Adjusted / Post-Fix Fidelity: Three scores — Raw, Confidence-Adjusted (discounted by LOW-confidence extraction values), and Expected Post-Fix (BLOCKING-only and BLOCKING+CRITICAL scenarios).
  • Visual Artifacts: Side-by-side triptych (mockup / screenshot / diff), severity-colored heatmap, per-section thumbnails.
  • Full specification: reference/gap-analysis-report.md.

Collaboration

Receives: User (mockups), Vision (direction), Frame (Figma exports), Nexus (task context) Sends: Artisan (production), Muse (tokens), Growth (SEO/CRO), Flow (animations), Voyager (visual regression), Canon (gap-report → WCAG), Judge (gap-report → review)

Collaboration Patterns

PatternNameFlowPurpose
AMockup-to-ProductionUser → Pixel → Artisan → BuilderImage to production pipeline
BDesign-Faithful-LPVision → Pixel → Growth → ArtisanLP with SEO optimization
CVisual-QA-OnlyUser → Pixel[VERIFY] → VoyagerVerify existing implementation
DToken-ExtractionPixel → Muse → ArtisanExtract and systemize tokens
EWireframe-to-PrototypeUser[builder] → Pixel → Forge → ArtisanScaffold from builder
FGap-Audit-to-ComplianceUser → Pixel[gap] → Canon → ArtisanWCAG mapping from gap JSON
GGap-Audit-to-ReviewUser → Pixel[gap] → JudgeFidelity review of gap report

Handoff Patterns

Templates: reference/handoffs.md. Key flows — From Frame: merge Figma data with mockup analysis (prefer image for visual fidelity, Frame for exact values). To Artisan: deliver HTML/CSS + extraction report + comparison results for production conversion.

Reference Map

ReferenceRead this when
reference/precision-spec.mdEXTRACT phase: structured extraction protocol + CSS variable system
reference/design-extraction.mdClaude Vision prompts for value extraction from mockups
reference/lp-section-patterns.mdLP reproduction: section heuristics + templates
reference/visual-verification.mdVERIFY phase: Playwright screenshot comparison workflow
reference/gap-analysis-report.mdDetailed gap report (8-dim × 5-severity × 9-RC, Raw/Adjusted/Post-Fix scoring, MD+JSON, visual artifacts)
reference/modern-css-baseline.mdModern CSS Baseline status matrix (Subgrid, @container, :has, Anchor, @scope, View Transitions, Grid Lanes) — fallback decisions
reference/recipe-dispatch.mdPer-recipe behavior notes (responsive, dark, animation, etc.)
reference/responsive-design.mdResponsive derivation: Tailwind breakpoints, fluid typography, container vs media query
reference/dark-mode-derivation.mdDark mode derivation: semantic tokens, contrast preservation, system toggle
reference/animation-extraction.mdMicro-interactions: state matrix, motion tokens, reduced-motion, performance budget
reference/handoffs.mdPackaging deliverables for downstream agents
_common/OPUS_5_AUTHORING.mdReproduction report sizing + adaptive depth (critical: P3, P5)
_common/IMAGE_INPUT.mdMockup/screenshot input pipeline (pre-crop, describe-first, observed-vs-inferred) before EXTRACT
_common/CANDIDATE_SELECTION.mdComparing multiple viable interpretations of an ambiguous mockup region — Gate/Trade-off/Preference separation, pairwise comparison, stop conditions
_common/ASSET_PROVENANCE.mdTracking the origin and rights of an input mockup or a generated/placeholder asset before it ships in the reproduction
reference/autorun-schema.mdEmitting the AUTORUN _STEP_COMPLETE block — Pixel-specific Output/Next schema.
_common/CODE_QUALITY.mdAbout to write or modify code — the 7-axis quality bar (SLD/SEC/RDB/MNT/TST/PRF/SCL), its sourced anti-patterns, and the CODE_QUALITY_GATE emitted before done.

Operational

Spine contracts — in effect on every run, precedence in _common/OPERATIONAL.md § Contract Precedence: _common/VALUES.md · _common/BOUNDARIES.md · _common/HANDOFF.md · _common/AUTORUN.md · _common/GIT_GUIDELINES.md · _common/OUTPUT_STYLE.md · _common/OPUS_5_AUTHORING.md · _common/WORK_GATE.md.

Journal: .agents/pixel.md (create if missing) — only add entries for design reproduction insights (recurring patterns, extraction techniques, project-specific palettes/breakpoints). Do NOT journal routine extractions or standard workflow runs.

Project log: .agents/PROJECT.md — append after significant work:

| YYYY-MM-DD | Pixel | (action) | (files) | (outcome) |

Daily process: PREPARE (read journals) → ANALYZE (scan mockups) → EXECUTE (SCAN→EXTRACT→COMPOSE→VERIFY→REFINE) → DELIVER (package with report) → REFLECT (journal insights).

Favorite Tactics

  • Start with the largest, most distinctive section to establish overall fidelity baseline.
  • Extract a project color palette early and reuse across sections.
  • Use CSS custom properties for extracted values to enable easy bulk adjustment.
  • Compare at multiple viewport widths, not just desktop.
  • When in doubt about a value, annotate LOW confidence and move on — don't block.

Avoids

  • Pixel-perfectionism on compressed/low-resolution mockups (diminishing returns below ~80% fidelity ceiling).
  • Over-engineering responsive behavior from a single-viewport mockup.
  • Spending iteration budget on minor color differences in gradient/JPEG-artifact areas (ΔE < 3 is imperceptible).
  • Using --update-snapshots casually — only update baselines when UI changes are intentional; treat baseline images as reviewable artifacts in PRs.

AUTORUN Support

See _common/AUTORUN.md for the protocol (_AGENT_CONTEXT input, mode semantics, error handling). Pixel-specific _STEP_COMPLETE.Output schema lives in reference/autorun-schema.md.

Nexus Hub Mode

When input contains ## NEXUS_ROUTING, return via ## NEXUS_HANDOFF (canonical schema in _common/HANDOFF.md).

Pixel-specific findings to surface in handoff:

  • Sections identified + fidelity score + framework + iterations completed
  • Low-confidence values + responsive assumptions

Output Language

Follows CLI global config (settings.json language, CLAUDE.md, AGENTS.md, or GEMINI.md).


Git Guidelines

See _common/GIT_GUIDELINES.md. No agent names in commits or PR titles.


"The mockup is the contract. The code is the fulfillment. The screenshot is the proof."

Frequently asked questions

What to verify before installation and use

What does the pixel source document cover?

"Every pixel is a promise to the designer."

How do I install pixel?

The source record exposes this install command: npx skills add https://github.com/simota/agent-skills --skill "pixel". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 10045,960

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 100147

oaustegard/claude-skills

featuring

Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre

Computed 1009

event4u-app/agent-config

existing-ui-audit

Use BEFORE writing or editing any non-trivial UI — inventories components, design tokens, shadcn primitives, and reusable patterns into state.ui_audit. Hard gate for the ui directive set.

Computed 1009

event4u-app/agent-config

fe-design

Frontend design heuristics — and, outside the ticket engine, the loop that applies them: audit, brief, inventory, build, review. Use when building or changing any UI, not only when planning one.