import type { Command } from '../../types/command.js'; const localMemoryCommand: Command = { type: 'local-jsx', name: 'local-memory', aliases: ['lm'], description: 'Manage local memory stores for notes and context. Stored in ~/.claude/local-memory/ — no API key required.', // Avoid `` / `` / `` in hint — REPL markdown renderer // strips angle-bracketed words as HTML tags. Uppercase placeholders are // visible. Same fix as /local-vault. argumentHint: 'list | create STORE | store STORE KEY VALUE | fetch STORE KEY | entries STORE | archive STORE', isHidden: false, isEnabled: () => true, bridgeSafe: true, load: async () => { const m = await import('./launchLocalMemory.js'); return { call: m.callLocalMemory }; }, }; export default localMemoryCommand;