[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-update-shop":3,"mdc--uxvn14-key":34,"related-org-vercel-update-shop":1042,"related-repo-vercel-update-shop":1223},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"update-shop","update Vercel Shop storefront templates","Update an existing Vercel Shop storefront with newer template changes. Use when the user wants to check drift, plan an upgrade, or apply template updates to a project scaffolded from Vercel Shop.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel","Vercel","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel.png",[12,14,17,20],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Templates","templates",{"name":18,"slug":19,"type":13},"E-commerce","e-commerce",{"name":21,"slug":22,"type":13},"Deployment","deployment",32,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fshop","2026-07-07T06:42:13.996343",null,9,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"vercel\u002Fshop","https:\u002F\u002Fgithub.com\u002Fvercel\u002Fshop\u002Ftree\u002FHEAD\u002Fpackages\u002Fplugin\u002Fskills\u002Fupdate-shop","---\nname: update-shop\ndescription: Update an existing Vercel Shop storefront with newer template changes. Use when the user wants to check drift, plan an upgrade, or apply template updates to a project scaffolded from Vercel Shop.\n---\n\n# Update Vercel Shop\n\nBring an existing Vercel Shop project up to date with the template by reasoning about individual rollout entries, never by diffing against a template version. Downstream storefronts often adopt only part of the template, so every decision must be validated against the current codebase.\n\n## Pick a mode\n\nInfer the mode from the user's request:\n\n- **Audit** — report how far the project has drifted. Read-only; stop after the audit phase.\n- **Plan** — produce a change-level upgrade plan. Read-only; stop after the plan phase.\n- **Apply** — plan, confirm the selection with the user, then apply and validate. Use this when the user asks to \"update\" or \"upgrade\" the shop.\n\n## Read these inputs\n\n1. `.vercel-shop\u002Fbootstrap.json` in the project root — original `templateVersion` and `scaffoldedAt`\n2. `.vercel-shop\u002Frollout-state.json` in the project root — decisions recorded by earlier runs of this skill (may not exist)\n3. The current rollout log and template version, fetched from upstream (see below)\n4. `AGENTS.md` and `.claude\u002Fsettings.json` in the project if present\n5. The current project structure and any files named by matching rollout entries\n\nIf `.vercel-shop\u002Fbootstrap.json` is missing, say the project predates plugin bootstrap metadata and continue with a best-effort heuristic audit.\n\n### Fetch the current rollout log\n\nThe rollout log is maintained upstream in `github.com\u002Fvercel\u002Fshop`. The plugin bundles a copy of `template-rollout-log\u002F` and `template-version.json`, but it is only as fresh as the installed plugin, so prefer the upstream copy:\n\n```bash\ndir=$(mktemp -d)\ncurl -fsSL https:\u002F\u002Fcodeload.github.com\u002Fvercel\u002Fshop\u002Ftar.gz\u002Frefs\u002Fheads\u002Fmain |\n  tar -xz --strip-components=3 -C \"$dir\" \\\n    shop-main\u002Fpackages\u002Fplugin\u002Ftemplate-rollout-log \\\n    shop-main\u002Fpackages\u002Fplugin\u002Ftemplate-version.json\n```\n\nRead every markdown entry in the extracted `template-rollout-log\u002F` except `README.md`. If the fetch fails (offline or restricted network), fall back to the copies bundled with this plugin and say in the report that the log may be stale until the plugin is updated.\n\n## Phase 1 — audit\n\nCompare the scaffold metadata against the current recommended template version and check for structural drift:\n\n- missing `.vercel-shop\u002Fbootstrap.json`\n- missing `AGENTS.md`\n- missing project-scoped plugin config in `.claude\u002Fsettings.json`\n- legacy local skill files such as `.agents\u002Fskills\u002F` or a legacy `.claude\u002Fskills` symlink\n- obvious divergence from the expected Vercel Shop structure such as missing `lib\u002Fshopify\u002F` or `components\u002F`\n\nReport the original scaffold version, the scaffold timestamp, the current recommended template version, and a short note on overall drift. If the scaffold version matches the current version, say so explicitly. In audit mode, stop here.\n\n## Phase 2 — plan\n\nBuild the candidate list from the rollout log:\n\n1. If bootstrap metadata includes `scaffoldedAt`, treat entries with a newer `introducedOn` as the primary candidates. Versions are only hints.\n2. Add older entries that still look applicable from the current project state.\n3. Drop entries that `.vercel-shop\u002Frollout-state.json` already records as adopted, skipped, or not applicable — unless the user asks to revisit them.\n\nFor each remaining entry, decide one of:\n\n- **Adopt now** — clearly applicable and mechanical enough to apply confidently\n- **Review manually** — applicable but touches heavily customized code\n- **Already present** — the project has the change (adopted independently or scaffolded with it)\n- **Not applicable** — the entry's `appliesTo` or preconditions don't match this project\n\nValidate each decision against the current codebase. Do not assume a change is missing just because the scaffold is old, and do not invent upgrade work when no entries apply — say so explicitly. Call out uncertainty when the project has heavily diverged from template conventions.\n\nPresent the plan grouped by decision. In plan mode, stop here and do not edit files.\n\n## Phase 3 — apply\n\nConfirm with the user which entries to apply before editing anything. Then, for each selected entry, one at a time:\n\n1. Re-read the entry's Summary, `paths`, and Apply when \u002F Safe to skip when sections.\n2. Apply the change in the project's own idiom — re-implement the behavior described by the entry rather than copying template files over customized code. Use the entry's `relatedSkills` when listed.\n3. Run the entry's Validation steps before moving to the next entry.\n4. Keep each entry's edits an isolated, reviewable unit. If the project uses git and the user wants commits, suggest one commit per `changeKey`.\n\nIf an entry's validation fails, stop, report the failure, and ask whether to fix forward, skip the entry, or revert its edits before continuing.\n\n## Phase 4 — record and report\n\nRecord every decision in `.vercel-shop\u002Frollout-state.json` so future runs don't re-litigate settled entries. Keep decisions keyed by `changeKey`:\n\n```json\n{\n  \"decisions\": {\n    \"storefront-typed-client\": {\n      \"decision\": \"adopted\",\n      \"decidedOn\": \"2026-07-06\"\n    },\n    \"pdp-metafields-specs\": {\n      \"decision\": \"skipped\",\n      \"decidedOn\": \"2026-07-06\",\n      \"note\": \"custom PDP replaced the specs section\"\n    }\n  }\n}\n```\n\nUse `adopted`, `skipped`, `not-applicable`, or `already-present` as decision values. Do not modify `.vercel-shop\u002Fbootstrap.json` — `scaffoldedAt` must keep describing the original scaffold.\n\nFinish with a concise report: what was applied, what was skipped and why, validation results, and any entries deferred for manual review.\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,48,54,61,66,102,108,177,189,196,224,360,380,386,391,463,468,474,479,519,524,575,580,585,591,596,643,648,654,673,983,1031,1036],{"type":40,"tag":41,"props":42,"children":44},"element","h1",{"id":43},"update-vercel-shop",[45],{"type":46,"value":47},"text","Update Vercel Shop",{"type":40,"tag":49,"props":50,"children":51},"p",{},[52],{"type":46,"value":53},"Bring an existing Vercel Shop project up to date with the template by reasoning about individual rollout entries, never by diffing against a template version. Downstream storefronts often adopt only part of the template, so every decision must be validated against the current codebase.",{"type":40,"tag":55,"props":56,"children":58},"h2",{"id":57},"pick-a-mode",[59],{"type":46,"value":60},"Pick a mode",{"type":40,"tag":49,"props":62,"children":63},{},[64],{"type":46,"value":65},"Infer the mode from the user's request:",{"type":40,"tag":67,"props":68,"children":69},"ul",{},[70,82,92],{"type":40,"tag":71,"props":72,"children":73},"li",{},[74,80],{"type":40,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":46,"value":79},"Audit",{"type":46,"value":81}," — report how far the project has drifted. Read-only; stop after the audit phase.",{"type":40,"tag":71,"props":83,"children":84},{},[85,90],{"type":40,"tag":75,"props":86,"children":87},{},[88],{"type":46,"value":89},"Plan",{"type":46,"value":91}," — produce a change-level upgrade plan. Read-only; stop after the plan phase.",{"type":40,"tag":71,"props":93,"children":94},{},[95,100],{"type":40,"tag":75,"props":96,"children":97},{},[98],{"type":46,"value":99},"Apply",{"type":46,"value":101}," — plan, confirm the selection with the user, then apply and validate. Use this when the user asks to \"update\" or \"upgrade\" the shop.",{"type":40,"tag":55,"props":103,"children":105},{"id":104},"read-these-inputs",[106],{"type":46,"value":107},"Read these inputs",{"type":40,"tag":109,"props":110,"children":111},"ol",{},[112,138,149,154,172],{"type":40,"tag":71,"props":113,"children":114},{},[115,122,124,130,132],{"type":40,"tag":116,"props":117,"children":119},"code",{"className":118},[],[120],{"type":46,"value":121},".vercel-shop\u002Fbootstrap.json",{"type":46,"value":123}," in the project root — original ",{"type":40,"tag":116,"props":125,"children":127},{"className":126},[],[128],{"type":46,"value":129},"templateVersion",{"type":46,"value":131}," and ",{"type":40,"tag":116,"props":133,"children":135},{"className":134},[],[136],{"type":46,"value":137},"scaffoldedAt",{"type":40,"tag":71,"props":139,"children":140},{},[141,147],{"type":40,"tag":116,"props":142,"children":144},{"className":143},[],[145],{"type":46,"value":146},".vercel-shop\u002Frollout-state.json",{"type":46,"value":148}," in the project root — decisions recorded by earlier runs of this skill (may not exist)",{"type":40,"tag":71,"props":150,"children":151},{},[152],{"type":46,"value":153},"The current rollout log and template version, fetched from upstream (see below)",{"type":40,"tag":71,"props":155,"children":156},{},[157,163,164,170],{"type":40,"tag":116,"props":158,"children":160},{"className":159},[],[161],{"type":46,"value":162},"AGENTS.md",{"type":46,"value":131},{"type":40,"tag":116,"props":165,"children":167},{"className":166},[],[168],{"type":46,"value":169},".claude\u002Fsettings.json",{"type":46,"value":171}," in the project if present",{"type":40,"tag":71,"props":173,"children":174},{},[175],{"type":46,"value":176},"The current project structure and any files named by matching rollout entries",{"type":40,"tag":49,"props":178,"children":179},{},[180,182,187],{"type":46,"value":181},"If ",{"type":40,"tag":116,"props":183,"children":185},{"className":184},[],[186],{"type":46,"value":121},{"type":46,"value":188}," is missing, say the project predates plugin bootstrap metadata and continue with a best-effort heuristic audit.",{"type":40,"tag":190,"props":191,"children":193},"h3",{"id":192},"fetch-the-current-rollout-log",[194],{"type":46,"value":195},"Fetch the current rollout log",{"type":40,"tag":49,"props":197,"children":198},{},[199,201,207,209,215,216,222],{"type":46,"value":200},"The rollout log is maintained upstream in ",{"type":40,"tag":116,"props":202,"children":204},{"className":203},[],[205],{"type":46,"value":206},"github.com\u002Fvercel\u002Fshop",{"type":46,"value":208},". The plugin bundles a copy of ",{"type":40,"tag":116,"props":210,"children":212},{"className":211},[],[213],{"type":46,"value":214},"template-rollout-log\u002F",{"type":46,"value":131},{"type":40,"tag":116,"props":217,"children":219},{"className":218},[],[220],{"type":46,"value":221},"template-version.json",{"type":46,"value":223},", but it is only as fresh as the installed plugin, so prefer the upstream copy:",{"type":40,"tag":225,"props":226,"children":231},"pre",{"className":227,"code":228,"language":229,"meta":230,"style":230},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dir=$(mktemp -d)\ncurl -fsSL https:\u002F\u002Fcodeload.github.com\u002Fvercel\u002Fshop\u002Ftar.gz\u002Frefs\u002Fheads\u002Fmain |\n  tar -xz --strip-components=3 -C \"$dir\" \\\n    shop-main\u002Fpackages\u002Fplugin\u002Ftemplate-rollout-log \\\n    shop-main\u002Fpackages\u002Fplugin\u002Ftemplate-version.json\n","bash","",[232],{"type":40,"tag":116,"props":233,"children":234},{"__ignoreMap":230},[235,270,294,338,351],{"type":40,"tag":236,"props":237,"children":240},"span",{"class":238,"line":239},"line",1,[241,247,253,259,265],{"type":40,"tag":236,"props":242,"children":244},{"style":243},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[245],{"type":46,"value":246},"dir",{"type":40,"tag":236,"props":248,"children":250},{"style":249},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[251],{"type":46,"value":252},"=$(",{"type":40,"tag":236,"props":254,"children":256},{"style":255},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[257],{"type":46,"value":258},"mktemp",{"type":40,"tag":236,"props":260,"children":262},{"style":261},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[263],{"type":46,"value":264}," -d",{"type":40,"tag":236,"props":266,"children":267},{"style":249},[268],{"type":46,"value":269},")\n",{"type":40,"tag":236,"props":271,"children":273},{"class":238,"line":272},2,[274,279,284,289],{"type":40,"tag":236,"props":275,"children":276},{"style":255},[277],{"type":46,"value":278},"curl",{"type":40,"tag":236,"props":280,"children":281},{"style":261},[282],{"type":46,"value":283}," -fsSL",{"type":40,"tag":236,"props":285,"children":286},{"style":261},[287],{"type":46,"value":288}," https:\u002F\u002Fcodeload.github.com\u002Fvercel\u002Fshop\u002Ftar.gz\u002Frefs\u002Fheads\u002Fmain",{"type":40,"tag":236,"props":290,"children":291},{"style":249},[292],{"type":46,"value":293}," |\n",{"type":40,"tag":236,"props":295,"children":297},{"class":238,"line":296},3,[298,303,308,313,318,323,328,333],{"type":40,"tag":236,"props":299,"children":300},{"style":255},[301],{"type":46,"value":302},"  tar",{"type":40,"tag":236,"props":304,"children":305},{"style":261},[306],{"type":46,"value":307}," -xz",{"type":40,"tag":236,"props":309,"children":310},{"style":261},[311],{"type":46,"value":312}," --strip-components=3",{"type":40,"tag":236,"props":314,"children":315},{"style":261},[316],{"type":46,"value":317}," -C",{"type":40,"tag":236,"props":319,"children":320},{"style":249},[321],{"type":46,"value":322}," \"",{"type":40,"tag":236,"props":324,"children":325},{"style":243},[326],{"type":46,"value":327},"$dir",{"type":40,"tag":236,"props":329,"children":330},{"style":249},[331],{"type":46,"value":332},"\"",{"type":40,"tag":236,"props":334,"children":335},{"style":243},[336],{"type":46,"value":337}," \\\n",{"type":40,"tag":236,"props":339,"children":341},{"class":238,"line":340},4,[342,347],{"type":40,"tag":236,"props":343,"children":344},{"style":261},[345],{"type":46,"value":346},"    shop-main\u002Fpackages\u002Fplugin\u002Ftemplate-rollout-log",{"type":40,"tag":236,"props":348,"children":349},{"style":243},[350],{"type":46,"value":337},{"type":40,"tag":236,"props":352,"children":354},{"class":238,"line":353},5,[355],{"type":40,"tag":236,"props":356,"children":357},{"style":261},[358],{"type":46,"value":359},"    shop-main\u002Fpackages\u002Fplugin\u002Ftemplate-version.json\n",{"type":40,"tag":49,"props":361,"children":362},{},[363,365,370,372,378],{"type":46,"value":364},"Read every markdown entry in the extracted ",{"type":40,"tag":116,"props":366,"children":368},{"className":367},[],[369],{"type":46,"value":214},{"type":46,"value":371}," except ",{"type":40,"tag":116,"props":373,"children":375},{"className":374},[],[376],{"type":46,"value":377},"README.md",{"type":46,"value":379},". If the fetch fails (offline or restricted network), fall back to the copies bundled with this plugin and say in the report that the log may be stale until the plugin is updated.",{"type":40,"tag":55,"props":381,"children":383},{"id":382},"phase-1-audit",[384],{"type":46,"value":385},"Phase 1 — audit",{"type":40,"tag":49,"props":387,"children":388},{},[389],{"type":46,"value":390},"Compare the scaffold metadata against the current recommended template version and check for structural drift:",{"type":40,"tag":67,"props":392,"children":393},{},[394,404,413,423,444],{"type":40,"tag":71,"props":395,"children":396},{},[397,399],{"type":46,"value":398},"missing ",{"type":40,"tag":116,"props":400,"children":402},{"className":401},[],[403],{"type":46,"value":121},{"type":40,"tag":71,"props":405,"children":406},{},[407,408],{"type":46,"value":398},{"type":40,"tag":116,"props":409,"children":411},{"className":410},[],[412],{"type":46,"value":162},{"type":40,"tag":71,"props":414,"children":415},{},[416,418],{"type":46,"value":417},"missing project-scoped plugin config in ",{"type":40,"tag":116,"props":419,"children":421},{"className":420},[],[422],{"type":46,"value":169},{"type":40,"tag":71,"props":424,"children":425},{},[426,428,434,436,442],{"type":46,"value":427},"legacy local skill files such as ",{"type":40,"tag":116,"props":429,"children":431},{"className":430},[],[432],{"type":46,"value":433},".agents\u002Fskills\u002F",{"type":46,"value":435}," or a legacy ",{"type":40,"tag":116,"props":437,"children":439},{"className":438},[],[440],{"type":46,"value":441},".claude\u002Fskills",{"type":46,"value":443}," symlink",{"type":40,"tag":71,"props":445,"children":446},{},[447,449,455,457],{"type":46,"value":448},"obvious divergence from the expected Vercel Shop structure such as missing ",{"type":40,"tag":116,"props":450,"children":452},{"className":451},[],[453],{"type":46,"value":454},"lib\u002Fshopify\u002F",{"type":46,"value":456}," or ",{"type":40,"tag":116,"props":458,"children":460},{"className":459},[],[461],{"type":46,"value":462},"components\u002F",{"type":40,"tag":49,"props":464,"children":465},{},[466],{"type":46,"value":467},"Report the original scaffold version, the scaffold timestamp, the current recommended template version, and a short note on overall drift. If the scaffold version matches the current version, say so explicitly. In audit mode, stop here.",{"type":40,"tag":55,"props":469,"children":471},{"id":470},"phase-2-plan",[472],{"type":46,"value":473},"Phase 2 — plan",{"type":40,"tag":49,"props":475,"children":476},{},[477],{"type":46,"value":478},"Build the candidate list from the rollout log:",{"type":40,"tag":109,"props":480,"children":481},{},[482,502,507],{"type":40,"tag":71,"props":483,"children":484},{},[485,487,492,494,500],{"type":46,"value":486},"If bootstrap metadata includes ",{"type":40,"tag":116,"props":488,"children":490},{"className":489},[],[491],{"type":46,"value":137},{"type":46,"value":493},", treat entries with a newer ",{"type":40,"tag":116,"props":495,"children":497},{"className":496},[],[498],{"type":46,"value":499},"introducedOn",{"type":46,"value":501}," as the primary candidates. Versions are only hints.",{"type":40,"tag":71,"props":503,"children":504},{},[505],{"type":46,"value":506},"Add older entries that still look applicable from the current project state.",{"type":40,"tag":71,"props":508,"children":509},{},[510,512,517],{"type":46,"value":511},"Drop entries that ",{"type":40,"tag":116,"props":513,"children":515},{"className":514},[],[516],{"type":46,"value":146},{"type":46,"value":518}," already records as adopted, skipped, or not applicable — unless the user asks to revisit them.",{"type":40,"tag":49,"props":520,"children":521},{},[522],{"type":46,"value":523},"For each remaining entry, decide one of:",{"type":40,"tag":67,"props":525,"children":526},{},[527,537,547,557],{"type":40,"tag":71,"props":528,"children":529},{},[530,535],{"type":40,"tag":75,"props":531,"children":532},{},[533],{"type":46,"value":534},"Adopt now",{"type":46,"value":536}," — clearly applicable and mechanical enough to apply confidently",{"type":40,"tag":71,"props":538,"children":539},{},[540,545],{"type":40,"tag":75,"props":541,"children":542},{},[543],{"type":46,"value":544},"Review manually",{"type":46,"value":546}," — applicable but touches heavily customized code",{"type":40,"tag":71,"props":548,"children":549},{},[550,555],{"type":40,"tag":75,"props":551,"children":552},{},[553],{"type":46,"value":554},"Already present",{"type":46,"value":556}," — the project has the change (adopted independently or scaffolded with it)",{"type":40,"tag":71,"props":558,"children":559},{},[560,565,567,573],{"type":40,"tag":75,"props":561,"children":562},{},[563],{"type":46,"value":564},"Not applicable",{"type":46,"value":566}," — the entry's ",{"type":40,"tag":116,"props":568,"children":570},{"className":569},[],[571],{"type":46,"value":572},"appliesTo",{"type":46,"value":574}," or preconditions don't match this project",{"type":40,"tag":49,"props":576,"children":577},{},[578],{"type":46,"value":579},"Validate each decision against the current codebase. Do not assume a change is missing just because the scaffold is old, and do not invent upgrade work when no entries apply — say so explicitly. Call out uncertainty when the project has heavily diverged from template conventions.",{"type":40,"tag":49,"props":581,"children":582},{},[583],{"type":46,"value":584},"Present the plan grouped by decision. In plan mode, stop here and do not edit files.",{"type":40,"tag":55,"props":586,"children":588},{"id":587},"phase-3-apply",[589],{"type":46,"value":590},"Phase 3 — apply",{"type":40,"tag":49,"props":592,"children":593},{},[594],{"type":46,"value":595},"Confirm with the user which entries to apply before editing anything. Then, for each selected entry, one at a time:",{"type":40,"tag":109,"props":597,"children":598},{},[599,612,625,630],{"type":40,"tag":71,"props":600,"children":601},{},[602,604,610],{"type":46,"value":603},"Re-read the entry's Summary, ",{"type":40,"tag":116,"props":605,"children":607},{"className":606},[],[608],{"type":46,"value":609},"paths",{"type":46,"value":611},", and Apply when \u002F Safe to skip when sections.",{"type":40,"tag":71,"props":613,"children":614},{},[615,617,623],{"type":46,"value":616},"Apply the change in the project's own idiom — re-implement the behavior described by the entry rather than copying template files over customized code. Use the entry's ",{"type":40,"tag":116,"props":618,"children":620},{"className":619},[],[621],{"type":46,"value":622},"relatedSkills",{"type":46,"value":624}," when listed.",{"type":40,"tag":71,"props":626,"children":627},{},[628],{"type":46,"value":629},"Run the entry's Validation steps before moving to the next entry.",{"type":40,"tag":71,"props":631,"children":632},{},[633,635,641],{"type":46,"value":634},"Keep each entry's edits an isolated, reviewable unit. If the project uses git and the user wants commits, suggest one commit per ",{"type":40,"tag":116,"props":636,"children":638},{"className":637},[],[639],{"type":46,"value":640},"changeKey",{"type":46,"value":642},".",{"type":40,"tag":49,"props":644,"children":645},{},[646],{"type":46,"value":647},"If an entry's validation fails, stop, report the failure, and ask whether to fix forward, skip the entry, or revert its edits before continuing.",{"type":40,"tag":55,"props":649,"children":651},{"id":650},"phase-4-record-and-report",[652],{"type":46,"value":653},"Phase 4 — record and report",{"type":40,"tag":49,"props":655,"children":656},{},[657,659,664,666,671],{"type":46,"value":658},"Record every decision in ",{"type":40,"tag":116,"props":660,"children":662},{"className":661},[],[663],{"type":46,"value":146},{"type":46,"value":665}," so future runs don't re-litigate settled entries. Keep decisions keyed by ",{"type":40,"tag":116,"props":667,"children":669},{"className":668},[],[670],{"type":46,"value":640},{"type":46,"value":672},":",{"type":40,"tag":225,"props":674,"children":678},{"className":675,"code":676,"language":677,"meta":230,"style":230},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"decisions\": {\n    \"storefront-typed-client\": {\n      \"decision\": \"adopted\",\n      \"decidedOn\": \"2026-07-06\"\n    },\n    \"pdp-metafields-specs\": {\n      \"decision\": \"skipped\",\n      \"decidedOn\": \"2026-07-06\",\n      \"note\": \"custom PDP replaced the specs section\"\n    }\n  }\n}\n","json",[679],{"type":40,"tag":116,"props":680,"children":681},{"__ignoreMap":230},[682,690,717,742,782,816,825,850,887,922,956,965,974],{"type":40,"tag":236,"props":683,"children":684},{"class":238,"line":239},[685],{"type":40,"tag":236,"props":686,"children":687},{"style":249},[688],{"type":46,"value":689},"{\n",{"type":40,"tag":236,"props":691,"children":692},{"class":238,"line":272},[693,698,704,708,712],{"type":40,"tag":236,"props":694,"children":695},{"style":249},[696],{"type":46,"value":697},"  \"",{"type":40,"tag":236,"props":699,"children":701},{"style":700},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[702],{"type":46,"value":703},"decisions",{"type":40,"tag":236,"props":705,"children":706},{"style":249},[707],{"type":46,"value":332},{"type":40,"tag":236,"props":709,"children":710},{"style":249},[711],{"type":46,"value":672},{"type":40,"tag":236,"props":713,"children":714},{"style":249},[715],{"type":46,"value":716}," {\n",{"type":40,"tag":236,"props":718,"children":719},{"class":238,"line":296},[720,725,730,734,738],{"type":40,"tag":236,"props":721,"children":722},{"style":249},[723],{"type":46,"value":724},"    \"",{"type":40,"tag":236,"props":726,"children":727},{"style":255},[728],{"type":46,"value":729},"storefront-typed-client",{"type":40,"tag":236,"props":731,"children":732},{"style":249},[733],{"type":46,"value":332},{"type":40,"tag":236,"props":735,"children":736},{"style":249},[737],{"type":46,"value":672},{"type":40,"tag":236,"props":739,"children":740},{"style":249},[741],{"type":46,"value":716},{"type":40,"tag":236,"props":743,"children":744},{"class":238,"line":340},[745,750,756,760,764,768,773,777],{"type":40,"tag":236,"props":746,"children":747},{"style":249},[748],{"type":46,"value":749},"      \"",{"type":40,"tag":236,"props":751,"children":753},{"style":752},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[754],{"type":46,"value":755},"decision",{"type":40,"tag":236,"props":757,"children":758},{"style":249},[759],{"type":46,"value":332},{"type":40,"tag":236,"props":761,"children":762},{"style":249},[763],{"type":46,"value":672},{"type":40,"tag":236,"props":765,"children":766},{"style":249},[767],{"type":46,"value":322},{"type":40,"tag":236,"props":769,"children":770},{"style":261},[771],{"type":46,"value":772},"adopted",{"type":40,"tag":236,"props":774,"children":775},{"style":249},[776],{"type":46,"value":332},{"type":40,"tag":236,"props":778,"children":779},{"style":249},[780],{"type":46,"value":781},",\n",{"type":40,"tag":236,"props":783,"children":784},{"class":238,"line":353},[785,789,794,798,802,806,811],{"type":40,"tag":236,"props":786,"children":787},{"style":249},[788],{"type":46,"value":749},{"type":40,"tag":236,"props":790,"children":791},{"style":752},[792],{"type":46,"value":793},"decidedOn",{"type":40,"tag":236,"props":795,"children":796},{"style":249},[797],{"type":46,"value":332},{"type":40,"tag":236,"props":799,"children":800},{"style":249},[801],{"type":46,"value":672},{"type":40,"tag":236,"props":803,"children":804},{"style":249},[805],{"type":46,"value":322},{"type":40,"tag":236,"props":807,"children":808},{"style":261},[809],{"type":46,"value":810},"2026-07-06",{"type":40,"tag":236,"props":812,"children":813},{"style":249},[814],{"type":46,"value":815},"\"\n",{"type":40,"tag":236,"props":817,"children":819},{"class":238,"line":818},6,[820],{"type":40,"tag":236,"props":821,"children":822},{"style":249},[823],{"type":46,"value":824},"    },\n",{"type":40,"tag":236,"props":826,"children":828},{"class":238,"line":827},7,[829,833,838,842,846],{"type":40,"tag":236,"props":830,"children":831},{"style":249},[832],{"type":46,"value":724},{"type":40,"tag":236,"props":834,"children":835},{"style":255},[836],{"type":46,"value":837},"pdp-metafields-specs",{"type":40,"tag":236,"props":839,"children":840},{"style":249},[841],{"type":46,"value":332},{"type":40,"tag":236,"props":843,"children":844},{"style":249},[845],{"type":46,"value":672},{"type":40,"tag":236,"props":847,"children":848},{"style":249},[849],{"type":46,"value":716},{"type":40,"tag":236,"props":851,"children":853},{"class":238,"line":852},8,[854,858,862,866,870,874,879,883],{"type":40,"tag":236,"props":855,"children":856},{"style":249},[857],{"type":46,"value":749},{"type":40,"tag":236,"props":859,"children":860},{"style":752},[861],{"type":46,"value":755},{"type":40,"tag":236,"props":863,"children":864},{"style":249},[865],{"type":46,"value":332},{"type":40,"tag":236,"props":867,"children":868},{"style":249},[869],{"type":46,"value":672},{"type":40,"tag":236,"props":871,"children":872},{"style":249},[873],{"type":46,"value":322},{"type":40,"tag":236,"props":875,"children":876},{"style":261},[877],{"type":46,"value":878},"skipped",{"type":40,"tag":236,"props":880,"children":881},{"style":249},[882],{"type":46,"value":332},{"type":40,"tag":236,"props":884,"children":885},{"style":249},[886],{"type":46,"value":781},{"type":40,"tag":236,"props":888,"children":889},{"class":238,"line":27},[890,894,898,902,906,910,914,918],{"type":40,"tag":236,"props":891,"children":892},{"style":249},[893],{"type":46,"value":749},{"type":40,"tag":236,"props":895,"children":896},{"style":752},[897],{"type":46,"value":793},{"type":40,"tag":236,"props":899,"children":900},{"style":249},[901],{"type":46,"value":332},{"type":40,"tag":236,"props":903,"children":904},{"style":249},[905],{"type":46,"value":672},{"type":40,"tag":236,"props":907,"children":908},{"style":249},[909],{"type":46,"value":322},{"type":40,"tag":236,"props":911,"children":912},{"style":261},[913],{"type":46,"value":810},{"type":40,"tag":236,"props":915,"children":916},{"style":249},[917],{"type":46,"value":332},{"type":40,"tag":236,"props":919,"children":920},{"style":249},[921],{"type":46,"value":781},{"type":40,"tag":236,"props":923,"children":925},{"class":238,"line":924},10,[926,930,935,939,943,947,952],{"type":40,"tag":236,"props":927,"children":928},{"style":249},[929],{"type":46,"value":749},{"type":40,"tag":236,"props":931,"children":932},{"style":752},[933],{"type":46,"value":934},"note",{"type":40,"tag":236,"props":936,"children":937},{"style":249},[938],{"type":46,"value":332},{"type":40,"tag":236,"props":940,"children":941},{"style":249},[942],{"type":46,"value":672},{"type":40,"tag":236,"props":944,"children":945},{"style":249},[946],{"type":46,"value":322},{"type":40,"tag":236,"props":948,"children":949},{"style":261},[950],{"type":46,"value":951},"custom PDP replaced the specs section",{"type":40,"tag":236,"props":953,"children":954},{"style":249},[955],{"type":46,"value":815},{"type":40,"tag":236,"props":957,"children":959},{"class":238,"line":958},11,[960],{"type":40,"tag":236,"props":961,"children":962},{"style":249},[963],{"type":46,"value":964},"    }\n",{"type":40,"tag":236,"props":966,"children":968},{"class":238,"line":967},12,[969],{"type":40,"tag":236,"props":970,"children":971},{"style":249},[972],{"type":46,"value":973},"  }\n",{"type":40,"tag":236,"props":975,"children":977},{"class":238,"line":976},13,[978],{"type":40,"tag":236,"props":979,"children":980},{"style":249},[981],{"type":46,"value":982},"}\n",{"type":40,"tag":49,"props":984,"children":985},{},[986,988,993,995,1000,1001,1007,1009,1015,1017,1022,1024,1029],{"type":46,"value":987},"Use ",{"type":40,"tag":116,"props":989,"children":991},{"className":990},[],[992],{"type":46,"value":772},{"type":46,"value":994},", ",{"type":40,"tag":116,"props":996,"children":998},{"className":997},[],[999],{"type":46,"value":878},{"type":46,"value":994},{"type":40,"tag":116,"props":1002,"children":1004},{"className":1003},[],[1005],{"type":46,"value":1006},"not-applicable",{"type":46,"value":1008},", or ",{"type":40,"tag":116,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":46,"value":1014},"already-present",{"type":46,"value":1016}," as decision values. Do not modify ",{"type":40,"tag":116,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":46,"value":121},{"type":46,"value":1023}," — ",{"type":40,"tag":116,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":46,"value":137},{"type":46,"value":1030}," must keep describing the original scaffold.",{"type":40,"tag":49,"props":1032,"children":1033},{},[1034],{"type":46,"value":1035},"Finish with a concise report: what was applied, what was skipped and why, validation results, and any entries deferred for manual review.",{"type":40,"tag":1037,"props":1038,"children":1039},"style",{},[1040],{"type":46,"value":1041},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1043,"total":1222},[1044,1066,1080,1099,1110,1125,1141,1159,1171,1190,1202,1212],{"slug":1045,"name":1045,"fn":1046,"description":1047,"org":1048,"tags":1049,"stars":1063,"repoUrl":1064,"updatedAt":1065},"next-cache-components-adoption","enable and migrate to Next.js Cache Components","Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the `cacheComponents` flag, work through a flood of blocking-prerender \u002F instant validation errors, run the `cache-components-instant-false` codemod, or decide between opting routes out with `export const instant = false` and fixing them in place.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1050,1053,1056,1059,1062],{"name":1051,"slug":1052,"type":13},"Caching","caching",{"name":1054,"slug":1055,"type":13},"Frontend","frontend",{"name":1057,"slug":1058,"type":13},"Migration","migration",{"name":1060,"slug":1061,"type":13},"Next.js","next-js",{"name":9,"slug":8,"type":13},141208,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fnext.js","2026-07-24T05:38:30.118542",{"slug":1067,"name":1067,"fn":1068,"description":1069,"org":1070,"tags":1071,"stars":1063,"repoUrl":1064,"updatedAt":1079},"next-cache-components-optimizer","optimize Next.js cache components","Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components \u002F PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next\u002Fplaywright instant() e2e and work it to green, one verified route at a time; the shipped test then guards against regression. Use when asked to make a route's navigation instant (its static shell commits immediately), fix a route whose static shell isn't prerendered\u002Fserved\u002Fprefetched, grow a route's static shell or fix its slow first paint, diagnose which Suspense boundary keeps a route out of its static shell, or write the instant() e2e guard for one. Requires Next.js 16.3+ with cacheComponents; directs an upgrade if older.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1072,1073,1074,1075,1078],{"name":1051,"slug":1052,"type":13},{"name":1054,"slug":1055,"type":13},{"name":1060,"slug":1061,"type":13},{"name":1076,"slug":1077,"type":13},"Performance","performance",{"name":9,"slug":8,"type":13},"2026-07-30T05:31:10.674078",{"slug":1081,"name":1081,"fn":1082,"description":1083,"org":1084,"tags":1085,"stars":1063,"repoUrl":1064,"updatedAt":1098},"next-dev-loop","verify Next.js runtime behavior","Verify Next.js runtime behavior after editing app code. Use this skill to confirm a change actually works in a running app — not just that it compiles or type-checks. Combines \u002F_next\u002Fmcp (Next.js's view) with agent-browser (the browser's view). Requires a running `next dev`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1086,1089,1090,1093,1094,1095],{"name":1087,"slug":1088,"type":13},"Debugging","debugging",{"name":1054,"slug":1055,"type":13},{"name":1091,"slug":1092,"type":13},"Local Development","local-development",{"name":1060,"slug":1061,"type":13},{"name":9,"slug":8,"type":13},{"name":1096,"slug":1097,"type":13},"Web Development","web-development","2026-05-22T06:45:28.627735",{"slug":1100,"name":1100,"fn":1101,"description":1102,"org":1103,"tags":1104,"stars":1063,"repoUrl":1064,"updatedAt":1109},"next-partial-prefetching-adoption","adopt Partial Prefetching in Next.js apps","Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the `partialPrefetching` flag, opt routes in with `export const prefetch = 'partial'`, audit `\u003CLink prefetch={true}>` calls, or resolve the link-prefetch-partial and instant-shell-url-data insights.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1105,1106,1107,1108],{"name":1054,"slug":1055,"type":13},{"name":1060,"slug":1061,"type":13},{"name":1076,"slug":1077,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:11.591864",{"slug":1111,"name":1111,"fn":1112,"description":1113,"org":1114,"tags":1115,"stars":1122,"repoUrl":1123,"updatedAt":1124},"turborepo","manage monorepos with Turborepo","Turborepo monorepo build system guidance. Triggers on: turbo.json, task pipelines,\ndependsOn, caching, remote cache, the \"turbo\" CLI, --filter, --affected, CI optimization, environment\nvariables, internal packages, monorepo structure\u002Fbest practices, and boundaries.\n\nUse when user: configures tasks\u002Fworkflows\u002Fpipelines, creates packages, sets up\nmonorepo, shares code between apps, runs changed\u002Faffected packages, debugs cache,\nor has apps\u002Fpackages directories.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1116,1119,1120],{"name":1117,"slug":1118,"type":13},"CI\u002FCD","ci-cd",{"name":1076,"slug":1077,"type":13},{"name":1121,"slug":1111,"type":13},"Turborepo",30809,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fturborepo","2026-07-30T05:32:14.920116",{"slug":1126,"name":1126,"fn":1127,"description":1128,"org":1129,"tags":1130,"stars":1138,"repoUrl":1139,"updatedAt":1140},"add-function-examples","add AI function examples for testing","Guide for adding new AI function examples, for testing specific features against the actual provider APIs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1131,1134,1137],{"name":1132,"slug":1133,"type":13},"AI SDK","ai-sdk",{"name":1135,"slug":1136,"type":13},"Testing","testing",{"name":9,"slug":8,"type":13},25670,"https:\u002F\u002Fgithub.com\u002Fvercel\u002Fai","2026-04-06T18:55:51.318866",{"slug":1142,"name":1142,"fn":1143,"description":1144,"org":1145,"tags":1146,"stars":1138,"repoUrl":1139,"updatedAt":1158},"add-harness-package","add AI SDK harness packages","Guide for adding new AI SDK harness packages. Use when creating a new @ai-sdk\u002Fharness-\u003Cname> package that adapts a coding-agent runtime to HarnessV1.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1147,1150,1151,1154,1157],{"name":1148,"slug":1149,"type":13},"Agents","agents",{"name":1132,"slug":1133,"type":13},{"name":1152,"slug":1153,"type":13},"Harness","harness",{"name":1155,"slug":1156,"type":13},"SDK","sdk",{"name":9,"slug":8,"type":13},"2026-06-18T08:29:19.858737",{"slug":1160,"name":1160,"fn":1161,"description":1162,"org":1163,"tags":1164,"stars":1138,"repoUrl":1139,"updatedAt":1170},"add-provider-package","add new provider packages to AI SDK","Guide for adding new AI provider packages to the AI SDK. Use when creating a new @ai-sdk\u002F\u003Cprovider> package to integrate an AI service into the SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1165,1166,1169],{"name":1132,"slug":1133,"type":13},{"name":1167,"slug":1168,"type":13},"API Development","api-development",{"name":9,"slug":8,"type":13},"2026-04-06T18:55:47.45549",{"slug":1172,"name":1172,"fn":1173,"description":1174,"org":1175,"tags":1176,"stars":1138,"repoUrl":1139,"updatedAt":1189},"adr-skill","create and maintain architecture decision records","Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept\u002Freject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses Socratic questioning to capture intent before drafting, and validates output against an agent-readiness checklist.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1177,1180,1183,1186],{"name":1178,"slug":1179,"type":13},"ADR","adr",{"name":1181,"slug":1182,"type":13},"Architecture","architecture",{"name":1184,"slug":1185,"type":13},"Documentation","documentation",{"name":1187,"slug":1188,"type":13},"Engineering","engineering","2026-04-06T18:55:50.043694",{"slug":1133,"name":1133,"fn":1191,"description":1192,"org":1193,"tags":1194,"stars":1138,"repoUrl":1139,"updatedAt":1201},"build AI features with Vercel AI SDK","Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: \"AI SDK\", \"Vercel AI SDK\", \"generateText\", \"streamText\", \"add AI to my app\", \"build an agent\", \"tool calling\", \"structured output\", \"useChat\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1195,1196,1197,1200],{"name":1148,"slug":1149,"type":13},{"name":1132,"slug":1133,"type":13},{"name":1198,"slug":1199,"type":13},"LLM","llm",{"name":9,"slug":8,"type":13},"2026-04-06T18:55:48.739463",{"slug":1203,"name":1203,"fn":1204,"description":1205,"org":1206,"tags":1207,"stars":1138,"repoUrl":1139,"updatedAt":1211},"capture-api-response-test-fixture","capture API response test fixtures","Capture API response test fixture.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1208,1209,1210],{"name":1167,"slug":1168,"type":13},{"name":1135,"slug":1136,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:56.374433",{"slug":1213,"name":1213,"fn":1214,"description":1215,"org":1216,"tags":1217,"stars":1138,"repoUrl":1139,"updatedAt":1221},"develop-ai-functions-example","develop AI SDK function examples","Develop examples for AI SDK functions. Use when creating, running, or modifying examples under examples\u002Fai-functions\u002Fsrc to validate provider support, demonstrate features, or create test fixtures.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1218,1219,1220],{"name":1132,"slug":1133,"type":13},{"name":1135,"slug":1136,"type":13},{"name":9,"slug":8,"type":13},"2026-04-06T18:55:55.088956",68,{"items":1224,"total":852},[1225,1239,1257,1270,1282,1296,1309],{"slug":1226,"name":1226,"fn":1227,"description":1228,"org":1229,"tags":1230,"stars":23,"repoUrl":24,"updatedAt":1238},"build-shop","build and adapt Shopify storefronts","Build or adapt a Shopify storefront with Vercel Shop source-backed patterns. Use when creating, redesigning, refactoring, or reviewing storefront routes, commerce data, rendering, caching, streaming, navigation, cart, account, mutations, product cards, media, loading states, or when applying Vercel Shop outside the template.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1231,1232,1233,1234,1237],{"name":1051,"slug":1052,"type":13},{"name":18,"slug":19,"type":13},{"name":1054,"slug":1055,"type":13},{"name":1235,"slug":1236,"type":13},"Shopify","shopify",{"name":9,"slug":8,"type":13},"2026-07-01T08:07:40.865869",{"slug":1240,"name":1240,"fn":1241,"description":1242,"org":1243,"tags":1244,"stars":23,"repoUrl":24,"updatedAt":1256},"enable-analytics","enable analytics and performance monitoring","Add Vercel Analytics, Vercel Speed Insights, and Google Tag Manager to the storefront.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1245,1248,1251,1254,1255],{"name":1246,"slug":1247,"type":13},"Analytics","analytics",{"name":1249,"slug":1250,"type":13},"Marketing","marketing",{"name":1252,"slug":1253,"type":13},"Monitoring","monitoring",{"name":1076,"slug":1077,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:20.646283",{"slug":1258,"name":1258,"fn":1259,"description":1260,"org":1261,"tags":1262,"stars":23,"repoUrl":24,"updatedAt":1269},"enable-i18n","enable multi-language support with next-intl","Enable next-intl-based i18n in the shop template — locale-prefixed URLs, per-locale message catalogs, and a locale switcher. Use when the user wants \"locale URLs\", \"multi-language\", or \"i18n\" without Shopify Markets integration. For full Shopify Markets multi-region commerce (region-aware pricing, inventory, payments), use `enable-shopify-markets` instead — this skill is the routing\u002Fi18n layer only.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1263,1264,1266,1267,1268],{"name":1054,"slug":1055,"type":13},{"name":1265,"slug":1265,"type":13},"i18n",{"name":1060,"slug":1061,"type":13},{"name":9,"slug":8,"type":13},{"name":1096,"slug":1097,"type":13},"2026-07-30T05:31:22.633341",{"slug":1271,"name":1271,"fn":1272,"description":1273,"org":1274,"tags":1275,"stars":23,"repoUrl":24,"updatedAt":1281},"enable-shopify-markets","enable multi-locale support with Shopify Markets","Enable Shopify Markets with regional locales, localized Storefront API context, and next-intl routing. Supports locale-prefixed, invisible cookie-based, and per-domain routing without a separate market URL segment or market mapping.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1276,1277,1278,1279,1280],{"name":18,"slug":19,"type":13},{"name":1265,"slug":1265,"type":13},{"name":1249,"slug":1250,"type":13},{"name":1235,"slug":1236,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:19.636559",{"slug":1283,"name":1283,"fn":1284,"description":1285,"org":1286,"tags":1287,"stars":23,"repoUrl":24,"updatedAt":1295},"enable-shopify-menus","implement Shopify-powered navigation menus","Replace the hardcoded nav and footer menus with Shopify-powered menus.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1288,1291,1292,1293,1294],{"name":1289,"slug":1290,"type":13},"Design","design",{"name":18,"slug":19,"type":13},{"name":1054,"slug":1055,"type":13},{"name":1235,"slug":1236,"type":13},{"name":9,"slug":8,"type":13},"2026-07-30T05:31:21.651736",{"slug":1297,"name":1297,"fn":1298,"description":1299,"org":1300,"tags":1301,"stars":23,"repoUrl":24,"updatedAt":1308},"init-vercel-shop","initialize Vercel Shop storefront projects","Initialize a new Vercel Shop storefront with the official create-vercel-shop CLI. Use when the user wants to create, scaffold, start, or initialize a Vercel Shop project from a coding agent.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1302,1305,1306,1307],{"name":1303,"slug":1304,"type":13},"CLI","cli",{"name":18,"slug":19,"type":13},{"name":9,"slug":8,"type":13},{"name":1096,"slug":1097,"type":13},"2026-06-20T07:52:13.955072",{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1313,"tags":1314,"stars":23,"repoUrl":24,"updatedAt":1322},"shopify-graphql-reference","reference Shopify GraphQL patterns and fragments","Integrate Shopify-validated Storefront or Customer Account GraphQL into Vercel Shop. Use after Shopify AI Toolkit has supplied and validated an API operation, or when adapting existing GraphQL to the template's operation placement, fragments, domain transforms, locale flow, cache role, invalidation, and route architecture.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1315,1316,1317,1320,1321],{"name":1184,"slug":1185,"type":13},{"name":18,"slug":19,"type":13},{"name":1318,"slug":1319,"type":13},"GraphQL","graphql",{"name":1235,"slug":1236,"type":13},{"name":9,"slug":8,"type":13},"2026-04-19T04:56:32.035454"]