dragoon0x/everything-design-taste

stepper-wizard

Multi-step form patterns, wizard flows, progress indicators, step validation, and linear vs non-linear steps.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill stepper-wizard

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 dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

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 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,565 B
  • docs SUMMARY.md 131 B

History

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

SKILL.md

Stepper & Wizard Patterns

When to Use

  • Process requires 4+ inputs that can be logically grouped
  • Order matters (setup before configuration)
  • Users need context about progress and remaining effort

Design Rules

  1. Show step count and current position (Step 2 of 4)
  2. Step labels are descriptive ("Payment Details" not "Step 2")
  3. Allow going back without losing data
  4. Validate each step before allowing forward progress
  5. Save progress so users can return later
  6. Summary/review step before final submission for important flows

Linear vs Non-Linear

Type When Example
Linear Steps depend on previous answers Account setup
Non-linear Steps are independent Profile completion
Branching Different paths based on answers Insurance application

Progress Indicators

  • Horizontal stepper (desktop): numbered circles with labels connected by lines
  • Vertical stepper (mobile or many steps): stacked steps with expandable content
  • Progress bar: simpler, good when step count may vary

Step Design

  • Each step fits on one screen without scrolling (ideally)
  • Primary action: "Continue" or specific label ("Save and continue")
  • Secondary action: "Back" (always available except step 1)
  • Tertiary: "Save and exit" for long processes