We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 71c64d1 + 5369f3e commit ecf7c7aCopy full SHA for ecf7c7a
1 file changed
plugins/warp/scripts/on-session-start.sh
@@ -2,6 +2,15 @@
2
# Hook script for Claude Code SessionStart event
3
# Shows welcome message, Warp detection status, and emits plugin version
4
5
+if ! command -v jq &>/dev/null; then
6
+ cat << 'EOF'
7
+{
8
+ "systemMessage": "⚠️ Warp notifications require jq — install it with your system package manager (e.g. brew install jq, apt install jq)"
9
+}
10
+EOF
11
+ exit 0
12
+fi
13
+
14
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
15
source "$SCRIPT_DIR/build-payload.sh"
16
0 commit comments