source dump of claude code
at main 11 lines 260 B view raw
1import type { Command } from '../../commands.js' 2 3const addDir = { 4 type: 'local-jsx', 5 name: 'add-dir', 6 description: 'Add a new working directory', 7 argumentHint: '<path>', 8 load: () => import('./add-dir.js'), 9} satisfies Command 10 11export default addDir