Anthropic Claudeソフトウェア開発⭐ リポ 1品質スコア 58/100
windsurf-webhooks-events
Windsurfのウェブフック署名検証とイベントハンドリングを実装できます。ウェブフックエンドポイントの設定、署名検証の実装、またはWindsurfのイベント通知を安全に処理する際に使用します。「windsurf webhook」「windsurf events」「windsurf webhook signature」「handle windsurf events」「windsurf notifications」といったフレーズで起動できます。
description の原文を見る
Implement Windsurf webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Windsurf event notifications securely. Trigger with phrases like "windsurf webhook", "windsurf events", "windsurf webhook signature", "handle windsurf events", "windsurf notifications".
SKILL.md 本文
注意: このスキルのライセンスは ライセンス未確認 です。本サイトでは本文プレビューのみを表示しています。利用前に GitHub の原本でライセンス条件をご確認ください。
Windsurf ウェブフック & イベント
概要
署名検証とリプレイ攻撃対策を備えた Windsurf ウェブフックを安全に処理します。
前提条件
- Windsurf ウェブフックシークレットの設定
- インターネットからアクセス可能な HTTPS エンドポイント
- 暗号化署名の理解
- Redis またはデータベース(任意・べき等性のため)
ウェブフックエンドポイント設定
Express.js
import express from 'express';
import crypto from 'crypto';
const app = express();
// IMPORTANT: Raw body needed for signature verification
app.post('/webhooks/windsurf',
express.raw({ type: 'application/json' }),
async (req, res) => {
const signature = req.headers['x-windsurf-signature'] as string;
const timestamp = req.headers['x-windsurf-timesta
...
詳細情報
- 作者
- Brmbobo
- リポジトリ
- Brmbobo/Web2podcast
- ライセンス
- 不明
- 最終更新
- 2026/1/26
Source: https://github.com/Brmbobo/Web2podcast / ライセンス: 未指定