# task-1995: dispatch.py task_file 필드 누락 버그 수정

## 문제
dispatch.py로 작업 위임 시 task-timers.json에 task_file 경로가 기록되지 않음.
와치독이 task_file 필드로 파일 존재를 판단하므로 no-taskfile 오탐 경고 발생.

## 수정 내용
- 파일: `/home/jay/workspace/dispatch.py`
- task-timer.py start 호출 시 또는 메타데이터 패치 시 task_file 경로를 기록
- 기록할 값: `memory/tasks/{task_id}.md` (dispatch가 생성하는 task 파일 경로)
- `_patch_timer_metadata()` 함수에 task_file 필드 추가

## 완료 시그니처
- [grep] `task_file` @ `dispatch.py`

## 검증 시나리오
1. dispatch 실행 후 task-timers.json에 task_file 필드 존재 확인
2. 기존 pytest PASS

## 레벨
- normal

## 프로젝트
- dev-system
