Files
claude-code/commands/memory/index.ts
T
2026-04-01 17:32:37 +02:00

11 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