source dump of claude code
at main 11 lines 258 B view raw
1import type { Command } from '../../commands.js' 2 3const ide = { 4 type: 'local-jsx', 5 name: 'ide', 6 description: 'Manage IDE integrations and show status', 7 argumentHint: '[open]', 8 load: () => import('./ide.js'), 9} satisfies Command 10 11export default ide