index.ts
1 import type { Command } from '../../commands.js' 2 3 const rename = { 4 type: 'local-jsx', 5 name: 'rename', 6 description: 'Rename the current conversation', 7 immediate: true, 8 argumentHint: '[name]', 9 load: () => import('./rename.js'), 10 } satisfies Command 11 12 export default rename