一键导入
webhook-builder
Design and implement webhook systems with payload signing, retry logic, and delivery monitoring
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Design and implement webhook systems with payload signing, retry logic, and delivery monitoring
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Orchestrate multi-agent teams in Claude Code — set up coordinated sessions with task delegation, inter-agent communication, and parallel execution
Leverage Claude Code's ultra-deep planning mode for complex architecture decisions, multi-file refactors, and system design
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
Safe isolated testing environment for multi-agent swarm topologies before production deployment
Automatically summarizes the current session context to prevent token window overflow.
Claude Code context pruner: slash command to summarize session and reset token bloat
| name | webhook-builder |
| description | Design and implement webhook systems with payload signing, retry logic, and delivery monitoring |
| allowed-tools | ["Read","Write","Bash","Grep"] |
| effort | high |
user.created, order.completed, payment.failed, etc. with JSON schemas.{ id, type, timestamp, data: { ...event-specific } }. Include API version.X-Webhook-Signature header using shared secret.{
"id": "evt_abc123",
"type": "order.completed",
"apiVersion": "2026-06-01",
"timestamp": "2026-06-13T10:30:00Z",
"data": {
"orderId": "ord_789",
"customerId": "cust_456",
"total": 149.99,
"currency": "USD",
"items": 3
}
}
Headers:
X-Webhook-Signature: sha256=a1b2c3d4...
X-Webhook-ID: evt_abc123
X-Webhook-Timestamp: 1718271000