thedaviddias/ux-patterns-for-developers

search-field

Use when you need to search through content efficiently.

First seen Mar 21, 2026

Installation

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

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
search-field
category
forms
pattern
Search Field
source
uxpatterns.dev
url
https://uxpatterns.dev/patterns/forms/search-field
sourcePath
apps/web/content/patterns/forms/search-field.mdx

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,655 B
  • docs SUMMARY.md 76 B

History

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

SKILL.md

Search Field

Search through content efficiently

What it solves

A Search Field pattern helps teams create a reliable way to help users retrieve content or commands quickly with a clear input, sensible defaults, and immediate recovery paths. It is most useful when teams need site-wide content search. Compared with adjacent patterns, this pattern should reduce friction without hiding the state, rules, or recovery paths people need to keep moving.

When to use

  • Site-wide content search
  • Scoped table and list filtering
  • Quick command or object lookup

When to avoid

  • Use a simpler native control when the value is binary, tiny, or fully constrained.
  • Avoid custom behavior when a native browser input already solves the main job well.
  • Do not add extra formatting or validation if the product does not benefit from it.

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

Keyboard Interaction

  • Verify that search field can be completed using keyboard alone.
  • Keep focus order logical when the pattern opens, updates, or reveals additional UI.
  • Preserve a visible focus state that is still readable at high zoom.

Screen Reader Support

  • Use semantic elements first, then add ARIA only where semantics alone are not enough.
  • Announce state changes such as errors, loading, or completion in the right place and with the right politeness.
  • Connect labels, hints, and status text with aria-describedby or structural headings when useful.

Visual Accessibility

  • Do not rely on color alone to convey severity, completion, or selection state.

Common mistakes

Using the wrong validation moment

The Problem: Immediate validation on partial input makes the pattern feel punitive and noisy.

How to Fix It? Wait until the user has enough information in the field, then validate on blur, pause, or submit depending on the risk of the rule.

Separating labels, hints, and errors

The Problem: People cannot tell which message belongs to which control when the copy is visually detached.

How to Fix It? Keep labels, helper text, and validation messages tightly grouped and connected with aria-describedby where appropriate.

Forgetting touch and autofill behavior

The Problem: Desktop-only styling hides the fact that mobile keyboards, autofill, and paste flows behave differently.

How to Fix It? Test the control with autofill, paste, zoom, and on-screen keyboards before calling the pattern complete.

Related patterns


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

Pattern page: https://uxpatterns.dev/patterns/forms/search-field