#!/bin/bash HOOK_INPUT=$(cat) curl -s -X POST "http://127.0.0.1:8766/hooks/task-complete" \ -H "Content-Type: application/json" \ -d "$HOOK_INPUT" > /dev/null 2>&1 || true exit 0