Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

woocommerce-webhookswoocommerce 网络钩子

Agent Skill

woocommerce-webhooks 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,847

周安装

74

GitHub Stars

69

下载量

598
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:woocommerce-webhooks(woocommerce 网络钩子)
来源仓库:https://github.com/hookdeck/webhook-skills
仓库路径:skills/woocommerce-webhooks
安装命令:
npx skills add https://github.com/hookdeck/webhook-skills --skill woocommerce-webhooks
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/hookdeck/webhook-skills --skill woocommerce-webhooks

简介

woocommerce-webhooks 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态或协作事项进行整理的场景。
  • 通过 npx skills add 命令从 hookdeck/webhook-skills 仓库安装,路径为 skills/woocommerce-webhooks。
  • 安装前应确认权限范围、维护状态,并注意是否涉及联网、命令执行或文件读写。
  • 当前分类为开发,与其功能一致,归类合理。

SKILL.md

WooCommerce Webhooks

When to Use This Skill

  • Setting up WooCommerce webhook handlers
  • Debugging signature verification failures
  • Understanding WooCommerce event types and payloads
  • Handling order, product, or customer events
  • Integrating with WooCommerce stores

Essential Code (USE THIS)

WooCommerce Signature Verification (JavaScript)

const crypto = require('crypto');

function verifyWooCommerceWebhook(rawBody, signature, secret) {
  if (!signature || !secret) return false;

  const hash = crypto
    .createHmac('sha256', secret)
    .update(rawBody)
    .digest('base64');

  try {
    return crypto.timingSafeEqual(
      Buffer.from(signature),
      Buffer.from(hash)
    );
  } catch {
    return false;
  }
}

Express Webhook Handler

const express = require('express');
const app = express();

// CRITICAL: Use raw body for signature verification
app.use('/webhooks/woocommerce', express.raw({ type: 'application/json' }));

app.post('/webhooks/woocommerce', (req, res) => {
  const signature = req.headers['x-wc-webhook-signature'];
  const secret = process.env.WOOCOMMERCE_WEBHOOK_SECRET;

  if (!verifyWooCommerceWebhook(req.body, signature, secret)) {
    return res.status(400).send('Invalid signature');
  }

  const payload = JSON.parse(req.body);
  const topic = req.headers['x-wc-webhook-topic'];

  console.log(`Received ${topic} event:`, payload.id);
  res.status(200).send('OK');
});

Next.js API Route (App Router)

import crypto from 'crypto';
import { NextRequest } from 'next/server';

export async function POST(request: NextRequest) {
  const signature = request.headers.get('x-wc-webhook-signature');
  const secret = process.env.WOOCOMMERCE_WEBHOOK_SECRET;

  const rawBody = await request.text();

  if (!verifyWooCommerceWebhook(rawBody, signature, secret)) {
    return new Response('Invalid signature', { status: 400 });
  }

  const payload = JSON.parse(rawBody);
  const topic = request.headers.get('x-wc-webhook-topic');

  console.log(`Received ${topic} event:`, payload.id);
  return new Response('OK', { status: 200 });
}

FastAPI Handler

import hmac
import hashlib
import base64
from fastapi import FastAPI, Request, HTTPException

app = FastAPI()

def verify_woocommerce_webhook(raw_body: bytes, signature: str, secret: str) -> bool:
    if not signature or not secret:
        return False

    hash_digest = hmac.new(
        secret.encode(),
        raw_body,
        hashlib.sha256
    ).digest()
    expected_signature = base64.b64encode(hash_digest).decode()

    return hmac.compare_digest(signature, expected_signature)

@app.post('/webhooks/woocommerce')
async def handle_webhook(request: Request):
    raw_body = await request.body()
    signature = request.headers.get('x-wc-webhook-signature')
    secret = os.getenv('WOOCOMMERCE_WEBHOOK_SECRET')

    if not verify_woocommerce_webhook(raw_body, signature, secret):
        raise HTTPException(status_code=400, detail='Invalid signature')

    payload = await request.json()
    topic = request.headers.get('x-wc-webhook-topic')

    print(f"Received {topic} event: {payload.get('id')}")
    return {'status': 'success'}

Common Event Types

EventTriggered WhenCommon Use Cases
order.createdNew order placedSend confirmation emails, update inventory
order.updatedOrder status changedTrack fulfillment, send notifications
order.deletedOrder deletedClean up external systems
product.createdProduct addedSync to external catalogs
product.updatedProduct modifiedUpdate pricing, inventory
customer.createdNew customer registeredWelcome emails, CRM sync
customer.updatedCustomer info changedUpdate profiles, preferences

Environment Variables

WOOCOMMERCE_WEBHOOK_SECRET=your_webhook_secret_key

Headers Reference

WooCommerce webhooks include these headers:

  • X-WC-Webhook-Signature - HMAC SHA256 signature (base64)
  • X-WC-Webhook-Topic - Event type (e.g., "order.created")
  • X-WC-Webhook-Resource - Resource type (e.g., "order")
  • X-WC-Webhook-Event - Action (e.g., "created")
  • X-WC-Webhook-Source - Store URL
  • X-WC-Webhook-ID - Webhook ID
  • X-WC-Webhook-Delivery-ID - Unique delivery ID

Local Development

For local webhook testing, install Hookdeck CLI:

# Install via npm
npm install -g hookdeck-cli

# Or via Homebrew
brew install hookdeck/hookdeck/hookdeck

Then start the tunnel:

hookdeck listen 3000 --path /webhooks/woocommerce

No account required. Provides local tunnel + web UI for inspecting requests.

Reference Materials

  • overview.md - What WooCommerce webhooks are, common event types
  • setup.md - Configure webhooks in WooCommerce admin, get signing secret
  • verification.md - Signature verification details and gotchas
  • examples/ - Complete runnable examples per framework

Recommended: webhook-handler-patterns

For production-ready webhook handlers, also install the webhook-handler-patterns skill for:

  • Handler sequence
  • Idempotency
  • Error handling
  • Retry logic

Related Skills

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.64%
按下载量换算231

Claude

27.21%
按下载量换算163

Cursor

17.52%
按下载量换算105

Gemini CLI

8.4%
按下载量换算50

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills