summaryrefslogtreecommitdiff
path: root/packages/cli/src/services/CommandService.ts
diff options
context:
space:
mode:
authorDevansh Sharma <[email protected]>2025-07-20 20:57:41 +0200
committerGitHub <[email protected]>2025-07-20 18:57:41 +0000
commit8f85ac7de027326c0440cc21122d6439687fab44 (patch)
tree10d98a1659313f66670e904915e8fa2c81a83cf0 /packages/cli/src/services/CommandService.ts
parenta01b1219a3e814c370f6827b81c9118f2cbc7a64 (diff)
feat: Added /copy command for copying output to clipboard with new Command Service approach (#3706)
Co-authored-by: Abhi <[email protected]> Co-authored-by: N. Taylor Mullen <[email protected]>
Diffstat (limited to 'packages/cli/src/services/CommandService.ts')
-rw-r--r--packages/cli/src/services/CommandService.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/services/CommandService.ts b/packages/cli/src/services/CommandService.ts
index def8cfcc..99eccbf2 100644
--- a/packages/cli/src/services/CommandService.ts
+++ b/packages/cli/src/services/CommandService.ts
@@ -9,6 +9,7 @@ import { SlashCommand } from '../ui/commands/types.js';
import { memoryCommand } from '../ui/commands/memoryCommand.js';
import { helpCommand } from '../ui/commands/helpCommand.js';
import { clearCommand } from '../ui/commands/clearCommand.js';
+import { copyCommand } from '../ui/commands/copyCommand.js';
import { corgiCommand } from '../ui/commands/corgiCommand.js';
import { docsCommand } from '../ui/commands/docsCommand.js';
import { mcpCommand } from '../ui/commands/mcpCommand.js';
@@ -36,6 +37,7 @@ const loadBuiltInCommands = async (
bugCommand,
chatCommand,
clearCommand,
+ copyCommand,
compressCommand,
corgiCommand,
docsCommand,