#!/usr/bin/env bash
# Repo-aware `find` shim (A16). Shadows the real find when this dir is first on
# $PATH. Delegates to _shim.sh (allow/deny + recursion-safe exec).
PRISM_SHIM_VERB=find
export PRISM_SHIM_VERB
# shellcheck source=_shim.sh
. "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)/_shim.sh" "$@"
