#!/usr/bin/env bash # which-muse.sh — classify the resolved `muse` binary as editable or installed. # See #185 Phase 1 (musehub staging) for context. Logic lives in which_muse.py # so it's directly unit-testable; this is a thin, PATH-friendly entrypoint. set -euo pipefail exec python3 "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/which_muse.py" "$@"