shopify-setup
Set up Shopify CLI auth and Admin API access for a store. Install CLI, authenticate, create custom app, store access token, verify. Use whenever the user wants to connect to a Shopify store, set up Shopify API access, install Shopify CLI, or troubleshoot Shopify auth / Admin API token issues.
npx skills add jezweb/claude-skills --skill shopify-setup --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Shopify Setup Set up working Shopify CLI authentication and Admin API access for a store. Produces a verified API connection ready for product and content management. ## Workflow ### Step 1: Check Prerequisites Verify the Shopify CLI is installed: ```bash shopify version ``` If not installed: ```bash npm install -g @shopify/cli ``` ### Step 2: Authenticate with the Store ```bash shopify auth login --store mystore.myshopify.com ``` This opens a browser for OAuth. The user must be a store owner or staff member with appropriate permissions. After login, verify: ```bash shopify store info ``` ### Step 3: Create a Custom App for API Access Custom apps provide stable Admin API access tokens (unlike CLI session tokens which expire). **Check if an app already exists**: Ask the user if they have a custom app set up. If yes, skip to Step 4. **If no custom app exists**, guide the user through creation via browser: 1. Navigate to `https://{store}.myshopify.com/admin/settings/apps/development` 2. Click **Create an app** 3. Name it (e.g. "Claude Code Integration") 4. Click **Configure Admin API scopes** 5. Enable these scopes (see `references/api-scopes.md` for details): - `read_products`, `wr
- Workflow
- Step 1: Check Prerequisites
- Step 2: Authenticate with the Store
- Step 3: Create a Custom App for API Access
- Step 4: Store the Access Token
- Step 5: Verify API Access
- Step 6: Save Store Config
- Critical Patterns
- API Version
- Token Types
- Rate Limits
- Reference Files
shopify version
npm install -g @shopify/cli
shopify auth login --store mystore.myshopify.com
shopify store info
curl -s https://{store}.myshopify.com/admin/api/2025-01/graphql.json \What does the shopify-setup skill do?
Set up Shopify CLI auth and Admin API access for a store. Install CLI, authenticate, create custom app, store access token, verify. Use whenever the user wants to connect to a Shopify store, set up Shopify API access, install Shopify CLI, or troubleshoot Shopify auth / Admin API token issues.
How do I install it?
Run `npx skills add jezweb/claude-skills --skill shopify-setup --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From jezweb/claude-skills, a repository with 954 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
