/ commands / skills / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const skills = {
 4    type: 'local-jsx',
 5    name: 'skills',
 6    description: 'List available skills',
 7    load: () => import('./skills.js'),
 8  } satisfies Command
 9  
10  export default skills