Skip to main content

ai_agent/commands/
memory.rs

1// Source: /data/home/swei/claudecode/openclaudecode/src/commands/memory/memory.tsx
2use super::Command;
3
4pub fn create_memory_command() -> Command {
5    Command::local("memory", "Manage memory").argument_hint("[on|off|clear]")
6}