source dump of claude code
at main 12 lines 281 B view raw
1import type { Command } from '../../commands.js' 2 3const 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 12export default rename