13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const buddy = {
|
|
type: 'local-jsx',
|
|
name: 'buddy',
|
|
description: 'Hatch, pet, and manage your Open Claude companion',
|
|
immediate: true,
|
|
argumentHint: '[status|mute|unmute|help]',
|
|
load: () => import('./buddy.js'),
|
|
} satisfies Command
|
|
|
|
export default buddy
|