build69
build69  /  Components  /  Overlays  /  Command

Command

v1.0.8Updated 27 Aug 2026

Command palette / fuzzy-search menu (cmdk). Drives ⌘K palettes, autocompletes, and command lists.

Preview

Live · 8 stories
DefaultOpen ↗
Why this is recommendedpalettecmdksearchautocomplete+2

The default, out-of-the-box Command.

Recommended for+14
  • ⌘K command palette
  • Autocomplete inputs
  • Searchable selects
Tags+6
palettecmdksearchautocompletekeyboarddefault
Features+4
  • Built-in fuzzy filter
  • Grouped items
  • Empty state
  • Keyboard navigation
Not recommended for−2
  • Static menus (use DropdownMenu)

Install

Ask your agent, or call the MCP tool directly. The resolved bundle is written into your project.

get_registry_item({ name: "Command" })

Usage

import { Command, CommandInput, CommandList, CommandItem } from '@/components/overlays/command';

<Command>
  <CommandInput placeholder="Type a command..." />
  <CommandList>
    <CommandItem>Open file</CommandItem>
  </CommandList>
</Command>

Tick variants in the left menu — each adds a tab with that variant’s real story source, the same code the preview above renders.

Props

No documented props — Command is composed rather than configured. See the source for its full signature.

Related