slug-code/commands/memory/index.ts
2026-03-31 12:46:52 -04:00

10 lines
220 B
TypeScript

import type { Command } from '../../commands.js'
const memory: Command = {
type: 'local-jsx',
name: 'memory',
description: 'Edit Claude memory files',
load: () => import('./memory.js'),
}
export default memory