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

woocommerce-rest-apiwoocommerce rest API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

535

周安装

23

GitHub Stars

19

下载量

188
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill woocommerce-rest-api

简介

woocommerce-rest-api 用于辅助 API 设计、接口文档和请求响应结构说明。

  • 适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿或检查字段命名,支持前后端联调。
  • 通过 npx skills add 命令从 finsilabs/awesome-ecommerce-skills 仓库安装,路径为 skills/woocommerce-rest-api。
  • 使用时需确认真实业务语义、鉴权方式、分页和错误处理规则,避免凭空补字段。
  • 当前分类为研究检索,但更贴近开发工具,建议考虑调整分类至开发类。

SKILL.md

WooCommerce REST API

Overview

WooCommerce ships a versioned REST API (/wp-json/wc/v3/) that exposes products, orders, customers, coupons, and store settings over HTTPS. It uses OAuth 1.0a for non-HTTPS environments and Basic Auth (consumer key/secret) over HTTPS. The official @woocommerce/woocommerce-rest-api Node.js client handles authentication automatically and supports the full CRUD surface.

When to Use This Skill

  • When building a headless storefront that reads products and categories from WooCommerce
  • When integrating WooCommerce with an ERP, CRM, or fulfillment system
  • When creating an order management dashboard outside of WordPress Admin
  • When syncing inventory between WooCommerce and a warehouse or POS system
  • When automating bulk product imports or price updates from an external catalog
  • When building a mobile app that needs access to WooCommerce store data

Core Instructions

  1. Generate API credentials In WordPress Admin → WooCommerce → Settings → Advanced → REST API → Add Key: This generates a Consumer Key (ck_xxx) and Consumer Secret (cs_xxx). Store them in environment variables, never in source code. WOOCOMMERCE_URL=https://mystore.com WOOCOMMERCE_CONSUMER_KEY=ck_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx WOOCOMMERCE_CONSUMER_SECRET=cs_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

- Description: My Integration - User: (admin user) - Permissions: Read/Write

  1. Set up the Node.js client npm install @woocommerce/woocommerce-rest-api // lib/woocommerce.ts import WooCommerceRestApi from "@woocommerce/woocommerce-rest-api"; export const woo = new WooCommerceRestApi({url: process.env.WOOCOMMERCE_URL!, consumerKey: process.env.WOOCOMMERCE_CONSUMER_KEY!, consumerSecret: process.env.WOOCOMMERCE_CONSUMER_SECRET!, version: "wc/v3", axiosConfig: {timeout: 15000,},});
  2. Query products with filtering and pagination ` // lib/products.ts interface ProductQuery {page?: number; perPage?: number; category?: number; status?: "publish" | "draft" | "private"; stockStatus?: "instock" | "outofstock" | "onbackorder"; orderby?: "date" | "popularity" | "price" | "title";} export async function getProducts(params: ProductQuery = {}) {const response = await woo.get("products", {page: params.page?? 1, per_page: params.perPage?? 20, status: params.status?? "publish", stock_status: params.stockStatus, orderby: params.orderby?? "date", category: params.category,}); return {products: response.data, totalPages: parseInt(response.headers["x-wp-totalpages"]), totalProducts: parseInt(response.headers["x-wp-total"]),};} export async function getProductById(id: number) {const response = await woo.get(products/${id}); return response.data;} // Get product variations export async function getProductVariations(productId: number) {const response = await woo.get(products/${productId}/variations, {per_page: 100,}); return response.data;} `
  3. Create and manage orders ` // lib/orders.ts interface OrderLineItem {product_id: number; variation_id?: number; quantity: number;} interface CreateOrderParams {billing: {first_name: string; last_name: string; email: string; address_1: string; city: string; postcode: string; country: string;}; line_items: OrderLineItem[]; payment_method?: string;} export async function createOrder(params: CreateOrderParams) {const response = await woo.post("orders", {...params, status: "pending", payment_method: params.payment_method?? "stripe", payment_method_title: "Credit Card", set_paid: false,}); return response.data;} export async function updateOrderStatus(orderId: number, status: "pending" | "processing" | "on-hold" | "completed" | "cancelled" | "refunded", note?: string) {const updateData: any = {status}; if (note) {// Add an order note await woo.post(orders/${orderId}/notes, {note});} const response = await woo.put(orders/${orderId}, updateData); return response.data;} export async function getOrders(params: {status?: string; after?: string; // ISO 8601 date page?: number;} = {}) {const response = await woo.get("orders", {status: params.status?? "processing", after: params.after, per_page: 50, page: params.page?? 1,}); return {orders: response.data, totalPages: parseInt(response.headers["x-wp-totalpages"]),};} `
  4. Manage inventory and product updates ` // Update stock quantity for a product or variation export async function updateStock(productId: number, quantity: number, variationId?: number) {const endpoint = variationId? products/${productId}/variations/${variationId}: products/${productId}; const response = await woo.put(endpoint, {stock_quantity: quantity, manage_stock: true,}); return response.data;} // Batch update products (up to 100 per request) export async function batchUpdateProducts(updates: Array<{id: number; regular_price?: string; stock_quantity?: number; status?: string}>) {const response = await woo.post("products/batch", {update: updates}); return response.data;} `

Examples

Full product sync from external catalog

import pLimit from "p-limit";

export async function syncProductsFromCatalog(
  externalProducts: Array<{ sku: string; price: number; stock: number }>
) {
  const limit = pLimit(5); // Max 5 concurrent API calls

  const results = await Promise.allSettled(
    externalProducts.map((ext) =>
      limit(async () => {
        // Look up WooCommerce product by SKU
        const searchResponse = await woo.get("products", { sku: ext.sku });
        const existing = searchResponse.data[0];

        if (existing) {
          // Update existing product
          return woo.put(`products/${existing.id}`, {
            regular_price: ext.price.toFixed(2),
            stock_quantity: ext.stock,
            manage_stock: true,
          });
        } else {
          console.warn(`SKU not found in WooCommerce: ${ext.sku}`);
          return null;
        }
      })
    )
  );

  const failed = results.filter((r) => r.status === "rejected");
  if (failed.length > 0) {
    console.error(`${failed.length} products failed to sync`);
  }

  return results;
}

Customer management

// Create or update customer
export async function upsertCustomer(email: string, data: Record<string, any>) {
  const searchResponse = await woo.get("customers", { email });
  const existing = searchResponse.data[0];

  if (existing) {
    const response = await woo.put(`customers/${existing.id}`, data);
    return response.data;
  } else {
    const response = await woo.post("customers", { email, ...data });
    return response.data;
  }
}

// Get customer order history
export async function getCustomerOrders(customerId: number) {
  const response = await woo.get("orders", {
    customer: customerId,
    per_page: 50,
    orderby: "date",
    order: "desc",
  });
  return response.data;
}

Best Practices

  • Always use HTTPS — OAuth 1.0a works over HTTP but transmits credentials with every request; HTTPS + Basic Auth is simpler and safer for server-to-server calls
  • Respect rate limits — WordPress doesn't enforce API rate limits by default, but high request volumes can cause PHP-FPM or MySQL exhaustion; use p-limit or a queue for bulk operations
  • Use batch endpoints for bulk updates/products/batch accepts up to 100 create/update/delete operations in one request vs. 100 individual requests
  • Filter fields with _fields parameter?_fields=id,name,price,stock_quantity reduces response payload significantly for large product lists
  • Handle WooCommerce-specific error codes — the API returns rest_invalid_param, woocommerce_rest_cannot_create, etc. in the error body; parse response.data.code for specific error handling
  • Use after and before date filters for incremental syncs — avoid full catalog re-scans by filtering orders/products modified since last sync using ISO 8601 timestamps
  • Store the API URL without trailing slash — the WooCommerce client handles URL construction; a trailing slash in the base URL causes double-slash in endpoints

Common Pitfalls

ProblemSolution
401 Unauthorized despite correct keysVerify the site uses HTTPS; over HTTP the client must use OAuth 1.0a, not Basic Auth — set isHttps: false in the client config
Products endpoint returns empty arrayCheck the user assigned to the API key has the correct capabilities; the default woocommerce_manage_products capability is required
Order creation fails with product ID errorVariable products require variation_id in line_items; passing only product_id for a variable product causes invalid_variation error
Pagination headers missingThe x-wp-total and x-wp-totalpages headers are only present on list endpoints, not single-resource endpoints
Batch operation partially failsBatch responses include individual errors per item; iterate response.data.update array and check each item for error property
Slow response on product listingAdd ?_fields=id,name,price to reduce payload; also consider enabling persistent object cache (Redis) on the WordPress server

Related Skills

  • @woocommerce-plugin-development
  • @woocommerce-subscriptions
  • @woocommerce-performance
  • @headless-commerce-architecture
  • @rest-api-design

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.68%
按下载量换算63

Claude

29.99%
按下载量换算56

Cursor

19.74%
按下载量换算37

Gemini CLI

8.4%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills