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

google-shopping-feedGoogle shopping feed 搜索

Agent Skill

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

总安装

494

周安装

20

GitHub Stars

19

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill google-shopping-feed

简介

用于查找 Google Shopping Feed 规范与商品结构化方案,适合电商集成。

  • 适用于生成产品 XML、校验字段映射或分析竞品 feed,需输入类目与属性模板。
  • 使用时需遵循 Google 商品政策,避免重复内容或虚假信息;建议预审后提交。
  • 安装方式:github,命令:npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill google-shopping-feed。
  • 注意权限范围与维护状态,可能涉及高并发写入,建议分批处理与监控错误日志。

SKILL.md

Google Shopping Feed

Overview

Google Merchant Center requires a product data feed with specific attributes to serve Shopping ads. Shopify, WooCommerce, and BigCommerce all have official Google integrations that handle feed generation automatically. This skill covers setting up the integration, optimizing feed quality (the primary Shopping ranking factor), and fixing common disapproval issues.

When to Use This Skill

  • When setting up Google Shopping Ads for the first time
  • When products are being disapproved in Merchant Center due to feed quality issues
  • When price or availability in the feed is lagging behind the live website
  • When optimizing feed titles and descriptions to capture more relevant search queries
  • When managing feeds for multiple countries or currencies

Core Instructions

Step 1: Set up your Google Merchant Center account

  1. Go to merchants.google.com and create an account
  2. Verify and claim your store's domain under Business Information → Website (add a meta tag or upload a file to your store)
  3. Accept the Merchant Center terms and policies
  4. Link your Google Ads account: Settings → Linked Accounts → Google Ads

Step 2: Connect your platform to Merchant Center


Shopify

  1. Go to Shopify Admin → Sales Channels → + → Google & YouTube
  2. Install the Google & YouTube channel
  3. Connect your Google account and select your Merchant Center account
  4. Under Product Feed, Shopify automatically syncs your entire catalog with all required attributes (title, price, availability, images, GTIN if provided)
  5. Go to Google & YouTube → Overview to verify the feed sync status
  6. Check Products → Issues in Merchant Center to see any disapproved products

Improving feed quality on Shopify:

  • Ensure every product has: a clear title with brand + product name, a description, a main image, and the correct product type
  • Add GTINs (barcodes) to products under Products → [Product] → Variants → Barcode — GTINs improve Shopping impression share significantly
  • For Google product category: install Google Shopping Feed or Feedonomics app from the Shopify App Store to map Shopify product types to Google Taxonomy IDs

WooCommerce

  1. Install the Google Listings & Ads plugin (free, official Google plugin) from the WordPress plugin directory
  2. Go to WooCommerce → Google Listings & Ads and connect your Google account
  3. Complete the setup wizard — it creates the Merchant Center account if you do not have one and submits your feed
  4. Products are synced automatically from WooCommerce; check Google Listings & Ads → Product Feed for sync status

For more control: install WooCommerce Product Feed Pro ($70/yr) — it gives you full control over feed attributes, custom labels, and supplemental feeds for promotions.

Add Google product category to WooCommerce products:

  • Go to each product or product category in WooCommerce admin
  • The Google Listings & Ads plugin adds a "Google Category" field — fill this in using Google's product taxonomy

BigCommerce

  1. Go to BigCommerce Admin → Channel Manager
  2. Click Add a Channel → Google Shopping
  3. Connect your Google Merchant Center account — BigCommerce automatically creates the feed at yourstore.com/xmlfeed.xml
  4. Check Channel Manager → Google Shopping → Products for product status and disapprovals

For enhanced feed optimization: install GoDataFeed or Feedonomics from the BigCommerce App Marketplace.


Custom / Headless

Generate a standards-compliant XML feed endpoint that Google can crawl:

import { create } from 'xmlbuilder2';

export async function generateGoogleShoppingFeed(req: Request, res: Response) {
  const products = await db.products.findAll({
    where: { status: 'active' },
    include: ['variants', 'images'],
  });

  const root = create({ version: '1.0', encoding: 'UTF-8' })
    .ele('rss', { version: '2.0', 'xmlns:g': 'http://base.google.com/ns/1.0' })
    .ele('channel')
    .ele('title').txt(process.env.STORE_NAME!).up()
    .ele('link').txt(process.env.STORE_URL!).up();

  for (const product of products) {
    for (const variant of product.variants) {
      const item = root.ele('item');
      item.ele('g:id').txt(variant.sku).up();
      // Title format: Brand + Product Name + Key Attribute (Color/Size)
      item.ele('g:title').txt(
        [product.brand, product.name, variant.color, variant.size].filter(Boolean).join(' ').slice(0, 150)
      ).up();
      item.ele('g:description').txt(product.description.slice(0, 5000)).up();
      item.ele('g:link').txt(`${process.env.STORE_URL}/products/${product.slug}?variant=${variant.id}`).up();
      item.ele('g:image_link').txt(product.images[0]?.url ?? '').up();
      item.ele('g:condition').txt('new').up();
      item.ele('g:availability').txt(variant.inventory > 0 ? 'in_stock' : 'out_of_stock').up();
      item.ele('g:price').txt(`${(variant.priceInCents / 100).toFixed(2)} USD`).up();
      item.ele('g:brand').txt(product.brand ?? process.env.STORE_NAME!).up();
      item.ele('g:google_product_category').txt(product.googleProductCategory).up();
      item.ele('g:item_group_id').txt(product.id).up(); // groups variants together
      if (variant.color) item.ele('g:color').txt(variant.color).up();
      if (variant.size) item.ele('g:size').txt(variant.size).up();
      if (product.gtin) item.ele('g:gtin').txt(product.gtin).up();
      item.ele('g:identifier_exists').txt(product.gtin ? 'yes' : 'no').up();
    }
  }

  res.setHeader('Content-Type', 'application/xml; charset=utf-8');
  res.setHeader('Cache-Control', 'public, max-age=3600');
  res.send(root.end({ prettyPrint: false }));
}

Register this feed URL in Merchant Center under Products → Feeds → Add a Primary Feed.

Use the Content API to push real-time price/inventory updates instead of waiting for Google's scheduled crawl:

import { google } from 'googleapis';

const content = google.content({ version: 'v2.1', auth: await new google.auth.GoogleAuth({
  keyFile: process.env.GOOGLE_SERVICE_ACCOUNT_KEY_PATH,
  scopes: ['https://www.googleapis.com/auth/content'],
}).getClient() });

// Push updated product when inventory or price changes
await content.products.insert({
  merchantId: process.env.GOOGLE_MERCHANT_ID,
  requestBody: {
    offerId: variant.sku,
    availability: variant.inventory > 0 ? 'in_stock' : 'out_of_stock',
    price: { value: (variant.priceInCents / 100).toFixed(2), currency: 'USD' },
    contentLanguage: 'en',
    targetCountry: 'US',
    channel: 'online',
  },
});

Step 3: Optimize feed quality

Feed quality is the primary Shopping ranking factor. Fix these in order of impact:

  1. Optimize product titles — put brand and key attributes first (Google truncates after ~70 characters):

- Good: "Nike Air Max 90 White Men's Size 10" - Bad: "Air Max 90 - Various Colors Available"

  1. Add GTINs/barcodes — missing GTINs is the most common cause of reduced impression share; add barcodes to every product that has one
  2. Set Google product category — use Google's taxonomy (search "Google Product Taxonomy") and map each product type; use numeric IDs for exact matching
  3. Ensure landing page price matches feed price — even $0.01 discrepancy causes price-mismatch disapproval; check Merchant Center → Diagnostics weekly
  4. Add multiple product images — products with 3+ images get higher quality scores; lifestyle images + white background images both help

Step 4: Fix common disapproval issues

In Merchant Center, go to Products → Diagnostics to see all issues:

Disapproval ReasonFix
Price mismatchEnsure feed price exactly matches schema.org price on the product page
Missing required attributeAdd missing fields: typically brand, gtin, or google_product_category
Image too smallUse images at least 500×500px; 1000×1000px recommended
Landing page errorVerify the product URL in the feed returns a 200 status code
Policy violationRead the specific policy — common issues: drug claims, copyright images, counterfeit products

Best Practices

  • Front-load keywords in titles — Google truncates titles at ~70 characters in the UI; put brand and product name first
  • Register a supplemental feed for promotions — overlay sale prices without modifying the primary feed; reduces disapproval risk during sales
  • Cache the feed response with a 1-hour TTL — Merchant Center crawls frequently; avoid hammering your database on every request
  • Monitor disapproval rate daily — a spike often means a recent deploy changed URL patterns or price formatting
  • Set identifier_exists: no only for truly private-label products without any GTIN/MPN — misusing it causes disapproval for products that do have identifiers

Common Pitfalls

ProblemSolution
Products missing from Shopping ads despite being approvedCheck that targetCountry and contentLanguage match the linked Google Ads campaign targeting
Feed fetch returns 404 after deploymentThe feed URL is registered in Merchant Center — ensure your route still exists after deploys
GTIN required errors for private-label productsSet identifier_exists: no and provide a brand + MPN instead
Variants showing as separate productsEnsure all variants share the same item_group_id and differ only by color, size, or pattern
Shopify feed sync stuckIn Shopify, go to Google & YouTube → disconnect and reconnect the integration; or use a third-party feed app like Simprosys

Related Skills

  • @google-ads-ecommerce
  • @ecommerce-seo
  • @meta-ads-integration
  • @marketing-attribution-dashboard

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.42%
按下载量换算56

Claude

29.39%
按下载量换算46

Cursor

16.14%
按下载量换算25

Gemini CLI

8.62%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills