File size: 361 Bytes
064bfd6
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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