
Design Flow
Run the full designer skill stack in order—from clarification and brief through tokens, tasks, and frontend build—with explicit phase gates.
Install
npx skills add https://github.com/julianoczkowski/designer-skills --skill design-flowWhat is this skill?
- Orchestrates 6 sequential phases: Grill Me, Design Brief, Info Architecture, Design Tokens, Brief to Tasks, Frontend Des
- Treats Design Review as a separate seventh step when the UI is ready—not bundled into the main run
- Requires confirmation at each phase; announces upcoming step and supports skipping known-complete phases
- Documents common skip patterns (skip grill-me if idea is clear, skip IA for single components, skip tokens on existing p
- Acts as a guided facilitator—does not rush past incomplete deliverables from prior designer skills
Adoption & trust: 2.2k installs on skills.sh; 269 GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Journey fit
The flow begins where solo builders still define intent and structure before pixels; Validate scope is the canonical entry for greenfield design-to-build orchestration. Scope subphase matches grill-me and brief work that locks what you are building before information architecture and implementation tasks.
Common Questions / FAQ
Is Design Flow safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Design Flow
This skill orchestrates the full designer workflow by running each skill in sequence. You are a guide walking the designer through each phase. Do not rush. Each phase must be completed and confirmed before moving to the next. ## Example prompts - "Run the full design flow" - "Walk me through the complete process for a new project" - "Start from scratch and take me through everything" - "Design flow for a dashboard app" ## The Sequence ``` 1. Grill Me → Clarify thinking 2. Design Brief → Document intent 3. Info Architecture → Define structure 4. Design Tokens → Establish visual system 5. Brief to Tasks → Plan the build 6. Frontend Design → Build it — 7. Design Review → Run separately when ready ``` ## Rules 1. **At the start**, tell the designer what the full sequence looks like (phases 1-6, with review available separately) and ask if they want to skip any phases. Common skip patterns: - Already have a clear idea → skip grill-me - Single component, not a full page → skip information-architecture - Existing project with tokens → skip design-tokens 2. **Before each phase**, announce which phase you are entering and what it will produce. Example: "Phase 2: Design Brief. I'll interview you about the project and produce a DESIGN_BRIEF.md file. Ready?" 3. **During each phase**, read the corresponding SKILL.md file and follow its full instructions. Do not summarize or abbreviate the skill. Run it properly. 4. **After each phase**, summarize what was produced (the file name, the key decisions, any open questions) and ask: "Ready to move to the next phase?" Wait for confirmation. 5. **Between phases**, check if the output from the previous phase changes anything about the next phase. For example, if the brief names a philosophy, mention that the tokens phase will use it. 6. **The designer can stop at any point.** If they say "that's enough for now," summarize where they are in the sequence and what the next phase would be when they return. ## Phase Details ### Phase 1: Grill Me Read the `grill-me` skill (grill-me/SKILL.md) and follow its instructions. **Produces**: Shared understanding of the project. No file output. **Transition**: "We've resolved the key decisions. Ready to capture this as a design brief?" ### Phase 2: Design Brief Read the `design-brief` skill (design-brief/SKILL.md) and follow its instructions. **Produces**: `.design/<feature-slug>/DESIGN_BRIEF.md`. **Transition**: "The brief is saved. Next is information architecture, where we'll define the page structure and navigation. Skip this if you're building a single component. Continue?" ### Phase 3: Information Architecture Read the `information-architecture` skill (information-architecture/SKILL.md) and follow its instructions. **Produces**: `.design/<feature-slug>/INFORMATION_ARCHITECTURE.md`. **Transition**: "IA is defined. Next we'll generate design tokens (colors, spacing, typography) based on the philosophy from the brief. Continue?" ### Phase 4: Design Tokens Read the `design-tokens` skill (design-tokens/SKILL.md) and follow its instructions. **Produces**: Token file (CSS variables, Tailwind config, or theme file depending on stack). **Transition**: "Tokens are set. Next I'll break the brief into a task list so we can build in order. Continue?" ### Phase 5: Brief to Tasks Read the `brief-to-tasks` skill (brief-to-tasks/SKILL.md) and follow its instructions. **Produces**: `.design/<feature-slug>/TASKS.md`. **Transition**: "Tasks are ready. Now we build. I'll start with the first task on the list. Continue?" ### Phase 6: Frontend Design Read the `frontend-design` skill (frontend-de