Coordinate access to team task directories using .processing marker files. Use before accessing a worker's task workspace to prevent conflicts when both Leader and Worker might modify files simultaneously.
Prevents conflicts when Leader and Workers access the same task directory under teams/{team-name}/tasks/.
.processing MarkerLocation: teams/{team-name}/tasks/{task-id}/.processing
{
"processor": "leader-name",
"started_at": "2026-03-31T10:30:00Z",
"expires_at": "2026-03-31T10:45:00Z"
}
Auto-expires after 15 minutes (default).
check-processing-marker.sh <task-id>
create-processing-marker.sh <task-id> <your-name>remove-processing-marker.sh <task-id># Check if safe to modify
bash ./skills/team-task-coordination/scripts/check-processing-marker.sh <task-id>
# Create marker before modifying
bash ./skills/team-task-coordination/scripts/create-processing-marker.sh <task-id> <processor-name> [timeout-mins]
# Remove marker after done
bash ./skills/team-task-coordination/scripts/remove-processing-marker.sh <task-id>