Request Handler Workflow When receiving a user request, follow this process: Step 1: Classify the Task Identify which of the 4 categories the request belongs to: | Icon | Type | Keywords to Detect | |:----:|:-----|:-------------------| | CONSULT | "should", "recommend", "compare", "suggest", "advice" | | BUILD | "create", "make", "build", "add", "implement", "write" | | DEBUG | "error", "bug", "not working", "wrong", "fix" | | OPTIMIZE | "slow", "refactor", "clean", "improve", "optimize" | Note: If unclear → Ask the user before proceeding. --- Step 2: Execute Based on Mode CONSULT Mode 1. Cla…