#!/usr/bin/env sh
# --- BEGIN CONDUIT LEFTHOOK GATE ---
# Lefthook must run before Beads so failures stop before Beads exports/stages state.
run_lefthook_pre_commit() {
  if [ "$LEFTHOOK" = "0" ] || [ "$LEFTHOOK" = "false" ]; then
    return 0
  fi

  if [ -n "$LEFTHOOK_BIN" ]; then
    "$LEFTHOOK_BIN" run pre-commit "$@"
  elif command -v lefthook >/dev/null 2>&1; then
    lefthook run pre-commit "$@"
  elif [ -x "node_modules/.bin/lefthook" ]; then
    node_modules/.bin/lefthook run pre-commit "$@"
  elif command -v pnpm >/dev/null 2>&1; then
    pnpm exec lefthook run pre-commit "$@"
  else
    echo >&2 "lefthook: not found; run pnpm install"
    return 127
  fi
}

run_lefthook_pre_commit "$@"
_lefthook_exit=$?
if [ "$_lefthook_exit" -ne 0 ]; then
  exit "$_lefthook_exit"
fi
# --- END CONDUIT LEFTHOOK GATE ---
# --- BEGIN BEADS INTEGRATION v1.0.4 ---
# This section is managed by beads. Do not remove these markers.
if command -v bd >/dev/null 2>&1; then
  export BD_GIT_HOOK=1
  _bd_timeout=${BEADS_HOOK_TIMEOUT:-300}
  if command -v timeout >/dev/null 2>&1; then
    timeout "$_bd_timeout" bd hooks run pre-commit "$@"
    _bd_exit=$?
    if [ $_bd_exit -eq 124 ]; then
      echo >&2 "beads: hook 'pre-commit' timed out after ${_bd_timeout}s — continuing without beads"
      _bd_exit=0
    fi
  else
    bd hooks run pre-commit "$@"
    _bd_exit=$?
  fi
  if [ $_bd_exit -eq 3 ]; then
    echo >&2 "beads: database not initialized — skipping hook 'pre-commit'"
    _bd_exit=0
  fi
  if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi
fi
# --- END BEADS INTEGRATION v1.0.4 ---
