/ commands / memory / index.ts
index.ts
 1  import type { Command } from '../../commands.js'
 2  
 3  const memory: Command = {
 4    type: 'local-jsx',
 5    name: 'memory',
 6    description: 'Edit Claude memory files',
 7    load: () => import('./memory.js'),
 8  }
 9  
10  export default memory