thedaviddias/ux-patterns-for-developers

autocomplete

Use when implementing suggest options as users type.

First seen Mar 15, 2026

Installation

$ npx skills add thedaviddias/ux-patterns-for-developers --skill autocomplete

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 thedaviddias/ux-patterns-for-developers · top by installs.

npx skills add thedaviddias/ux-patterns-for-developers

Browse all from thedaviddias/ux-patterns-for-developers

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 240
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
id
autocomplete
category
forms
pattern
Autocomplete
source
uxpatterns.dev
url
https://uxpatterns.dev/patterns/forms/autocomplete
sourcePath
apps/web/content/patterns/forms/autocomplete.mdx

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,819 B
  • docs SUMMARY.md 72 B

History

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

SKILL.md

Autocomplete

Suggest options as users type

What it solves

Autocomplete helps users quickly find and select values from predefined options as they type. Autocomplete combines [text input](/patterns/forms/text-field) flexibility with dropdown-style selection, providing real-time suggestions matching user input. This pattern reduces errors, speeds data entry, and improves form completion.

When to use

  • Users select from large sets of predefined options (country selection, airport codes)
  • Users need faster option selection than scrolling through long dropdowns
  • Reducing errors by guiding users to valid input options
  • Input has finite, known valid responses
  • Combining free text input with suggestion functionality

When to avoid

  • Fewer than 10 options exist (use standard dropdown/select instead)
  • Users enter completely free-form text without restrictions
  • All options need simultaneous visibility for comparison
  • Network latency significantly delays suggestion results
  • Input field requires exact, verbatim text entry (passwords)

Implementation workflow

  1. Confirm the pattern matches the problem and constraints before copying the example.
  2. Start from the anatomy and examples in references/pattern.md, then choose the smallest viable variation.
  3. Apply accessibility, performance, and interaction guardrails before layering visual polish.
  4. Use the testing guidance to verify behavior across keyboard, screen reader, responsive, and failure scenarios.

Accessibility guardrails

  • Ensure the input is labeled and announced as a combobox (role="combobox", aria-expanded, aria-controls).
  • Support full keyboard interaction: ArrowUp/ArrowDown, Enter, Escape, and Tab.
  • Expose active option context with aria-activedescendant and stable option IDs.
  • Announce loading, empty, and error states to screen readers.
  • Keep suggestions readable with strong contrast and visible focus styles.

Related patterns


For full implementation detail, examples, and testing notes, see references/pattern.md.

Pattern page: https://uxpatterns.dev/patterns/forms/autocomplete