ux-ui-map-page-by-page
UX/UI Map (Page-by-Page)
When to use
Use this skill when the user asks to:
- capture screens page by page
- avoid “capture everything then analyze later”
- generate/update
ux_ui_map/artifacts
Key rule (memory-safe)
Process exactly one route at a time:
- Navigate route
- Capture screenshots (desktop/tablet/mobile)
- Immediately write/update the page doc in
ux_ui_map/pages/ - Immediately write/update the page request in
ux_ui_map/requests/ - Only then move to the next route
Do not keep previous pages in working context.
Output contract
Write these files as you go:
ux_ui_map/pages/{page}.md(page documentation)ux_ui_map/screenshots/{page}/...png(screenshots)ux_ui_map/requests/{page}.json(analysis request inputs)ux_ui_map/capture-index.jsonl(append-only log, one JSON object per captured route)
Templates:
- Page doc template: assets/page-template.md
- Request JSON template: assets/request-template.json
Helper script:
- Scaffold/validate per-page artifacts: scripts/page_artifacts.mjs
Script usage
Scaffold the expected files/folders for one page:
node .github/skills/ux-ui-map-page-by-page/scripts/page_artifacts.mjs scaffold --page dashboard --route /
Validate that a page has its 3 required screenshots and docs:
node .github/skills/ux-ui-map-page-by-page/scripts/page_artifacts.mjs validate --page dashboard
Naming
{page}is a stable slug (e.g.dashboard,documents,query,graph,settings,api-explorer,login).- Screenshot names include viewport suffix:
desktop.png,tablet.png,mobile.png.
Minimal checklist per route
- Route loads without hard failure (HTTP/blank page)
- 3 screenshots saved (desktop/tablet/mobile)
-
ux_ui_map/pages/{page}.mdcreated/updated -
ux_ui_map/requests/{page}.jsoncreated/updated - Capture appended to
ux_ui_map/capture-index.jsonl
Example prompts that should trigger this skill
- “Capture the UI page-by-page and write analysis immediately.”
- “Update the UX/UI mapping, but don’t blow the context window.”
- “Generate
ux_ui_map/artifacts for all routes.”
More from raphaelmansuy/edgequake
copilotkit-nextjs-integration
Integrate CopilotKit AI components into Next.js frontend for building agentic UIs. Enables context-aware AI agents that can read app state and trigger tools/actions. Supports custom adapters for self-hosted LLMs and multiple provider integrations.
33pdf-markdown-validator
Validate PDF to Markdown conversion quality using multi-dimensional metrics. Assess table accuracy, style preservation (bold/italic/headings), robustness, and performance with standardized F1-scoring methodology.
3ux-ui-analyze-single-page
Analyze exactly one captured UI page (from ux_ui_map screenshots + request JSON) and immediately write/update ux_ui_map/pages/{page}.md in neutral descriptive language. Use when asked to analyze screenshots, rewrite corresponding analysis immediately, or avoid memory/context saturation.
3reverse-documentation
Automatically generate comprehensive documentation for Rust and TypeScript codebases by analyzing code structure, patterns, and relationships. Supports trait-based patterns, async operations, React components, and Next.js applications.
2makefile-dev-workflow
Unified development workflow for EdgeQuake using Makefile commands. Use when starting services, running tests, or managing the full development stack (database, backend, frontend). Provides simplified alternatives to raw cargo/npm commands.
2doc-traceability-validator
Validate documentation traceability between code annotations (@implements), feature registry, business rules, and use cases. Detect ID collisions, undocumented features, broken cross-references, and namespace violations.
2