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