source dump of claude code
at main 12 lines 288 B view raw
1import type { Command } from '../../commands.js' 2 3const heapDump = { 4 type: 'local', 5 name: 'heapdump', 6 description: 'Dump the JS heap to ~/Desktop', 7 isHidden: true, 8 supportsNonInteractive: true, 9 load: () => import('./heapdump.js'), 10} satisfies Command 11 12export default heapDump