Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thedaviddias avatar

Autocomplete

  • 8 installs
  • 228 repo stars
  • Updated June 30, 2026
  • thedaviddias/ux-patterns-for-developers

Helps with ai & agent building tasks.

About

autocomplete is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • autocomplete
  • AI & Agent Building
  • AI-coding skill

Autocomplete by the numbers

  • 8 all-time installs (skills.sh)
  • +1 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #12,321 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thedaviddias/ux-patterns-for-developers --skill autocomplete

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs8
repo stars228
Last updatedJune 30, 2026
Repositorythedaviddias/ux-patterns-for-developers

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

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 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

  • https://uxpatterns.dev/patterns/autocomplete/do-dont-accessibility-1
  • https://uxpatterns.dev/patterns/autocomplete/do-dont-content-1
  • https://uxpatterns.dev/patterns/autocomplete/do-dont-visual-design-2
  • https://uxpatterns.dev/patterns/forms/date-picker
  • https://uxpatterns.dev/patterns/forms/multi-select-input
  • https://uxpatterns.dev/patterns/forms/text-field

---

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

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

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.