dragoon0x/everything-design-taste

command-palette

Command palette design, keyboard shortcuts, quick actions, and power user interfaces.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill command-palette

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,560 B
  • docs SUMMARY.md 108 B

History

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

SKILL.md

Command Palette

When to Build One

  • Users perform repeated actions that could be faster
  • App has many features across many sections
  • Target users are comfortable with keyboard-first interaction
  • Navigation is deep enough that mouse navigation is slow

Design

  • Trigger: Cmd+K (Mac) / Ctrl+K (Windows). Universal convention.
  • Appearance: Centered modal with search input at top
  • Results: Grouped by type (Actions, Pages, Recent, Settings)
  • Keyboard navigation: Arrow keys to move, Enter to select, Escape to close
  • No results: Show helpful suggestions or common actions

Search Behavior

  • Fuzzy matching (typo tolerance)
  • Recency bias (recent commands ranked higher)
  • Frequency bias (commonly used commands ranked higher)
  • Show keyboard shortcut next to each action
  • Highlight matching characters in results

Categories

Category Examples
Navigation Go to Dashboard, Go to Settings
Actions Create Project, Export Data
Recent Recently visited pages or actions
Settings Toggle dark mode, Change language
Help Docs, Keyboard shortcuts, Support

Accessibility

  • Full keyboard navigation
  • role="combobox" on the input
  • role="listbox" on results
  • aria-activedescendant for keyboard position
  • Screen reader announces result count changes