Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

shopify-metafieldsShopify metafields 命令行

Agent Skill

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

总安装

474

周安装

19

GitHub Stars

19

下载量

154
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill shopify-metafields

简介

用于处理 Shopify metafields 相关的 GitHub 仓库、Issue 和代码协作信息。

  • 适合在扩展商品或集合的自定义数据模型时,整理相关功能和问题讨论。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限范围和是否涉及文件读写操作。
  • 建议结合原始 README 和项目结构进一步核验具体功能和使用场景。
  • 注意维护状态和网络访问权限,避免触发不必要的命令执行或数据修改。

SKILL.md

Shopify Metafields

Overview

Metafields let you attach structured custom data to Shopify resources — products, variants, orders, customers, collections, and pages — without building a separate database. Metafield definitions enforce type validation (text, number, date, URL, JSON, file, product reference, etc.) and make metafields available in the Liquid template editor and Storefront API. Metaobjects extend this concept to create reusable, standalone custom data structures.

When to Use This Skill

  • When products need additional attributes beyond Shopify's default fields (care instructions, dimensions, certifications)
  • When storing per-customer data such as loyalty tier, subscription status, or B2B account number
  • When building content-managed sections in a theme using metafield references (FAQs, size guides, feature callouts)
  • When attaching order-level custom data from checkout (gift message, delivery instructions)
  • When creating reusable structured content entries with Metaobjects (team members, press mentions, specs)

Core Instructions

  1. Create metafield definitions via the Admin API Definitions enforce type and make metafields storefront-accessible: ` // Create a metafield definition for product care instructions const response = await adminClient.request( mutation CreateMetafieldDefinition($definition: MetafieldDefinitionInput!) {metafieldDefinitionCreate(definition: $definition) {createdDefinition {id name namespace key type {name}} userErrors {field message code}}} , {variables: {definition: {name: "Care Instructions", namespace: "custom", key: "care_instructions", type: "multi_line_text_field", ownerType: "PRODUCT", description: "Washing and care instructions for the product", visibleToStorefrontApi: true, // Optional: pin to product admin UI (use pinnedPosition in API version 2023-10+) pinnedPosition: 1,},},}); Available types: single_line_text_field, multi_line_text_field, number_integer, number_decimal, date, date_time, boolean, url, json, color, weight, volume, dimension, rating, file_reference, product_reference, variant_reference, collection_reference, page_reference, metaobject_reference, list.<type>`.
  2. Write metafields via the Admin API ` // Set a metafield on a product export async function setProductMetafield(productId: string, namespace: string, key: string, value: string, type: string) {const response = await adminClient.request( mutation SetMetafield($metafields: [MetafieldsSetInput!]!) {metafieldsSet(metafields: $metafields) {metafields {id key namespace value} userErrors {field message code}}} , {variables: {metafields: [{ownerId: productId, namespace, key, value, type,},],},}); return response.data.metafieldsSet;} // Example: Set care instructions on a product await setProductMetafield("gid://shopify/Product/1234567890", "custom", "care_instructions", "Machine wash cold. Tumble dry low. Do not bleach.", "multi_line_text_field"); `
  3. Read metafields in Liquid templates Once a definition exists with visibleToStorefrontApi: true, metafields are available in Liquid via the metafields object: {% comment %} product.metafields.namespace.key {% endcomment %} {% if product.metafields.custom.care_instructions!= blank %} <div class="care-instructions"> <h3>Care Instructions</h3> {{product.metafields.custom.care_instructions | metafield_tag}} </div> {% endif %} {% comment %} Access a product reference metafield {% endcomment %} {% assign related = product.metafields.custom.related_product.value %} {% if related %} <a href="{{related.url}}">{{related.title}}</a> {% endif %} {% comment %} Access a list of file references (images) {% endcomment %} {% for image in product.metafields.custom.gallery_images.value %} <img src="{{image | image_url: width: 800}}" alt="{{image.alt}}"> {% endfor %}
  4. Read metafields via the Storefront API ` // Query product with metafields in the Storefront API const {data} = await storefront.request( query GetProductWithMetafields($handle: String!) {product(handle: $handle) {id title # Metafields must be explicitly requested by namespace + key careInstructions: metafield(namespace: "custom", key: "care_instructions") {value type} relatedProduct: metafield(namespace: "custom", key: "related_product") {reference {... on Product {id title handle featuredImage {url altText}}}} certifications: metafield(namespace: "custom", key: "certifications") {references(first: 5) {edges {node {... on Metaobject {id fields {key value}}}}}}}} , {variables: {handle: "my-product"}}); `
  5. Create and use Metaobjects Metaobjects are standalone custom data entries — useful for FAQs, testimonials, or any structured content: ` // Create a Metaobject definition await adminClient.request( mutation {metaobjectDefinitionCreate(definition: {name: "FAQ Entry" type: "faq_entry" fieldDefinitions: [{name: "Question", key: "question", type: "single_line_text_field", required: true} {name: "Answer", key: "answer", type: "multi_line_text_field", required: true} {name: "Sort Order", key: "sort_order", type: "number_integer"}]}) {metaobjectDefinition {id type} userErrors {field message}}} ); // Create a Metaobject entry await adminClient.request( mutation {metaobjectCreate(metaobject: {type: "faq_entry" fields: [{key: "question", value: "What is your return policy?"} {key: "answer", value: "We accept returns within 30 days of purchase."} {key: "sort_order", value: "1"}]}) {metaobject {id handle} userErrors {field message}}} ); `

Examples

Bulk metafield import for product attributes

// Import dimensions for multiple products at once (up to 25 per request)
export async function bulkSetDimensions(
  products: Array<{ id: string; weight: number; length: number; width: number; height: number }>
) {
  const metafields = products.flatMap(({ id, weight, length, width, height }) => [
    { ownerId: id, namespace: "custom", key: "weight_grams", value: weight.toString(), type: "number_integer" },
    { ownerId: id, namespace: "custom", key: "length_cm", value: length.toString(), type: "number_decimal" },
    { ownerId: id, namespace: "custom", key: "width_cm", value: width.toString(), type: "number_decimal" },
    { ownerId: id, namespace: "custom", key: "height_cm", value: height.toString(), type: "number_decimal" },
  ]);

  // Process in batches of 25 (API limit)
  for (let i = 0; i < metafields.length; i += 25) {
    const batch = metafields.slice(i, i + 25);
    await adminClient.request(`
      mutation SetMetafields($metafields: [MetafieldsSetInput!]!) {
        metafieldsSet(metafields: $metafields) {
          userErrors { field message }
        }
      }
    `, { variables: { metafields: batch } });
  }
}

Render FAQ metaobjects in Liquid

{% comment %} sections/faq.liquid {% endcomment %}
{% assign faqs = shop.metafields.custom.faq_entries.value %}

<div class="faq-section">
  <h2>Frequently Asked Questions</h2>
  {% for faq in faqs %}
    <details class="faq-item">
      <summary>{{ faq.question.value }}</summary>
      <div class="faq-answer">{{ faq.answer.value | newline_to_br }}</div>
    </details>
  {% endfor %}
</div>

Best Practices

  • Always create definitions before writing metafields — definitions enable type validation, storefront API access, and the Admin UI field editor; undefined namespace/key combinations appear as raw JSON
  • Use the custom namespace for merchant-managed data — reserve other namespaces (e.g., app_name) for app-owned data that merchants shouldn't edit directly
  • Set visibleToStorefrontApi: true on definitions that need to be read in themes or headless frontends — metafields are private by default
  • Batch metafield writes with metafieldsSet — it accepts up to 25 metafields per mutation; use it instead of individual productUpdate calls for bulk operations
  • Use metafield_tag filter in Liquid for rich text and file reference metafields — it renders the correct HTML element (img, p, etc.) based on the metafield type
  • Prefer Metaobjects over JSON metafields for structured multi-field data — Metaobjects are strongly typed and content-editable in the Shopify Admin UI
  • Document your namespaces — establish a convention (custom.* for merchant, yourapp.* for app) and document keys used so developers can find them

Common Pitfalls

ProblemSolution
Metafield returns null in Storefront APIThe metafield definition must have visibleToStorefrontApi: true; update the definition if it was created without this flag
metafields.custom.key is empty in LiquidEnsure a definition exists for the namespace/key; Liquid only exposes metafields with registered definitions
List metafield value is a JSON string, not arrayUse `
metafieldsSet fails with TYPE_MISMATCHThe value must be a JSON-serialized string matching the type — for number_integer pass "42", not 42
Metaobject fields not updatingUse metaobjectUpdate mutation with the metaobject GID and provide the fields array; partial updates are supported
App namespace conflicts with another appUse your app's handle as the namespace prefix (e.g., myapp-handle) to avoid conflicts in shared stores

Related Skills

  • @shopify-admin-api
  • @shopify-storefront-api
  • @shopify-app-development
  • @shopify-theme-development
  • @custom-product-attributes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.19%
按下载量换算56

Claude

30.8%
按下载量换算47

Cursor

17.45%
按下载量换算27

Gemini CLI

9.45%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills