The "Create & Start" functionality has been successfully implemented. Here's what was done:
1. **Identified the existing components**: Found the [`TaskFormDialog`](file:///private/var/folders/kr/jdxkcn7129j376nrg0stj9zm0000gn/T/vk-a8ef-create-and/frontend/src/components/tasks/TaskFormDialog.tsx) with "Create & Start" button and the [`handleCreateAndStartTask`](file:///private/var/folders/kr/jdxkcn7129j376nrg0stj9zm0000gn/T/vk-a8ef-create-and/frontend/src/pages/project-tasks.tsx#L209) function.
2. **Modified the create & start handler**: Updated the [`handleCreateAndStartTask`](file:///private/var/folders/kr/jdxkcn7129j376nrg0stj9zm0000gn/T/vk-a8ef-create-and/frontend/src/pages/project-tasks.tsx#L209-L243) function to:
- Capture the created task from the API response
- Call `handleViewTaskDetails` to open the task in the details panel
- Update the URL to include the task ID
3. **Verified the implementation**: Both frontend and backend build successfully.
Now when users press "Create & Start" in the task creation dialog, the task will be created, execution will begin, and the task details panel will automatically open on the right side showing the newly created task.