Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Warp terminal integration for Claude Code — native notifications via OSC 777 escape sequences. Hooks into SessionStart, Stop, Notification, PermissionRequest, UserPromptSubmit, and PostToolUse lifecycle events. Sends structured JSON payloads to Warp for session status, idle prompts, permission requests, and task completion.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -23% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -1% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -39% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 24% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -43% | 0% |
Native Warp terminal notifications for Claude Code sessions. Uses OSC 777 escape sequences to send structured JSON payloads to Warp's cli-agent notification system.
| Hook | Trigger | Purpose | |------|---------|---------| | SessionStart | startup, resume | Emit plugin version, detect Warp | | Stop | session end | Notify task completion with last query/response | | Notification | idle_prompt | Alert when Claude is idle and waiting for input | | PermissionRequest | tool approval | Notify when Claude needs permission to run a tool | | UserPromptSubmit | prompt sent | Transition session status back to running | | PostToolUse | tool complete | Transition session from blocked back to running |
Payloads follow the cli-agent notification schema with version negotiation:
json{ "v": 1, "agent": "claude", "event": "stop|session_start|idle_prompt|permission_request|prompt_submit|tool_complete", "session_id": "...", "cwd": "...", "project": "..." }
The should-use-structured.sh guard checks WARP_CLI_AGENT_PROTOCOL_VERSION and WARP_CLIENT_VERSION to avoid sending structured notifications to Warp builds that advertise protocol support but cannot render them.
build-payload.sh — Shared payload builder with protocol version negotiationshould-use-structured.sh — Feature detection for structured notification supportwarp-notify.sh — OSC 777 escape sequence emitter to /dev/ttyon-session-start.sh — SessionStart hook handleron-stop.sh — Stop hook with transcript parsing for last query/responseon-notification.sh — Idle prompt notificationon-permission-request.sh — Tool permission request with human-readable summaryon-prompt-submit.sh — Prompt submission status updateon-post-tool-use.sh — Post-tool-use status updatejq for JSON payload constructionOther measured skills in the registry, with their headline benchmark lift.