ai_agent/commands/compact.rs
1// Source: /data/home/swei/claudecode/openclaudecode/src/commands/compact/compact.ts
2use super::Command;
3
4pub fn create_compact_command() -> Command {
5 Command::local("compact", "Compact the conversation to save space")
6}
7
8pub fn create_summarize_command() -> Command {
9 Command::local("summarize", "Summarize the current conversation")
10}