#!/usr/bin/env bash
# File: bin/test-marker-stats
# Purpose: Provide a slash-command friendly wrapper that reports pytest marker counts.
# Context: Invokes scripts/report_marker_stats.py for Phase 1 marker monitoring.
set -euo pipefail

SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
ROOT_DIR="$( cd -- "${SCRIPT_DIR}/.." &> /dev/null && pwd )"

cd "${ROOT_DIR}"
exec python3 scripts/report_marker_stats.py "$@"
