@atheory-ai/kitsune-modules-command-palette
v0.1.0
Published
Command palette registry module for Kitsune.
Downloads
104
Maintainers
Readme
@atheory-ai/kitsune-modules-command-palette
Command palette registry capability module for Kitsune.
@atheory-ai/kitsune-modules-command-palette registers, searches, and runs command actions through a Kitsune runtime.
Install
pnpm add @atheory-ai/kitsune-modules-command-paletteUse
import { createKitRuntime } from '@atheory-ai/kitsune-core'
import { commandPaletteModule } from '@atheory-ai/kitsune-modules-command-palette'
const runtime = createKitRuntime()
await runtime.install(commandPaletteModule({
actions: [
{ id: 'new-note', label: 'New note', command: { type: 'note.create' } },
],
}))
await runtime.start()Commands
command_palette.registercommand_palette.searchcommand_palette.run
Exports
commandPaletteModuleCommandPaletteToken- Command palette action, module option, and service types
Documentation
See the Kitsune docs at https://kitsune.atheory.ai.
License
Apache-2.0
