Refactor command handling into a unified parser that separates command and arguments cleanly.
Goal: Turn raw text messages like:
.say hello world
Into structured format:
{ command: "say", args: ["hello", "world"] }
Acceptance Criteria
All commands use new parser
Code readability improved
No broken existing commands
Labels: medium, refactor, quality
Refactor command handling into a unified parser that separates command and arguments cleanly.
Goal: Turn raw text messages like:
.say hello world
Into structured format:
{ command: "say", args: ["hello", "world"] }
Acceptance Criteria
All commands use new parser
Code readability improved
No broken existing commands
Labels: medium, refactor, quality