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

Button

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

Helps with ai & agent building tasks.

About

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

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

Button by the numbers

  • 8 all-time installs (skills.sh)
  • 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 button

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 ↗

Button

Trigger actions and submit forms

What it solves

Buttons are interactive elements that trigger actions or events when clicked or interacted with.

When to use

  • To trigger an immediate action or event (e.g., "Save", "Delete", "Send")
  • To submit a form
  • To open or close interactive elements (modals, dialogs, menus)
  • To toggle between states (e.g., play/pause, show/hide)
  • To download files or content
  • To navigate between steps in a multi-step process

When to avoid

  • For navigation between pages (use links instead)
  • When the action isn't immediately clear to users
  • For text-only content that doesn't trigger an action
  • When the interaction would be better served by a different component (e.g., checkbox, toggle switch)
  • When multiple conflicting actions are grouped together
  • When the action requires additional context that isn't immediately available

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

ARIA Attributes

Required [ARIA attributes](/glossary/aria-attributes):

  • Use aria-label for icon-only buttons
  • Use aria-pressed for toggle buttons
  • Use aria-expanded for buttons that control expandable content
  • Use aria-disabled="true" instead of the disabled attribute
  • Use aria-describedby to associate additional descriptive text

Screen Reader Support

Implementation example:

<!-- Icon-only button with proper ARIA -->
<button type="button" aria-label="Close dialog">
  <svg aria-hidden="true">
    <use href="#icon-close" />
  </svg>
</button>
<!-- Toggle button with ARIA pressed state -->
<button type="button" aria-pressed="false">
  <span>Dark mode</span>
</button>
<!-- Expandable content button -->
<button type="button" aria-expanded="false" aria-controls="content-1">
  <span>Show more</span>
</button>

Related patterns

  • https://uxpatterns.dev/patterns/forms/toggle
  • https://uxpatterns.dev/patterns/navigation/link

---

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

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

Related skills

This week in AI coding

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

unsubscribe anytime.