{"id":50554886,"url":"https://github.com/veyralabsgroup/shopify-suite","last_synced_at":"2026-06-04T06:02:20.383Z","repository":{"id":361724662,"uuid":"1255555226","full_name":"veyralabsgroup/shopify-suite","owner":"veyralabsgroup","description":"Shopify skill pack for Claude Code - developer tools and store auditor in one install","archived":false,"fork":false,"pushed_at":"2026-06-01T00:50:14.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-01T02:17:55.595Z","etag":null,"topics":["ai-agent","claude-code","developer-tools","ecommerce","shopify","shopify-app","shopify-audit","shopify-mcp","shopify-theme"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/veyralabsgroup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-01T00:47:09.000Z","updated_at":"2026-06-01T00:57:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/veyralabsgroup/shopify-suite","commit_stats":null,"previous_names":["veyralabsgroup/shopify-suite"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/veyralabsgroup/shopify-suite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyralabsgroup%2Fshopify-suite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyralabsgroup%2Fshopify-suite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyralabsgroup%2Fshopify-suite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyralabsgroup%2Fshopify-suite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veyralabsgroup","download_url":"https://codeload.github.com/veyralabsgroup/shopify-suite/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veyralabsgroup%2Fshopify-suite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33891733,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-04T02:00:06.755Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agent","claude-code","developer-tools","ecommerce","shopify","shopify-app","shopify-audit","shopify-mcp","shopify-theme"],"created_at":"2026-06-04T06:02:19.634Z","updated_at":"2026-06-04T06:02:20.360Z","avatar_url":"https://github.com/veyralabsgroup.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# @veyralabs/shopify-suite\n\nTwo Claude Code skills covering the full Shopify stack - one for developers, one for merchants.\n\n## Skills\n\n### shopify-dev\n\nShopify development across all layers: Liquid themes, JSON templates, section schemas, app development with Remix, Storefront and Admin GraphQL APIs, CLI workflows, checkout extensions, and Hydrogen headless.\n\nFetches live Shopify documentation via Context7 before answering API or version-sensitive questions. Shopify deprecates APIs every quarter.\n\nModes: `theme` / `app` / `api` / `cli` / `hydrogen` / `debug`\n\n### shopify-store\n\nStore audit and optimization. Detects available data source automatically:\n\n**Mode A - MCP Connected:** Reads real store data via [shopify-mcp](https://github.com/GeLi2001/shopify-mcp) - products, collections, orders, installed apps, metafields. Full audit with actual numbers.\n\n**Mode B - Public extraction:** Uses Scrapling on the public storefront when MCP is not configured. Extracts navigation, loaded scripts (app detection), product page markup, meta tags, structured data, canonical URLs.\n\nAudits 6 dimensions: product catalog, collection architecture, navigation, SEO, app stack, conversion signals.\n\n## Installation\n\n```bash\nnpx @veyralabs/skills install shopify-suite\n```\n\nOr install individually:\n\n```bash\nnpx @veyralabs/skills install shopify-dev\nnpx @veyralabs/skills install shopify-store\n```\n\nAfter installation, skills are available in `.claude/skills/shopify-suite/`.\nSlash commands `/shopify-dev` and `/shopify-store` appear in the Claude Code menu.\n\n## Connecting shopify-mcp (store auditor Mode A)\n\n```json\n{\n  \"mcpServers\": {\n    \"shopify\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"shopify-mcp\",\n        \"--clientId\", \"YOUR_CLIENT_ID\",\n        \"--clientSecret\", \"YOUR_CLIENT_SECRET\",\n        \"--domain\", \"YOUR_STORE.myshopify.com\"\n      ]\n    }\n  }\n}\n```\n\nGet credentials by creating a custom app in your Shopify admin with Admin API access.\n\n## Enabling live docs for shopify-dev (Context7)\n\n```json\n{\n  \"mcpServers\": {\n    \"context7\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@upstash/context7-mcp@latest\"]\n    }\n  }\n}\n```\n\n## Usage examples\n\n```\nAdd a sticky add-to-cart button to my Dawn theme\nCreate a Shopify app that syncs products to an external CRM\nWrite a bulk GraphQL query to update all product metafields\nAudit my Shopify store - find what's hurting conversion\nWhich apps should I remove to speed up the store?\nFix the SEO issues on my product pages\n```\n\n## Part of VeyraSkills\n\nThis pack is part of the [veyraskills](https://github.com/veyralabsgroup/veyraskills) collection.\n\nAlso available:\n- [@veyralabs/shopify-dev](https://github.com/veyralabsgroup/shopify-dev) - developer skill standalone\n- [@veyralabs/shopify-store](https://github.com/veyralabsgroup/shopify-store) - store auditor standalone\n- [@veyralabs/naming-suite](https://github.com/veyralabsgroup/naming-suite) - startup naming and brand analysis\n- [@veyralabs/webcloner](https://github.com/veyralabsgroup/webcloner) - pixel-accurate website cloning\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveyralabsgroup%2Fshopify-suite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveyralabsgroup%2Fshopify-suite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveyralabsgroup%2Fshopify-suite/lists"}