List all tasks for the current team, with optional filtering.
# List Tasks List all tasks for the current team, with optional filtering. ## Arguments - `--status <status>` - Filter by status (pending, in-progress, blocked, in-review, completed) - `--owner <name>` - Filter by owner/assignee name - `--assignee <name>` - Alias for --owner - `--blocked` - Show only tasks with blocking dependencies ## Instructions Execute the following script using bash explicitly: Present the task list clearly, organizing by: 1. Open unassigned tasks (available for claiming) 2. Open assigned tasks (in progress) 3. Blocked tasks (waiting on dependencies) 4. Resolv...