We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c64d1 commit 304b9b8Copy full SHA for 304b9b8
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: brew 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