npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@arcon.mobi/nuxt-cmdk

v0.1.0

Published

Command palette + keyboard shortcut registry for Nuxt — async actions, multi-step sequences (g d), fuzzy search, scoped CSS theming.

Readme

nuxt-cmdk

Linear-style command palette + keyboard shortcut registry for Nuxt. Composable-first, headless, themable via CSS variables.

Features

  • Multi-step sequencesg d to navigate, like Linear/Vercel
  • OS-aware modifiersmod+k resolves to ⌘K on Mac, Ctrl+K elsewhere
  • Async actionsaction: () => Promise<void> with built-in loading state
  • Fuzzy search — Fuse.js, with substring fallback
  • Scoped commands — register per-component, auto-cleanup on unmount
  • Scoped CSS + CSS variables — themable, no Tailwind dependency
  • Reka UI Dialog — accessible, keyboard-driven
  • Overlay-awareuseShortcutBlocker pauses shortcuts under dropdowns/menus
  • Error hookscmdk:error and cmdk:executed for toast/log integration

Install

pnpm add @arcon.mobi/nuxt-cmdk reka-ui
// nuxt.config.ts
export default defineNuxtConfig({
  modules: ['@arcon.mobi/nuxt-cmdk'],
  cmdk: {
    paletteShortcut: 'mod+k',  // default
    search: 'fuzzy',           // 'fuzzy' | 'substring'
    sequenceTimeoutMs: 1500,
    prefix: 'Cmdk',            // component prefix
  },
})

Mount the palette and sequence indicator in your root layout:

<!-- app.vue or layouts/default.vue -->
<template>
  <NuxtPage />
  <CmdkPalette />
  <CmdkSequenceIndicator />
</template>

Usage

Register commands

<script setup lang="ts">
useCommands([
  {
    id: 'go-customers',
    name: 'Go to Customers',
    group: 'Navigation',
    shortcut: 'g c',
    action: () => navigateTo('/customers'),
  },
  {
    id: 'save-document',
    name: 'Save Document',
    shortcut: 'mod+s',
    keywords: ['write', 'persist'],
    action: async () => {
      await saveDocument()
    },
  },
])
</script>

Commands registered via useCommands are auto-unregistered on unmount.

Hidden shortcuts

Set hidden: true to make a command shortcut-only — it won't show in the palette but the shortcut still fires:

useCommands([
  {
    id: 'select-all',
    name: 'Select All',
    shortcut: 'mod+a',
    hidden: true,
    action: selectAll,
  },
])

Reactive command sets

Pass a ref or computed to enable/disable commands based on state:

const isDirty = ref(false)
const cmds = computed(() => isDirty.value ? [{
  id: 'save',
  name: 'Save Changes',
  shortcut: 'mod+s',
  action: save,
}] : [])

useCommands(cmds)

Palette control

const { isOpen, open, close, toggle } = useCommandPalette()

Block shortcuts under overlays

If you have a custom dropdown/menu/modal that doesn't already block shortcuts, use useShortcutBlocker:

<script setup lang="ts">
const menuOpen = ref(false)
useShortcutBlocker(menuOpen)
</script>

While menuOpen is true, all sequence shortcuts are paused (modifier shortcuts like Cmd+K still work via the palette's own listener).

Listen to errors

const nuxtApp = useNuxtApp()
nuxtApp.hook('cmdk:error', (err, cmd) => {
  toast.error(`"${cmd.name}" failed: ${(err as Error).message}`)
})
nuxtApp.hook('cmdk:executed', (cmd) => {
  console.log(`ran ${cmd.id}`)
})

Shortcut syntax

| Token | Meaning | |---|---| | mod | Cmd on Mac, Ctrl elsewhere | | cmd, ctrl | Same as mod | | shift, alt, option | Modifiers | | + | Joins modifiers in a step (mod+shift+s) | | (space) | Separates steps in a sequence (g d) |

Examples: mod+k, mod+shift+p, g i, g g, escape, ?

API

useCommands(commands)

Registers a list of commands scoped to the current component. Accepts a static array or a ref/computed for reactive sets.

useCommandPalette()

Returns { isOpen, open, close, toggle, restoreFocus }.

useShortcutBlocker(isOpen)

Pauses sequence shortcuts while the given ref is true. Auto-cleans on unmount.

defineCommand(cmd)

Type-safe helper for authoring commands inline.

Command type

interface Command {
  id: string
  name: string
  group?: string
  shortcut?: string
  keywords?: string[]
  action: () => void | Promise<void>
  priority?: number
  hidden?: boolean
}

Theming

All visuals use CSS variables. Override at any level:

:root {
  --cmdk-bg: #1a1a1a;
  --cmdk-fg: rgb(255 255 255 / 0.9);
  --cmdk-border: rgb(255 255 255 / 0.1);
  --cmdk-border-subtle: rgb(255 255 255 / 0.05);
  --cmdk-overlay-bg: rgb(0 0 0 / 0.5);
  --cmdk-active-bg: rgb(255 255 255 / 0.08);
  --cmdk-active-fg: #fff;
  --cmdk-muted-fg: rgb(255 255 255 / 0.5);
  --cmdk-placeholder: rgb(255 255 255 / 0.4);
  --cmdk-kbd-bg: rgb(255 255 255 / 0.1);
  --cmdk-radius: 0.75rem;
  --cmdk-max-width: 36rem;
  --cmdk-z-index: 300;
  --cmdk-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
}

Animations

The palette ships with no animations by default — that's a deliberate choice so you can match your app's motion language and decide how to handle prefers-reduced-motion yourself.

Open / close

<CmdkPalette /> is built on Reka UI's Dialog, which sets data-state="open" and data-state="closed" on the overlay and content. Reka waits for any matching CSS animation (or transition) to finish before unmounting, so you only need CSS:

.cmdk-overlay[data-state='open']  { animation: my-fade-in 150ms ease-out; }
.cmdk-overlay[data-state='closed'] { animation: my-fade-out 100ms ease-in; }

.cmdk-content[data-state='open']  { animation: my-scale-in 150ms ease-out; }
.cmdk-content[data-state='closed'] { animation: my-scale-out 100ms ease-in; }

@keyframes my-fade-in   { from { opacity: 0 } }
@keyframes my-fade-out  { to   { opacity: 0 } }
@keyframes my-scale-in  { from { opacity: 0; transform: translateX(-50%) scale(0.98) } }
@keyframes my-scale-out { to   { opacity: 0; transform: translateX(-50%) scale(0.98) } }

Result list resize

When search filters the result list, the wrapper resizes instantly. To smooth it:

.cmdk-list-wrap { transition: height 200ms ease; }

Sequence indicator

<CmdkSequenceIndicator /> is wrapped in <Transition name="cmdk-sequence">. Drop in your own classes:

.cmdk-sequence-enter-from,
.cmdk-sequence-leave-to    { opacity: 0; transform: translateY(0.5rem); }
.cmdk-sequence-enter-active,
.cmdk-sequence-leave-active { transition: opacity 150ms ease, transform 150ms ease; }

Loading indicator (per-command)

While an async command's promise is pending, <CmdkPalette /> renders a small SVG spinner. The spinner uses SMIL and animates regardless of prefers-reduced-motion. To replace it (or remove it), use the running slot:

<CmdkPalette>
  <template #running="{ command }">
    <span class="my-loader" :aria-label="`Running ${command.name}`" />
  </template>
</CmdkPalette>

The slot only renders for commands that are currently executing.

Module options

| Option | Type | Default | Description | |---|---|---|---| | prefix | string | "Cmdk" | Component prefix (<CmdkPalette />) | | search | 'fuzzy' \| 'substring' | 'fuzzy' | Search algorithm | | paletteShortcut | string \| false | 'mod+k' | Open shortcut, or false to disable | | sequenceTimeoutMs | number | 1500 | Time before partial sequences cancel |

Development

pnpm install
pnpm dev:prepare   # generates .nuxt for typing
pnpm dev           # runs the playground

Using with Claude Code (and other AI agents)

This package ships an AGENTS.md at its root with a dense, agent-friendly API summary — including behaviors that are easy to miss when scanning the source (e.g. action is excluded from structural diff, the cmdk:toggle id is reserved, exact-shortcut beats longer-sequence). Agents can read node_modules/@arcon.mobi/nuxt-cmdk/AGENTS.md to load the API in one shot.

If you'd like Claude Code to use the palette pattern by default in your project, drop something like this into your CLAUDE.md:

## Command palette and shortcuts

This project uses [@arcon.mobi/nuxt-cmdk](https://www.npmjs.com/package/@arcon.mobi/nuxt-cmdk).
- Register commands with `useCommands([...])` in the component that owns them — do not maintain a central registry.
- Always set an explicit `id` on each command.
- Read reactive state inside the `action` body, not by swapping the function reference.
- See `node_modules/@arcon.mobi/nuxt-cmdk/AGENTS.md` for the full API.

Credits

Pattern adapted from arcon-cpo's internal command system. Multi-step sequence semantics inspired by Linear.

License

MIT