#!/bin/sh
# TMH post-merge hook: auto-sync after git pull/merge
#
# Install: cp scaffold/git_hooks/post-merge .git/hooks/post-merge && chmod +x .git/hooks/post-merge

# Check if tmh is available
if command -v tmh >/dev/null 2>&1; then
    echo "[TMH] Syncing team context after merge..."
    tmh sync --quiet 2>/dev/null || true
fi
