claude-code/commands/memory/index.ts
kuberwastaken ec53fcbe95 init
2026-03-31 16:25:52 +05:30

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