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

customer-support-integration客户支持集成

Agent Skill

customer-support-integration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

465

周安装

19

GitHub Stars

19

下载量

150
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill customer-support-integration

简介

客户支持集成技能连接帮助台系统与电商/CRM 平台,自动填充客户上下文。

  • 适用于 Shopify、Zendesk 等生态,减少客服切换系统造成的效率损失。
  • 自动关联订单历史、退款记录与购买偏好至每张支持工单。
  • 推荐使用 Gorgias 等原生集成方案,定制开发仅用于深度双向同步。
  • 需配置 API 密钥并测试数据映射准确性,避免信息错乱。

SKILL.md

Customer Support Integration

Overview

Connecting your helpdesk to your store automatically surfaces order history, tracking information, and customer spend inside every support ticket — reducing average handle time by 40–60% because agents don't switch between systems. For Shopify, Gorgias is the purpose-built helpdesk that's native to the platform. For other platforms and for Zendesk/Intercom users, dedicated integration apps connect the systems. Only build a custom integration if you need deep two-way automation (auto-create tickets from order events, VIP routing, CSAT sync back to CRM) that off-the-shelf apps don't provide.

When to Use This Skill

  • When support agents repeatedly ask customers for their order number because it doesn't auto-populate in the ticket
  • When implementing Zendesk Sunshine Apps or Intercom Canvas Kit to show order details inside the agent interface
  • When automating ticket creation from order events (failed delivery, fraud hold, backorder)
  • When routing tickets by order value to prioritize VIP customers
  • When syncing support CSAT scores back to your CRM for customer health scoring

Core Instructions

Step 1: Determine platform and choose the right helpdesk

PlatformBest HelpdeskWhy
ShopifyGorgiasPurpose-built for Shopify; deep order data access, macro variables that pull order info, 1-click actions (refund, cancel, reorder) from within the ticket
ShopifyZendeskGood for teams that already use Zendesk; install the Shopify app for Zendesk from the App Store
WooCommerceGorgias or FreshdeskGorgias supports WooCommerce; Freshdesk + WooCommerce plugin for teams on Freshdesk
BigCommerceGorgias or ZendeskBoth have BigCommerce integrations in their app marketplaces
Custom / HeadlessZendesk or Intercom with custom integrationBuild a sidebar app to inject order context into tickets

Step 2: Platform-specific setup


Shopify

Option A: Gorgias (recommended for Shopify)

Gorgias is the most widely-used Shopify support helpdesk with the deepest platform integration.

  1. Install Gorgias from the Shopify App Store
  2. Authorize Gorgias to access your Shopify store data
  3. Gorgias automatically pulls order history, customer details, and shipping status into every ticket when a customer emails from the address on their Shopify account

What Gorgias shows agents automatically:

  • Customer name, email, total spent, order count
  • All past orders with status, items, and tracking
  • Live chat history across all channels

Setting up automation rules:

  1. Go to Gorgias → Automation → Rules
  2. Create rules like:

- Auto-tag tickets with "VIP" when customer lifetime value > $500 - Auto-assign VIP tickets to a senior support team - Auto-reply with order status when ticket contains "where is my order"

1-click actions from within Gorgias:

  • Refund, cancel, or duplicate an order directly from the ticket sidebar
  • Apply discount codes to orders without leaving Gorgias
  • Create a draft order for a replacement

Gorgias macros (template responses with dynamic variables):

  • Create macros that pull in order data automatically: Your order {{order.name}} is currently {{order.fulfillment_status}}
  • Go to Settings → Macros to create and manage macros

WooCommerce

Gorgias for WooCommerce:

  1. Install the Gorgias WooCommerce plugin from WordPress.org or connect via Gorgias integrations
  2. Connect your WooCommerce store — Gorgias pulls order history automatically

Freshdesk for WooCommerce:

  1. Install Freshdesk Help Desk for WooCommerce from the WordPress plugin directory
  2. The plugin creates Freshdesk tickets from WooCommerce order events
  3. Freshdesk agents see customer order details in the ticket sidebar via the integration

Manual integration with Zendesk:

  1. Install Zendesk for WooCommerce from the Zendesk App Marketplace
  2. Agents can search for customers by email and see their order history in the ticket sidebar

BigCommerce

Gorgias for BigCommerce:

  1. Install Gorgias from the BigCommerce App Marketplace
  2. Connect your store — same deep integration as Shopify

Zendesk for BigCommerce:

  1. Install the BigCommerce app from the Zendesk App Marketplace
  2. Agents see customer details and order history in the ticket sidebar

Custom / Headless

Build a Zendesk Sunshine App (sidebar panel) or Intercom Canvas Kit app that injects order context into every ticket:

Zendesk sidebar app — data endpoint:

// GET /api/support/zendesk-context?email=customer@example.com
export async function getZendeskContext(req: Request, res: Response) {
  const customerEmail = (req.query.email as string)?.toLowerCase();
  if (!customerEmail) return res.json({ customer: null, orders: [] });

  const [customer, recentOrders] = await Promise.all([
    db.customers.findByEmail(customerEmail, { include: ['segmentScore'] }),
    db.orders.findMany({
      where: { customerEmail },
      orderBy: { createdAt: 'desc' },
      take: 5,
      include: { lineItems: { include: { product: true } }, shipments: true },
    }),
  ]);

  res.json({
    customer: customer ? {
      lifetimeValue: customer.totalSpentCents / 100,
      orderCount: customer.orderCount,
      segment: customer.segmentScore?.segment,
      tags: customer.tags,
    } : null,
    orders: recentOrders.map(o => ({
      number: o.orderNumber,
      status: o.status,
      total: o.totalCents / 100,
      createdAt: o.createdAt,
      trackingUrl: o.shipments[0]?.trackingUrl,
      items: o.lineItems.map(i => ({ name: i.product.name, quantity: i.quantity })),
    })),
  });
}

Route high-value tickets to VIP queue:

// Called when a new Zendesk ticket is created (via Zendesk webhook)
export async function applyTicketRouting(ticketId: string) {
  const ticket = await fetchZendeskTicket(ticketId);
  const customerEmail = ticket.requester?.email?.toLowerCase();
  if (!customerEmail) return;

  const customer = await db.customers.findByEmail(customerEmail, { include: ['segmentScore'] });
  if (!customer) return;

  const isVIP = ['champions', 'cannot_lose_them'].includes(customer.segmentScore?.segment ?? '');
  const isHighValue = customer.totalSpentCents >= 100000;  // $1,000+

  if (isVIP || isHighValue) {
    await fetch(`https://${process.env.ZENDESK_SUBDOMAIN}.zendesk.com/api/v2/tickets/${ticketId}.json`, {
      method: 'PUT',
      headers: { Authorization: getZendeskAuthHeader(), 'Content-Type': 'application/json' },
      body: JSON.stringify({
        ticket: {
          priority: 'urgent',
          group_id: process.env.ZENDESK_VIP_GROUP_ID,
          tags: [...(ticket.tags ?? []), 'vip-customer'],
        },
      }),
    });
  }
}

// Auto-create ticket on delivery failure
export async function onDeliveryFailed(shipmentId: string) {
  const shipment = await db.shipments.findById(shipmentId, { include: ['order.customer'] });
  await fetch(`https://${process.env.ZENDESK_SUBDOMAIN}.zendesk.com/api/v2/tickets.json`, {
    method: 'POST',
    headers: { Authorization: getZendeskAuthHeader(), 'Content-Type': 'application/json' },
    body: JSON.stringify({
      ticket: {
        subject: `Delivery failed — Order #${shipment.order.orderNumber}`,
        comment: { body: `Delivery attempt failed on ${new Date().toDateString()}. Carrier: ${shipment.carrier}. Tracking: ${shipment.trackingNumber}.` },
        requester: { email: shipment.order.customer.email },
        priority: 'high',
        tags: ['delivery-failure', 'auto-created'],
      },
    }),
  });
}

Step 3: Set up ticket routing rules for VIP customers

Ensure your most valuable customers get faster responses by routing their tickets to your best agents.

Gorgias routing rules:

  1. Go to Automation → Rules → Create Rule
  2. Condition: Customer → Total spent → is greater than → $500
  3. Actions: Add tag → vip, Assign to → VIP Support Team, Set priority → Urgent

Zendesk trigger:

  1. Go to Admin → Business Rules → Triggers → Add trigger
  2. Conditions: ticket tag contains "vip-customer"
  3. Actions: assign to group (VIP Support), set priority to Urgent

Define SLA targets:

  • VIP customers: first response within 1 hour
  • Standard customers: first response within 24 hours
  • Set these in Gorgias → Settings → Business hours and SLAs or Zendesk → Admin → SLAs

Best Practices

  • Use Gorgias for Shopify stores — it's the purpose-built solution; the time saved on setup and the depth of integration are worth the subscription cost
  • Never store helpdesk API tokens in client-side code — Zendesk and Intercom API tokens have write access to all tickets; always proxy requests through your server
  • Attach the order ID to every ticket — this is the key that links your support system to your commerce database and enables two-way sync and automation
  • Keep order context fresh in the sidebar — cache data for 60 seconds maximum; an agent seeing stale order status is worse than a loading spinner
  • Log every agent action taken on an order — maintain an audit trail of refunds, order changes, and status updates initiated from within the helpdesk

Common Pitfalls

ProblemSolution
Agent sees wrong customer because email lookup is case-sensitiveNormalize all emails to lowercase before lookup; Jane@example.com and jane@example.com must resolve to the same customer
Webhook payload not verifiedImplement HMAC signature verification using the Zendesk/Gorgias webhook signing secret before processing any payload
CSAT sync creates duplicate customer recordsAlways look up by email first; never create a new customer record from a support webhook — link to existing or skip
Auto-created tickets missing order contextSet the order ID in a custom ticket field at creation time; this enables bidirectional sync and accurate routing

Related Skills

  • @live-chat-commerce
  • @customer-segmentation
  • @customer-lifetime-value

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.76%
按下载量换算51

Claude

31.41%
按下载量换算47

Cursor

17.58%
按下载量换算26

Gemini CLI

8.23%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills