shopify

shopify is a skill for Claude Code, Codex from ashish7802/awesome-api-skills. It costs 0 tokens per session (507 once invoked), scanned A, original, MIT.

An integration guide for the Shopify Admin API, which lets applications manage products, orders, and customers in a Shopify store.

In plain words
What is it for?
Use it to build store administration tools, query or update catalog and order data, process Shopify events, and export large datasets.
Why use it?
It helps developers work with Shopify's GraphQL requests, access tokens, bulk data operations, webhooks, and API error responses.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to build store administration tools, query or update catalog and order data, process Shopify events, and export large datasets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ashish7802/awesome-api-skills/shopify
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 ashish7802/awesome-api-skills --skill shopify
Clone the repo
git clone --depth 1 https://github.com/ashish7802/awesome-api-skills

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ashish7802/awesome-api-skills/shopify/github.svg)](https://agentmods.dev/skills/ashish7802/awesome-api-skills/shopify)
Your own site
<a href="https://agentmods.dev/skills/ashish7802/awesome-api-skills/shopify"><img src="https://agentmods.dev/badge/skills/ashish7802/awesome-api-skills/shopify/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

Your own site · 80×15
<a href="https://agentmods.dev/skills/ashish7802/awesome-api-skills/shopify"><img src="https://agentmods.dev/badge/skills/ashish7802/awesome-api-skills/shopify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 507 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 12
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
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.00000 $0.00507
Opus 5 $0.00000 $0.00253
Sonnet 5 $0.00000 $0.00101
Haiku 4.5 $0.00000 $0.00051

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

Security

Grade A, and why

shopify 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 5d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (examples/example.ts, tests/skill.test.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/shopify/SKILL.md · 61 lines

How it starts

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

Shopify Admin API API Skill

Overview

The Shopify Admin API allows you to manage products, orders, and customers. This skill focuses on the GraphQL API using the @shopify/shopify-api package.

Installation

npm install @shopify/shopify-api

Authentication

Custom apps use an Admin API Access Token (X-Shopify-Access-Token header). Public apps use OAuth 2.0.

Core Concepts

  • Global ID (GID): GraphQL identifier (e.g., gid://shopify/Product/123).
  • Bulk Operations: Used to extract massive datasets efficiently.
  • Webhooks: Subscriptions to store events.

Common Workflows

  1. Initialize Shopify client with credentials.
  2. Construct a GraphQL query.
  3. Call client.graphql(query, variables).

Error Handling

Handle userErrors inside the GraphQL payload. Unlike REST, GraphQL often returns HTTP 200 even if the mutation fails; check the payload fields.

Security

Validate all incoming Shopify Webhooks using the HMAC signature (X-Shopify-Hmac-Sha256).

Rate Limits

GraphQL uses a Calculated Query Cost limit (50 points/sec). Complex queries cost more.

Best Practices

Use GraphQL instead of REST. REST is slower and prone to over-fetching. Use Bulk Operations for exports larger than 250 items.

Troubleshooting

If you receive 'Access denied' on a valid query, verify your Admin API Token was generated with the correct Access Scopes (e.g., write_products).

References

Why use this skill

Use this when your agent works with shopify — structured patterns beat pasted docs and prevent common hallucinations.

AI pitfalls

  • Mixing test and live API keys in the same code path
  • Retrying POST requests without idempotency keys
  • Hardcoding currency or amount formats incorrectly

Production checklist

  • Secrets in environment variables, not source code
  • Error handling and logging in place
  • Rate limits and timeouts configured

Read the full file on GitHub · 61 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 61 lines · 0 tokens per session scan A 0e0199fef1af

Subscribe to this mod's changes

shopify is a skill published in the GitHub repository ashish7802/awesome-api-skills (13 stars, last pushed 8d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 507 tokens. 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-09-03.