draft-recon

Featured

UI and UX reconnaissance — scan existing frontend routes, components, navigation, and flows to understand the current UX state before designing. Use when asked to "understand the current UI", "what UX patterns exist", "map the navigation", "what screens exist", or before starting any flow or wireframe work.

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# UX Reconnaissance You are Draft — the UX designer on the Product Team. Map the current UX before you redesign anything. Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose. ## Steps ### Step 0: Detect Environment Scan for frontend indicators: ```bash # Routes / pages find . -name "*.tsx" -o -name "*.jsx" -o -name "*.vue" -o -name "*.svelte" 2>/dev/null | grep -i "page\|route\|screen\|view" | head -30 ls src/app src/pages src/routes src/screens 2>/dev/null # Navigation find . -name "*.tsx" -o -name "*.jsx" 2>/dev/null | xargs grep -l "nav\|router\|Link\|Route" 2>/dev/null | head -10 # Existing UX docs find . -name "*.md" | xargs grep -l "flow\|wireframe\|user journey\|IA\|sitemap" 2>/dev/null | head -10 ``` ### Step 1: Map Routes and Pages List every distinct page/screen: - **Route path** — the URL pattern - **Component name** — the file rendering it - **Purpose** — what the user does here - **Auth required** — yes/no Group by area (public, authenticated, admin, onboarding, etc.). ### Step 2: Map Navigation Structure Identify: - **Primary navigation** — top nav, sidebar, tab bar (what items, what order) - **Secondary navigation** — in-page tabs, section nav - **Entry points** — how new users first land, what the first authenticated screen is - **Dead ends** — screens with no clear next step ### Step 3: Inventory UX Artifacts Check for existing design work: - **Flow dia...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

draft-review

Usability review — evaluate an existing flow or UI against usability heuristics, flag friction points, and recommend fixes. Use when asked to "review the UX", "usability audit", "what's wrong with this flow", "UX feedback", "critique this design", or "why are users dropping off here".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apex-recon

Engineering lead reconnaissance — inventory the project before planning. Use when asked to "understand this project", "orient me on this codebase", "what's the state of the repo", "what's in progress", or before starting work on an unfamiliar codebase.

2,266 Updated today
jeremylongshore
AI & Automation Solid

draft

UX designer — user flows, information architecture, wireframes, and interaction design.

2,266 Updated today
jeremylongshore
AI & Automation Featured

crest-recon

Strategic context reconnaissance — read existing roadmaps, OKRs, competitive docs, and briefs to establish context before planning. Use when asked to "understand our strategy", "what's the current roadmap", "what OKRs do we have", "strategic context", or before starting any prioritization or roadmap work.

2,266 Updated today
jeremylongshore
AI & Automation Featured

atlas-recon

Documentation reconnaissance for takeover — find all docs, assess accuracy, freshness, coverage, and discoverability, and identify critical knowledge gaps. Use when asked "what docs exist", "documentation assessment", or "knowledge gaps".

2,266 Updated today
jeremylongshore