codev / src /commands /buddy /index.ts
chenbhao's picture
init: verspercode v0.1.0
064bfd6
Raw
History Blame
361 Bytes
import type { Command } from '../../commands.js'
const buddy = {
type: 'local',
name: 'buddy',
description: 'Hatch and manage your companion',
supportsNonInteractive: false,
argumentHint:
'[status|hatch [name]|pet|rename <name>|bio <text>|mute|unmute|dismiss|reset]',
load: () => import('./buddy.js'),
} satisfies Command
export default buddy