1
Capture one real event
Point the provider at your ingest URL and send once. That event is now stored and replayable indefinitely.
2
Forward the stream while you work
--since from-last-ack with --resume picks up where you left off across restarts, so a rebuild doesn’t replay the whole backlog.3
Replay one event, editing the payload
--edit opens the body in $EDITOR before forwarding — flip a field, add a line item, null something out, and fire it at your handler.An edited replay won’t re-verify against the provider’s original signature — you’re exercising
handler logic, not verification. Replay without
--edit to send the exact captured bytes.