Context
The memory subsystem was gutted in the middleware fork (agents bring own memory). But src/cli/memory-cli.ts (823 lines) and its test (568 lines) survived — they import from the gutted src/memory/ module. Commands: memory status/search/index/rebuild/list/clear. Found during MBP deep dive audit of src/cli/.
Scope
- Delete
src/cli/memory-cli.ts (823 lines)
- Delete
src/cli/memory-cli.test.ts (568 lines)
- Remove
memory registration entry from src/cli/program/register.subclis.ts
- Verify no other files import from memory-cli
Acceptance Criteria
Size
~1,391 lines removed.
Context
The memory subsystem was gutted in the middleware fork (agents bring own memory). But
src/cli/memory-cli.ts(823 lines) and its test (568 lines) survived — they import from the guttedsrc/memory/module. Commands:memory status/search/index/rebuild/list/clear. Found during MBP deep dive audit ofsrc/cli/.Scope
src/cli/memory-cli.ts(823 lines)src/cli/memory-cli.test.ts(568 lines)memoryregistration entry fromsrc/cli/program/register.subclis.tsAcceptance Criteria
grep -r "memory-cli" src/cli/returns nothinggrep -r "from.*memory" src/cli/returns no live imports (only if unrelated)Size
~1,391 lines removed.