List all tasks with status and filtering
# /task-list Display all tasks in the current project with their status, priority, and dependencies. ## What This Command Does 1. Load tasks from `.tasks/tasks.json` 2. Apply any filters (status, priority) 3. Display formatted task list 4. Show summary statistics ## Arguments - `--status=<status>` - Filter by status (pending, in_progress, done, blocked, deferred) - `--priority=<priority>` - Filter by priority (high, medium, low) - `--with-subtasks` - Include subtasks in output - `--blocked` - Show only tasks with unsatisfied dependencies ## Prerequisites - Project must be initialized...