Authoritative integration guide. Describes inbound auth, endpoint contracts, outbound callback semantics, retry schedule, and security constraints.
- Overview
- Admin CRUD
- Authentication
- Endpoint: POST /v1/webhooks/llm
- Endpoint: POST /v1/webhooks/message
- Idempotency
- Outbound Callbacks
- Channel Capability Matrix
- Rate Limits
- Edition Differences
- Security
- HMAC Receiver Examples
- Audit Payload Shape
- Encryption at Rest
GoClaw webhooks let external systems trigger agents or deliver messages through connected channels. Two webhook kinds exist:
| Kind | Endpoint | Purpose | Editions |
|---|---|---|---|
llm |
POST /v1/webhooks/llm |
Invoke an agent with a user prompt (sync or async) | Standard + Lite |
message |
POST /v1/webhooks/message |
Send a message to a user on a channel | Standard only |
Webhooks are tenant-scoped registry entries. Admins create them via the CRUD API; callers use the returned bearer token or HMAC signing key to authenticate inbound requests.
All admin endpoints require tenant-admin role. Bearer token authentication via Authorization: Bearer <admin-token>.
{
"name": "my-integration",
"kind": "llm",
"agent_id": "<uuid>",
"require_hmac": false,
"localhost_only": false,
"rate_limit_per_min": 60,
"scopes": [],
"ip_allowlist": []
}Fields:
| Field | Type | Required | Notes |
|---|---|---|---|
name |
string | yes | Max 100 chars |
kind |
string | yes | "llm" or "message" |
agent_id |
UUID | for llm kind |
Agent to invoke |
channel_id |
UUID | optional | Pin webhook to a specific channel instance (message kind) |
require_hmac |
bool | no | Force HMAC-only auth (disable bearer) |
localhost_only |
bool | no | Restrict callers to 127.0.0.1/::1. Auto-set on Lite edition |
rate_limit_per_min |
int | no | Per-webhook cap; 0 = use tenant default |
scopes |
[]string | no | Reserved for future scope enforcement |
ip_allowlist |
[]string | no | Allowlist of IPs or CIDR ranges. Empty = allow all. See IP Allowlist |
Response — 201 Created
{
"id": "<uuid>",
"tenant_id": "<uuid>",
"agent_id": "<uuid>",
"name": "my-integration",
"kind": "llm",
"secret_prefix": "wh_ABCD",
"secret": "wh_ABCDEFGHIJKLMNOPQRSTUVWXYZ234567ABCDEFGH",
"hmac_signing_key": "a3f4...hex64chars",
"scopes": [],
"rate_limit_per_min": 60,
"ip_allowlist": [],
"require_hmac": false,
"localhost_only": false,
"created_at": "2026-04-21T12:00:00Z"
}secret and hmac_signing_key are returned exactly once — on create and rotate. Store them securely; they cannot be retrieved again.
secret— raw bearer token. Send asAuthorization: Bearer wh_...hmac_signing_key—hex(SHA-256(secret)). Used as the HMAC signing key forX-GoClaw-Signature. To sign:HMAC_SHA256(key=hex.Decode(hmac_signing_key), payload="{ts}.{body}")
Query params (all optional):
agent_id=<uuid>— filter by bound agent.q=<text>— case-insensitive match on name, or prefix match onsecret_prefix.include_revoked=true— include revoked webhooks (default: excluded).limit— page size (default 20, max 200).offset— page offset (default 0).
Returns a paginated envelope. secret and hmac_signing_key are not included.
{
"items": [ /* webhook objects */ ],
"total": 42,
"limit": 20,
"offset": 0
}Delivery history for a webhook. Query params (all optional): status (queued|running|done|failed|dead), limit (default 20, max 200), offset. Returns the same {items, total, limit, offset} envelope.
Returns full webhook object (no secret).
Partial update. All fields optional. Cannot change kind.
{
"name": "new-name",
"require_hmac": true,
"localhost_only": false
}Generates a new secret immediately. No grace window — the old secret is invalidated the moment rotate completes. Coordinate with callers before rotating.
Response — 200 OK
{
"id": "<uuid>",
"secret": "wh_NEW...",
"hmac_signing_key": "newhex...",
"secret_prefix": "wh_NEWX"
}Marks the webhook as revoked. All subsequent inbound requests with its secret return 401. Action is irreversible.
Two authentication modes. The webhook row's require_hmac field determines which are accepted.
Authorization: Bearer wh_ABCDEFGHIJKLMNOPQRSTUVWXYZ234567ABCDEFGH
The gateway SHA-256 hashes the token and looks up secret_hash in the database. Constant-time comparison prevents timing oracle attacks.
Bearer auth is disabled when require_hmac=true on the webhook row.
Recommended for Standard edition integrations. Provides both authentication and payload integrity.
Required headers:
X-Webhook-Id: <webhook-uuid>
X-GoClaw-Signature: t=<unix_seconds>,v1=<hmac_hex>
Content-Type: application/json
Signing algorithm:
signing_key = hex.Decode(hmac_signing_key) // decode the hex field to raw bytes
payload = "{unix_ts}.{request_body_bytes}"
signature = HMAC_SHA256(key=signing_key, data=payload)
header = "t={unix_ts},v1={hex(signature)}"
Timestamp skew: The gateway rejects requests where |now - t| > 300 seconds. Ensure your clock is synchronized (NTP).
Key contract: hmac_signing_key = hex(SHA-256(raw_secret)). The signing key is the decoded bytes of this hex string. The raw secret is never stored — only its hash.
After a valid HMAC signature is accepted, the gateway records sha256(tenant_id + "|" + signature_hex) in an in-memory nonce cache with a 320-second TTL (> 2× skew window). Any request replaying the same signature within the window is rejected with HTTP 401 and logged as security.webhook.hmac_replay.
Single-node caveat: The nonce cache is per-process and not distributed. In a multi-node deployment a replay could succeed on a different node. This is an accepted trade-off for the current single-process gateway architecture.
When ip_allowlist is non-empty, the gateway checks the request's source IP (from RemoteAddr) against every entry after successful auth. Each entry can be:
- A single IP address:
"1.2.3.4","::1" - A CIDR range:
"10.0.0.0/8","2001:db8::/32"
An empty ip_allowlist (the default) allows requests from any source — back-compat with existing webhooks.
Rejected requests return HTTP 403 and are logged as security.webhook.ip_denied.
Proxy note: X-Forwarded-For is not trusted — only RemoteAddr is used. If your gateway sits behind a reverse proxy, ensure the proxy is configured to terminate TLS and handle allowlist enforcement itself, or accept that RemoteAddr will be the proxy IP.
Triggers an agent with an input prompt. Available in all editions.
Auth: Bearer or HMAC (per webhook require_hmac setting). Webhook must have kind="llm".
{
"input": "Summarize the latest metrics",
"session_key": "user-123-session",
"user_id": "ext-user-456",
"model": "claude-opus-4-5",
"mode": "sync",
"callback_url": "",
"metadata": {}
}| Field | Type | Required | Notes |
|---|---|---|---|
input |
string or array | yes | Plain string, or [{role, content}] array |
session_key |
string | no | Stable key for multi-turn conversation continuity |
user_id |
string | no | External user identifier for scoping |
model |
string | no | Per-request model override |
mode |
string | no | "sync" (default) or "async" |
callback_url |
string | required if async | HTTPS URL for delivery. Validated against SSRF policy |
metadata |
object | no | Echoed to callback payload (max 8 KB) |
Input formats:
// Plain string
"input": "Hello agent"
// Message array
"input": [
{"role": "system", "content": "You are a concise assistant"},
{"role": "user", "content": "List 3 key metrics"}
]{
"call_id": "<uuid>",
"agent_id": "<uuid>",
"output": "Here are the metrics: ...",
"usage": {
"prompt_tokens": 250,
"completion_tokens": 220,
"total_tokens": 470,
"cache_read_input_tokens": 120,
"cache_creation_input_tokens": 30,
"prompt_tokens_include_cached_segments": true
},
"total_cost_usd": 0.0279,
"calls": [
{
"type": "llm_call", "name": "9router/cx/gpt-5.6 #1",
"provider": "9router", "model": "cx/gpt-5.6",
"prompt_tokens": 150, "completion_tokens": 200, "total_tokens": 350,
"cache_read_input_tokens": 120, "cache_creation_input_tokens": 30,
"prompt_tokens_include_cached_segments": true, "cost_usd": 0.0187
},
{
"type": "tool_call", "name": "read_image",
"provider": "9router", "model": "cx/gpt-5.5",
"prompt_tokens": 100, "completion_tokens": 20, "total_tokens": 120,
"cost_usd": 0.0092
}
],
"finish_reason": "stop"
}
cache_read_input_tokensandcache_creation_input_tokensare present only when prompt caching was active (omitted otherwise). Whenprompt_tokens_include_cached_segmentsistrue,prompt_tokensalready counts the cached segments, so non-cached input =prompt_tokens - cache_read_input_tokens.
calls[]lists every LLM call and every tool that makes a direct internal LLM call (e.g.read_image,read_video), each attributed to itsprovider/modelwith its own tokens andcost_usd.usageis the sum of all calls — so it includes tool-internal LLM tokens — andtotal_cost_usdis the sum ofcalls[].cost_usd(best-effort;0when a model has no configured pricing).Note: token spend inside nested agent runs (
subagent/delegatetools, which spawn a separate child agent loop) is not itemized incalls[]and not included inusage/total_cost_usd— consistent with how the child run's usage has always been excluded from the parent's totals.
Sync mode times out after the configured deadline (default 600s). On timeout: 504 Gateway Timeout with webhook.llm_timeout.
Both webhook agent-run deadlines default to 600s and are capped at 3600s. Configure via config.json or environment variables (env overrides config):
| Setting (config) | Env var | Applies to | Default |
|---|---|---|---|
gateway.webhook_sync_timeout_sec |
GOCLAW_WEBHOOK_SYNC_TIMEOUT_SEC |
sync + admin test calls | 600 |
gateway.webhook_async_timeout_sec |
GOCLAW_WEBHOOK_ASYNC_TIMEOUT_SEC |
async worker runs | 600 |
Sync mode holds the HTTP connection open for the whole run — a value above an upstream proxy/load-balancer read timeout may be cut before the agent finishes. Async mode returns
202immediately and runs in the background, so a longer deadline is safe.
Server-side webhook agent runs (sync, async, and admin test) stream provider responses internally by default. This lets OpenAI-compatible providers/routers populate and serve their prompt cache for the large, stable system+tools+history prefix — non-streaming requests are not cached by some routers, so webhook runs would otherwise pay full input-token price on every turn even with a stable session. The response returned to the caller is unchanged (the gateway assembles the streamed chunks into the same JSON/SSE payload).
| Setting (config) | Env var | Applies to | Default |
|---|---|---|---|
gateway.webhook_stream |
GOCLAW_WEBHOOK_STREAM |
sync + async + test webhook agent runs | true |
Set to
falseto restore non-streaming requests (e.g. for a provider that misbehaves when streaming). Caching forcache_control-style providers (Anthropic/DashScope) is unaffected by this flag.
{
"call_id": "<uuid>",
"status": "queued"
}The agent runs asynchronously. Results are delivered via outbound callback (see Section 7).
| Status | Code | When |
|---|---|---|
| 400 | invalid_request |
Missing input, bad mode, missing callback_url for async |
| 401 | — | Auth failure (bearer invalid, HMAC mismatch, revoked, HMAC replay) |
| 403 | unauthorized |
localhost_only violation, IP allowlist denial, kind mismatch, tenant mismatch |
| 404 | not_found |
Agent not found |
| 429 | — | Rate limit exceeded; Retry-After: 60 header set |
| 503 | — | Webhook processing lane at capacity |
| 504 | — | LLM timeout (sync mode only) |
Sends a message to a user on a connected channel. Standard edition only — not available on Lite.
Auth: Bearer or HMAC (per webhook require_hmac setting). Webhook must have kind="message".
{
"channel_name": "telegram-prod",
"chat_id": "123456789",
"content": "Hello from the integration!",
"media_url": "https://example.com/image.jpg",
"media_caption": "Optional caption",
"fallback_to_text": false
}| Field | Type | Required | Notes |
|---|---|---|---|
channel_name |
string | yes (unless webhook has bound channel_id) |
Channel instance name |
chat_id |
string | yes | Channel-specific recipient ID |
content |
string | yes (unless media_url) |
Text body; max 16 KB |
media_url |
string | no | HTTPS URL to media file. SSRF-guarded + HEAD-probed |
media_caption |
string | no | Caption for media |
fallback_to_text |
bool | no | If true, send text-only when channel can't handle media |
{
"call_id": "<uuid>",
"status": "sent",
"channel_name": "telegram-prod",
"chat_id": "123456789",
"warning": ""
}warning is set to "media_not_supported_fallback_text" when fallback_to_text=true and media was dropped.
| Status | Code | When |
|---|---|---|
| 400 | invalid_request |
Missing chat_id, content, SSRF-blocked media_url |
| 403 | unauthorized |
Channel belongs to different tenant |
| 404 | not_found |
Channel instance not found |
| 415 | invalid_request |
MIME type denied for media |
| 429 | — | Rate limit exceeded |
| 501 | invalid_request |
Channel does not support media and fallback_to_text=false |
All webhook endpoints support idempotency via the Idempotency-Key header.
Idempotency-Key: <opaque-string-max-255-chars>
Semantics:
- First request with a given key: processed normally.
- Subsequent requests with the same key and identical body: return the cached response immediately with
200 OK(no duplicate processing). - Subsequent requests with the same key but different body: return
409 Conflictwithwebhook.idempotency_conflict. - Keys expire after 24 hours (implementation:
webhook_callstable TTL).
Recommendation: Use a UUID or hash of request content as the key. Re-send the exact same request body on retry.
Async LLM calls (mode=async) deliver results to the callback_url via HTTP POST.
Callbacks are at-least-once. Receivers must be idempotent.
Every delivery attempt carries:
X-Webhook-Delivery-Id: <uuid> -- stable across retries
X-Webhook-Signature: t=<unix>,v1=<hex> -- recomputed per attempt (timestamp differs)
Content-Type: application/json
User-Agent: goclaw-webhook/1
X-Webhook-Delivery-Id is stable for all retry attempts of the same call. Receivers SHOULD deduplicate by this ID within a window of at least 24 hours.
X-Webhook-Signature uses the same HMAC algorithm as inbound auth. Verify with the hmac_signing_key from the create response.
{
"call_id": "<uuid>",
"delivery_id": "<uuid>",
"agent_id": "<uuid>",
"status": "done",
"output": "Agent response text...",
"usage": {
"prompt_tokens": 250,
"completion_tokens": 220,
"total_tokens": 470,
"cache_read_input_tokens": 120,
"cache_creation_input_tokens": 30,
"prompt_tokens_include_cached_segments": true
},
"total_cost_usd": 0.0279,
"calls": [
{
"type": "llm_call", "name": "9router/cx/gpt-5.6 #1",
"provider": "9router", "model": "cx/gpt-5.6",
"prompt_tokens": 150, "completion_tokens": 200, "total_tokens": 350,
"cache_read_input_tokens": 120, "cache_creation_input_tokens": 30,
"prompt_tokens_include_cached_segments": true, "cost_usd": 0.0187
},
{
"type": "tool_call", "name": "read_image",
"provider": "9router", "model": "cx/gpt-5.5",
"prompt_tokens": 100, "completion_tokens": 20, "total_tokens": 120,
"cost_usd": 0.0092
}
],
"metadata": {},
"error": ""
}
calls[]andtotal_cost_usdon the async callback follow the same semantics as the sync response above:usageis the sum of allcalls[](including tool-internal LLM calls), each call carries its ownprovider/model/tokens/cost_usd.
status is "done" on success, "failed" on agent error. error is non-empty on failure.
| Attempt | Delay (±10% jitter) |
|---|---|
| 1 | 30 seconds |
| 2 | 2 minutes |
| 3 | 10 minutes |
| 4 | 1 hour |
| 5 | 6 hours |
After 5 failed attempts the row moves to status=dead. No further retries.
Retry-After header: If the receiver returns 429 with a Retry-After header, the worker respects it (capped at 6 hours).
Permanent failure: 4xx responses (except 429) are treated as permanent — no retry.
Success: Any 2xx response marks the delivery as done.
// Go — verify X-Webhook-Signature on your callback endpoint
import (
"crypto/hmac"
"crypto/sha256"
"encoding/hex"
"fmt"
"net/http"
"strconv"
"strings"
"time"
)
func verifyWebhookSignature(r *http.Request, body []byte, hmacSigningKey string) error {
sigHeader := r.Header.Get("X-Webhook-Signature")
// Parse "t=<unix>,v1=<hex>"
var ts int64
var sigHex string
for _, part := range strings.Split(sigHeader, ",") {
if strings.HasPrefix(part, "t=") {
ts, _ = strconv.ParseInt(strings.TrimPrefix(part, "t="), 10, 64)
}
if strings.HasPrefix(part, "v1=") {
sigHex = strings.TrimPrefix(part, "v1=")
}
}
if ts == 0 || sigHex == "" {
return fmt.Errorf("missing signature header fields")
}
// Verify timestamp skew
if abs(time.Now().Unix()-ts) > 300 {
return fmt.Errorf("timestamp skew too large")
}
// Decode HMAC key from hex
key, err := hex.DecodeString(hmacSigningKey)
if err != nil {
return err
}
// Recompute HMAC
payload := append([]byte(fmt.Sprintf("%d.", ts)), body...)
mac := hmac.New(sha256.New, key)
mac.Write(payload)
expected := mac.Sum(nil)
// Decode received sig
received, err := hex.DecodeString(sigHex)
if err != nil || !hmac.Equal(expected, received) {
return fmt.Errorf("signature mismatch")
}
return nil
}Relevant for POST /v1/webhooks/message with media_url.
| Channel Type | Text | Media |
|---|---|---|
telegram |
yes | yes |
discord |
yes | yes |
whatsapp |
yes | yes |
feishu |
yes | yes |
slack |
yes | yes |
zalo_personal |
yes | yes |
pancake |
yes | yes |
facebook |
yes | yes |
zalo_oa |
yes | no |
When media_url is sent to a non-media-capable channel:
fallback_to_text=true→ text content delivered,warningfield setfallback_to_text=false(default) →501 Not Implemented
Rate limiting is two-tier:
| Tier | Cap | Notes |
|---|---|---|
| Per-webhook | rate_limit_per_min field (0 = disabled) |
Configured per webhook row |
| Per-tenant | Platform default (configurable) | Applies across all webhooks for a tenant |
Both tiers must pass. If either rejects the request, 429 Too Many Requests is returned with Retry-After: 60.
| Feature | Standard | Lite |
|---|---|---|
/v1/webhooks/llm |
Available | Available (localhost_only forced) |
/v1/webhooks/message |
Available | Disabled |
localhost_only=false |
Configurable | Always true; cannot be unset |
kind="message" webhook creation |
Allowed | Rejected (403) |
On Lite, all webhooks are automatically created with localhost_only=true regardless of the request field. Attempting to unset localhost_only via PATCH returns 403.
media_urlin message webhooks: validated against SSRF policy + HEAD-probed before fetch.callback_urlin async LLM webhooks: validated at enqueue time and re-validated at delivery time (prevents DNS rebinding attacks).- Log event:
security.webhook.ssrf_blocked/security.webhook.callback_ssrf_blocked.
Secrets are never stored in plaintext. Only SHA-256(secret) is kept in the database. Secrets are never logged.
Requests with |now - t| > 300 seconds are rejected immediately (before any DB lookup) to prevent replay attacks.
- Agent must belong to the webhook's tenant.
- Channel must belong to the webhook's tenant (or be a legacy config-based channel).
- Log events:
security.webhook.tenant_mismatch,security.webhook.tenant_leak_attempt.
No grace window. The old secret is invalidated immediately when POST /v1/webhooks/{id}/rotate completes. Coordinate with callers before rotating in production.
WEBHOOK_HMAC_KEY="a3f4...your_hmac_signing_key_hex"
WEBHOOK_ID="your-webhook-uuid"
BODY='{"input":"hello","mode":"sync"}'
TS=$(date +%s)
PAYLOAD="${TS}.${BODY}"
SIG=$(echo -n "$PAYLOAD" | openssl dgst -sha256 -mac HMAC \
-macopt "hexkey:${WEBHOOK_HMAC_KEY}" | awk '{print $2}')
curl -X POST https://example.com/v1/webhooks/llm \
-H "Content-Type: application/json" \
-H "X-Webhook-Id: ${WEBHOOK_ID}" \
-H "X-GoClaw-Signature: t=${TS},v1=${SIG}" \
-d "$BODY"curl -X POST https://example.com/v1/webhooks/llm \
-H "Authorization: Bearer wh_ABCDEFGHIJKLMNOPQRSTUVWXYZ234567ABCDEFGH" \
-H "Content-Type: application/json" \
-d '{"input":"hi","mode":"sync"}'const crypto = require('crypto');
function signWebhookRequest(body, hmacSigningKeyHex) {
const ts = Math.floor(Date.now() / 1000);
const keyBytes = Buffer.from(hmacSigningKeyHex, 'hex');
const payload = Buffer.concat([
Buffer.from(`${ts}.`),
Buffer.isBuffer(body) ? body : Buffer.from(body),
]);
const sig = crypto.createHmac('sha256', keyBytes).update(payload).digest('hex');
return { ts, signature: `t=${ts},v1=${sig}` };
}
// Usage
const body = JSON.stringify({ input: 'hello', mode: 'sync' });
const { signature } = signWebhookRequest(body, process.env.WEBHOOK_HMAC_KEY);
await fetch('https://example.com/v1/webhooks/llm', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Webhook-Id': process.env.WEBHOOK_ID,
'X-GoClaw-Signature': signature,
},
body,
});import hashlib
import hmac
import json
import time
import requests
def sign_webhook(body: bytes, hmac_signing_key_hex: str) -> str:
ts = int(time.time())
key = bytes.fromhex(hmac_signing_key_hex)
payload = f"{ts}.".encode() + body
sig = hmac.new(key, payload, hashlib.sha256).hexdigest()
return f"t={ts},v1={sig}"
body = json.dumps({"input": "hello", "mode": "sync"}).encode()
signature = sign_webhook(body, os.environ["WEBHOOK_HMAC_KEY"])
requests.post(
"https://example.com/v1/webhooks/llm",
headers={
"Content-Type": "application/json",
"X-Webhook-Id": os.environ["WEBHOOK_ID"],
"X-GoClaw-Signature": signature,
},
data=body,
)Every call creates a row in webhook_calls with a request_payload column (jsonb on PostgreSQL, TEXT on SQLite). The canonical shape is:
{
"body_hash": "<sha256-hex-64-chars>",
"meta": { ... handler-specific fields ... }
}SHA-256 hex digest of the raw request body bytes. Used by the idempotency subsystem to detect body-mismatch replays (same Idempotency-Key, different body → 409 Conflict).
POST /v1/webhooks/llm — meta mirrors the decoded request fields:
{
"input": "<raw JSON — string or message array>",
"session_key": "optional-key",
"user_id": "optional-uid",
"model": "optional-override",
"mode": "sync",
"callback_url": "",
"metadata": null
}POST /v1/webhooks/message — meta contains delivery context:
{
"channel_name": "telegram-main",
"chat_id": "123456789",
"has_media": false
}body_hashis always exactly 64 lowercase hex characters. Any stored value that does not match this format is treated as "no hash" by the idempotency checker (fail-closed).- External consumers reading
request_payloadvia SQL should parse it as JSON, not as raw bytes. - Shape is stable across LLM and message handler calls — only
metacontents differ.
The webhook secret is encrypted at rest using AES-256-GCM, keyed by the environment variable GOCLAW_ENCRYPTION_KEY (required for webhook HMAC auth to work). Only the database stores encrypted secret material.
Key contract (POST /v1/webhooks create/rotate response):
{
"secret": "wh_ABCDEFGHIJKLMNOPQRSTUVWXYZ234567ABCDEFGH",
"hmac_signing_key": "a3f4...hex64chars"
}secret— Raw bearer token in plaintext. Clients must store securely on their end; the gateway will not retrieve it again.hmac_signing_key— Derived ashex(SHA-256(secret)). This is also returned once and should be stored securely by clients.
Database storage:
webhooks.secret_hashcolumn:SHA-256(secret)in hex. Used for bearer auth lookups (constant-time comparison).webhooks.encrypted_secretcolumn (PG/SQLite): AES-256-GCM encrypted raw secret. Used to support lease-token reclamation and idempotency recovery on stale calls.- Environment variable
GOCLAW_ENCRYPTION_KEY— required for webhook processing. Same key also encrypts LLM provider API keys. Format: base64-encoded 32-byte key.
Migration notes:
- PostgreSQL: Migration
000058addedencrypted_secretcolumn. - SQLite (Lite edition): Schema v28 includes encrypted secret support.
DB compromise impact:
A database-layer attacker with read-only access to webhooks table cannot derive the raw secret or hmac_signing_key:
secret_hashalone does not reverse-engineer the secret (cryptographic hash).encrypted_secretrequiresGOCLAW_ENCRYPTION_KEYto decrypt (environment-only, not in database).- Attackers gain no actionable HMAC material.
GOCLAW_ENCRYPTION_KEY must be:
- Stored securely (e.g., sealed in a secret manager, not in
config.json). - Same across all gateway instances in a cluster (standard multi-replica key).
- Rotated as part of incident response — rotation requires re-encrypting all webhook secrets (automated migration).