source dump of claude code
at main 13 lines 337 B view raw
1import type { Command } from '../../commands.js' 2 3const rewind = { 4 description: `Restore the code and/or conversation to a previous point`, 5 name: 'rewind', 6 aliases: ['checkpoint'], 7 argumentHint: '', 8 type: 'local', 9 supportsNonInteractive: false, 10 load: () => import('./rewind.js'), 11} satisfies Command 12 13export default rewind