-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem
debug/chat-send was a stopgap command created before chat/send was working properly. It's still being used throughout the codebase instead of the proper chat/send command.
Discovered Usage
Found 20+ files referencing debug/chat-send:
- Documentation (CLAUDE.md, roadmaps, implementation plans)
- Generated files (server/generated.ts, browser/generated.ts, command-schemas.json)
- Module documentation
Impact
- Using deprecated debug command instead of official API
- Inconsistent command patterns in documentation
- Confusion about which command to use
Solution
- Search for all instances of
debug/chat-sendin the codebase - Replace with
chat/send(the official command) - Verify chat/send works correctly for all use cases
- Remove debug/chat-send command entirely or mark as deprecated
Files to Update
grep -r "debug/chat-send" --files-with-matches | head -20Created by: Claude Code (bug tracking)
Timestamp: 2025-11-20T00:52:51Z
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request