dembrandt/dembrandt-skills

user-flows-and-guided-paths

Related features and tasks — such as purchase flows, onboarding, or multi-step configuration — should be designed as natural, guided paths that feel coherent and fit the product hierarchy.

First seen Apr 19, 2026

Installation

$ npx skills add dembrandt/dembrandt-skills --skill user-flows-and-guided-paths

Summary

  • Related features and tasks — such as purchase flows, onboarding, or multi-step configuration — should be designed as natural, guided paths that feel coherent and fit the product hierarchy.
  • Use wizards for complex sequential tasks.
  • Use when designing flows, onboarding, checkout, setup sequences, or any multi-step user journey.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dembrandt/dembrandt-skills · top by installs.

npx skills add dembrandt/dembrandt-skills

Browse all from dembrandt/dembrandt-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 53
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
priority
7
pathPatterns
["components\/**","src\/components\/**","**\/*.tsx","**\/*.jsx","design-system\/**","ui\/**"]
promptSignals
{"phrases":["flow","wizard","onboarding","checkout","steps","multi-step","guided","purchase flow","setup"]}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 5,322 B
  • docs SUMMARY.md 366 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 633 installs

SKILL.md

User Flows and Guided Paths

Related features that belong together should be experienced as a single coherent journey — not as separate screens the user has to navigate between manually. A well-designed flow feels inevitable: each step leads naturally to the next, the user always knows where they are and what comes next, and the path fits the product's information hierarchy.

When to Guide vs. When to Let Users Explore

Scenario Pattern
Linear process with a clear end goal (checkout, signup, setup) Guided step-by-step flow or wizard
Complex task that benefits from breaking into stages Wizard with progress indicator
Feature discovery across an existing product Contextual tooltips or coach marks
User returning to complete something they started Resume prompt with clear re-entry point
Open-ended exploration (dashboard, settings) Free navigation — do not force a flow

Only guide when the task genuinely has a natural order. Forcing a wizard onto a non-sequential task frustrates users who already know what they want.

The Wizard Pattern

Use a wizard when:

  • The task has 3 or more sequential steps
  • Later steps depend on decisions made in earlier steps
  • Doing all steps on one screen would overwhelm the user

Wizard anatomy

[Step indicator: 1 of 4]

Step title

  [Form content for this step]

[Back]  [Continue →]

Step indicator: Always show the user where they are in the sequence and how many steps remain. A progress bar or numbered steps both work — numbered steps are clearer when step names are meaningful.

Back navigation: Always available. Users must be able to go back and change earlier decisions without losing their progress on later steps.

Forward navigation: Disabled until the current step is complete. Validate on Continue, not on Submit at the end.

Exit path: Make it clear how to abandon the flow without losing partial progress. Autosave drafts where possible.

Step design principles

  • One primary decision or input group per step — don't overfill steps
  • Step titles should describe the user's goal, not the system's: "Your delivery address" not "Address input"
  • Optional steps should be clearly marked and skippable
  • The final step should show a summary before committing

Purchase and Conversion Flows

Purchase flows have an additional constraint: every unnecessary step reduces conversion. Design for the shortest path to completion.

  • Collect only what is required at each stage — defer optional information
  • Show a persistent order summary so the user always sees what they are buying
  • Surface trust signals near payment steps (security badges, return policy)
  • Confirmation step before payment: show total, delivery, items — one last review
  • Post-purchase: immediate confirmation with clear next steps ("Your order is confirmed. We'll email you when it ships.")

Fitting Flows into the Product Hierarchy

A guided path should feel like it belongs to the product — not like it has opened a separate experience.

  • The visual style, typography, and components inside a flow should match the rest of the product
  • Navigation chrome (sidebar, top nav) can be hidden during a flow to reduce distraction, but the brand header should remain visible
  • After completing a flow, return the user to a meaningful place in the hierarchy — not to a generic home screen
  • Deep-linking into a flow should work: a user who arrives at step 3 via email link should see step 3, not step 1

Review Checklist

  • Does the flow have a clear start, a logical step order, and a definite end?
  • Is a progress indicator visible at every step?
  • Can the user go back to any previous step without losing later progress?
  • Is each step focused on one decision or input group?
  • Are step titles written in user language, describing their goal?
  • Does the final step show a summary before the irreversible action?
  • After completion, does the user land somewhere meaningful in the product?
  • Does the flow visual style match the rest of the product?