shopify-admin-gift-message-extraction

shopify-admin-gift-message-extraction is a skill for Claude Code from 40RTY-ai/shopify-admin-skills. It costs 37 tokens per session (1,802 once invoked), scanned A, original, MIT.

A read-only tool that collects gift messages, recipient names, and gift indicators from Shopify orders. Shopify is an online store platform; the results are gathered into one sheet for fulfillment staff.

In plain words
What is it for?
It is for scanning recent unfulfilled or partially fulfilled orders, identifying gifts, and preparing packing-slip information for the fulfillment team.
Why use it?
It removes the need to open orders one by one and search their notes or custom fields. It helps prevent gift cards, inserts, and gift orders from being missed during packing.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code; mentions Codex; mentions Gemini CLI.

Part of the shopify-admin-skills plugin — 57 skills shipped together

Good fit It is for scanning recent unfulfilled or partially fulfilled orders, identifying gifts, and preparing packing-slip information for the fulfillment team.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/40rty-ai/shopify-admin-skills/shopify-admin-gift-message-extraction
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add 40RTY-ai/shopify-admin-skills --skill shopify-admin-gift-message-extraction
Clone the repo
git clone --depth 1 https://github.com/40RTY-ai/shopify-admin-skills

Made for: Claude Code.

Or install shopify-admin-skills, the plugin that ships this one along with the rest of its 57 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shopify-admin-gift-message-extraction

README.md
[![agentmods](https://agentmods.dev/badge/skills/40rty-ai/shopify-admin-skills/shopify-admin-gift-message-extraction/github.svg)](https://agentmods.dev/skills/40rty-ai/shopify-admin-skills/shopify-admin-gift-message-extraction)
Your own site
<a href="https://agentmods.dev/skills/40rty-ai/shopify-admin-skills/shopify-admin-gift-message-extraction"><img src="https://agentmods.dev/badge/skills/40rty-ai/shopify-admin-skills/shopify-admin-gift-message-extraction/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shopify-admin-gift-message-extraction

Your own site · 80×15
<a href="https://agentmods.dev/skills/40rty-ai/shopify-admin-skills/shopify-admin-gift-message-extraction"><img src="https://agentmods.dev/badge/skills/40rty-ai/shopify-admin-skills/shopify-admin-gift-message-extraction.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,802 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.01802
Opus 5 $0.00018 $0.00901
Sonnet 5 $0.00007 $0.00360
Haiku 4.5 $0.00004 $0.00180

Measured 11d ago against content hash 7bc99a77702b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

shopify-admin-gift-message-extraction scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/conversion-optimization/shopify-admin-gift-message-extraction/SKILL.md · 192 lines

How it starts

The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Purpose

Pulls gift messages, gift-recipient names, and "is_gift" flags from order custom attributes and order notes for orders that are pending or in-progress fulfillment. Produces a single sheet that the fulfillment team can use to print gift cards / inserts and route gift orders correctly. Read-only — no mutations.

Prerequisites

  • Authenticated Shopify CLI session: shopify store auth --store <domain> --scopes read_orders
  • API scopes: read_orders

Parameters

Parameter Type Required Default Description
store string yes Store domain (e.g., mystore.myshopify.com)
days_back integer no 7 Lookback window of orders to scan
status string no unfulfilled Order status filter: unfulfilled, partial, any
message_keys array no ["gift_message","gift_note","Gift Message","Gift Note","message","note_to_recipient"] Custom attribute keys (any case) that may contain a gift message
recipient_keys array no ["gift_recipient","recipient_name","Gift Recipient","To"] Custom attribute keys that may contain a recipient name
flag_keys array no ["is_gift","gift","Gift Wrap","gift_wrap"] Custom attribute keys whose presence/value marks an order as a gift
include_order_note bool no true Also scan the order-level note field for free-text gift messages
format string no human Output format: human or json

Safety

ℹ️ Read-only skill — no mutations are executed. Output may contain personal text written by customers — handle the resulting CSV with the same care as any customer data export.

Detection Rules

For each order:

  1. Custom attributes — for each lineItem.customAttributes and order.customAttributes:
    • If key (case-insensitive) ∈ message_keys → capture as gift_message
    • If keyrecipient_keys → capture as gift_recipient
    • If keyflag_keys AND value is truthy (true, yes, 1, non-empty string) → set is_gift: true
  2. Order note — if include_order_note: true and order.note matches /gift|recipient|deliver to|message:/i, capture the note as a note_hint
  3. An order qualifies for the report if is_gift: true OR gift_message was captured OR gift_recipient was captured

Read the full file on GitHub · 192 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 192 lines · 37 tokens per session scan A 7bc99a77702b

Subscribe to this mod's changes

shopify-admin-gift-message-extraction is a skill published in the GitHub repository 40RTY-ai/shopify-admin-skills (185 stars, last pushed 27d ago), licensed MIT. It adds 37 tokens to every session and 1,802 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.