Update a task's status, assignment, or add comments
<task_id> [options...]# Update Task Update a task's properties. ## Arguments - `$1` - Task ID (required) - Remaining arguments are options in `--key value` format ## Options - `--status <pending|in-progress|blocked|in-review|completed>` - Change task status - `--assign <name>` - Assign to teammate - `--comment <text>` - Add a comment - `--blocked-by <id>` - Add blocking dependency ## Instructions Execute the following script using bash explicitly: Report what was changed and the current task state. ## Examples **Assign to teammate:** **Mark as completed:** **Start working on a task:** **Requ...