{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "command-demo",
  "title": "Command Demo",
  "description": "Usage example for the ai2 command component.",
  "registryDependencies": [
    "@ai2/command"
  ],
  "files": [
    {
      "path": "registry/ai2/examples/command-demo.tsx",
      "content": "import {\n  Command,\n  CommandEmpty,\n  CommandGroup,\n  CommandInput,\n  CommandItem,\n  CommandList,\n  CommandShortcut,\n} from \"@/registry/ai2/ui/command\"\n\nexport default function CommandDemo() {\n  return (\n    <div className=\"max-w-md rounded-lg border border-border\">\n      <Command>\n        <CommandInput placeholder=\"Type a command or search…\" />\n        <CommandList>\n          <CommandEmpty>No results found.</CommandEmpty>\n          <CommandGroup heading=\"Suggestions\">\n            <CommandItem>\n              New deployment <CommandShortcut>⌘N</CommandShortcut>\n            </CommandItem>\n            <CommandItem>Search docs</CommandItem>\n          </CommandGroup>\n        </CommandList>\n      </Command>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}