#!/usr/bin/env bash
# Fake `claude` binary shim used by the compliance test.
# Reads stdin (ignored), echoes a canned JSON response, exits 0.
cat > /dev/null
echo '{"text":"ok"}'
exit 0
