mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-07-29 12:38:06 -03:00
8 lines
302 B
Bash
Executable File
8 lines
302 B
Bash
Executable File
#!/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
|