We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d5b088 commit b42c8d1Copy full SHA for b42c8d1
backend/handlers/chat.ts
@@ -448,12 +448,8 @@ async function* executeClaudeCommand(
448
let abortController: AbortController;
449
450
try {
451
- // Process commands that start with '/'
452
- let processedMessage = message;
453
- if (message.startsWith("/")) {
454
- // Remove the '/' and send just the command
455
- processedMessage = message.substring(1);
456
- }
+ // Pass message as-is (including slash commands like /cost, /help, etc.)
+ const processedMessage = message;
457
458
// Prepare authentication environment
459
let authEnv: Record<string, string> = {};
0 commit comments