Linear Webhooks (Verify, Replay, DLQ)
Installation
SKILL.md
Linear Webhooks
Reference: https://linear.app/developers/webhooks
Signature verification
Linear signs every delivery with HMAC-SHA256:
Linear-Signature: <hex digest>
Verify in constant time:
import { createHmac, timingSafeEqual } from "node:crypto";