diff options
| author | Abhi <[email protected]> | 2025-07-15 21:59:16 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-16 01:59:16 +0000 |
| commit | b72e3dfb43acc3faf8099fa758a4283b83f32ff6 (patch) | |
| tree | 5759c8c1b2a6aaf87aa170798d873f5d276f6e59 /packages/cli/src/services/CommandService.ts | |
| parent | e88b9362dcd1092de01ce8efa413b5acd89ee620 (diff) | |
migrate compress command (#4271)
Diffstat (limited to 'packages/cli/src/services/CommandService.ts')
| -rw-r--r-- | packages/cli/src/services/CommandService.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/services/CommandService.ts b/packages/cli/src/services/CommandService.ts index 50f2c63a..6c81cd0c 100644 --- a/packages/cli/src/services/CommandService.ts +++ b/packages/cli/src/services/CommandService.ts @@ -14,6 +14,7 @@ import { chatCommand } from '../ui/commands/chatCommand.js'; import { statsCommand } from '../ui/commands/statsCommand.js'; import { privacyCommand } from '../ui/commands/privacyCommand.js'; import { aboutCommand } from '../ui/commands/aboutCommand.js'; +import { compressCommand } from '../ui/commands/compressCommand.js'; import { extensionsCommand } from '../ui/commands/extensionsCommand.js'; const loadBuiltInCommands = async (): Promise<SlashCommand[]> => [ @@ -21,6 +22,7 @@ const loadBuiltInCommands = async (): Promise<SlashCommand[]> => [ authCommand, chatCommand, clearCommand, + compressCommand, extensionsCommand, helpCommand, memoryCommand, |
