mmoore 4b3d2a2a96
Claude Security Plugin for Claude Code 0.10.0
🏠 Remote-Dev: homespace
2026-07-22 16:17:51 +00:00

8 lines
302 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
if python3 -c 'import sys' >/dev/null 2>&1; then
python3 "$(dirname -- "$0")/banner_notice.py"
else
printf '%s\n' '{"systemMessage":"\n⚠ Claude Security needs a working python3 (3.9 or newer) on PATH and could not run one. Install Python 3, then start a new session.\n"}'
fi
exit 0