Dedicated agent skills for building, upgrading, and maintaining Shopify Hydrogen storefronts — works with Claude, Cursor, Copilot, and more.
shopify-hydrogen-skills is a growing TypeScript project in the AI payments / x402 ecosystem, focused on agent-skills, agentic-commerce, shopify-hydrogen, shopify-hydrogen-skills. It currently has 82 GitHub stars and 25 forks, and sits alongside related tools like internet-court-skill, inflow-cli, mcp-dev-latam, medusa-agent-skills, lucid-agents, solcex-autonomous-vanguard.
Agent skills for building, maintaining, and upgrading Shopify Hydrogen storefronts with Weaverse. Works with Claude Code, Cursor, GitHub Copilot, Windsurf, OpenCode, OpenClaw, Gemini CLI, and any agent that supports markdown skill files.
Why skills, not docs? Skills are concise, agent-optimized knowledge that your coding agent loads before working on a task — structured for LLMs, not humans. Pair them with live doc search for the best results.
npx skills add Weaverse/shopify-hydrogen-skills
Auto-detects your coding agents and installs to all of them. Powered by skills.sh.
For manual per-agent setup, see INSTALL.md.
| Skill | What the agent learns | When to load |
|---|---|---|
setup-weaverse-project |
Fast new-project onboarding — CLI-first scaffold, demo-store boot before credentials, generated SESSION_SECRET, GitHub repo, Builder preview connection |
Starting a brand-new Weaverse Hydrogen storefront or running a theme locally for the first time |
shopify-hydrogen |
Core Hydrogen APIs — createHydrogenContext, cart handler, caching, pagination, SEO, CSP |
Working with @shopify/hydrogen APIs |
weaverse-hydrogen |
Weaverse components, schemas, loaders, theming, deployment | Any Hydrogen + Weaverse project |
hydrogen-cookbooks |
Step-by-step guides — bundles, combined listings, 3D models, customer accounts, performance | Building specific features |
hydrogen-upgrades |
Breaking changes and migration steps for Hydrogen framework versions | Upgrading Hydrogen framework |
theme-update |
Safe Pilot theme updates — detect version, plan changes, preserve customizations, verify build | Updating a customer's Pilot theme |
weaverse-integration |
Integrate Weaverse into an existing Hydrogen project — analyze codebase, convert components, set up SDK, configure routes | Adding Weaverse to a project that doesn't use it yet |
cloning-websites-to-weaverse |
Recreate reference websites as Hydrogen + Weaverse pages with preview checkpoints and section mapping | Cloning a site or brand hub into Weaverse |
figma-to-weaverse |
Turn a Figma design into Weaverse sections via Figma MCP — token mapping, content manifest, preview checkpoint | Building a storefront from a Figma file |
generating-weaverse-project-json |
Generate import-ready Weaverse project export JSON from section plans, specs, or existing exports | Building Weaverse import files |
weaverse-content-api |
Read/update live Weaverse content over the REST Content API — bulk edits, AI content pipelines, Shopify resource upload | Updating a project after it exists |
hydrogen-analytics-tracking |
End-to-end tracking on Hydrogen — GTM, GA4 (browser + Measurement Protocol), Meta Pixel + CAPI, Google Ads, Consent Mode v2, CSP, Oxygen FPC, Weaverse webhook forwarding | Implementing analytics/conversion tracking on a Hydrogen storefront |
The site-building skills chain from a source (website or Figma) to a live, maintainable Weaverse project:
INPUT ADAPTERS GENERATE DELIVER
cloning-websites-to-weaverse ┐
├─→ generating-weaverse-project-json ─→ import once into Studio (creates structure)
figma-to-weaverse ┘ └─→ weaverse-content-api (updates content after,
bulk edits, Shopify resource upload)
Initial structure is created by importing the generated JSON. Everything after — copy, images, localization, bulk edits — goes through the Content API, which updates existing items but cannot create new ones.
Instead of baking static API docs into skill files (which go stale), this repo ships live doc fetching scripts that query official sources at runtime:
# Search Shopify Hydrogen docs (shopify.dev)
node scripts/search_shopify_docs.mjs "createHydrogenContext"
node scripts/search_shopify_docs.mjs "CartForm actions"
# Search Weaverse docs (docs.weaverse.io)
node scripts/search_weaverse_docs.mjs "component schema"
# Fetch a specific Weaverse doc page
node scripts/get_weaverse_page.mjs "development-guide/component-schema"
# Check for Pilot theme updates
node skills/theme-update/scripts/check_pilot_updates.mjs
The references/ folders in each skill serve as offline fallback — cached snapshots for when live search is unavailable.
| Script | Source | Endpoint |
|---|---|---|
search_shopify_docs.mjs |
shopify.dev | Hydrogen API search |
search_weaverse_docs.mjs |
docs.weaverse.io | Weaverse docs search (Mintlify MCP) |
get_weaverse_page.mjs |
docs.weaverse.io | Full page fetch by path |
check_pilot_updates.mjs |
github.com | Pilot release version check |
All scripts are zero-dependency — Node.js 18+ built-ins only.
├── skills/
│ ├── setup-weaverse-project/ # New project setup from zero to local preview
│ │ └── SKILL.md
│ │
│ ├── shopify-hydrogen/ # Core Hydrogen APIs
│ │ ├── SKILL.md
│ │ └── references/ # Setup, caching, cart patterns
│ │
│ ├── weaverse-hydrogen/ # Weaverse CMS integration
│ │ ├── SKILL.md
│ │ ├── references/ # 13 deep-dive guides
│ │ └── examples/ # Production-ready component code
│ │
│ ├── hydrogen-cookbooks/ # Feature recipes
│ │ ├── SKILL.md
│ │ └── references/ # Bundles, combined listings, 3D, etc.
│ │
│ ├── hydrogen-upgrades/ # Framework version migrations
│ │ ├── SKILL.md
│ │ └── references/ # 2024.4.7 → … → 2026.1.0
│ │
│ ├── theme-update/ # Pilot theme updater
│ ├── SKILL.md
│ └── scripts/
│ └── check_pilot_updates.mjs
│
│ ├── weaverse-integration/ # Integrate into existing Hydrogen
│ └── SKILL.md
│
│ ├── cloning-websites-to-weaverse/ # Clone sites into Weaverse
│ │ └── SKILL.md
│
│ ├── figma-to-weaverse/ # Figma design → Weaverse sections
│ │ ├── SKILL.md
│ │ └── references/ # Figma MCP extraction + token mapping
│
│ ├── generating-weaverse-project-json/ # Weaverse import JSON generator
│ │ ├── SKILL.md
│ │ ├── references/
│ │ └── scripts/
│
│ └── weaverse-content-api/ # Live content read/update over REST
│ ├── SKILL.md
│ ├── references/ # Endpoints + Portable Text
│ └── scripts/
│ └── weaverse_content_api.mjs
│
├── scripts/ # Live doc fetching (shared)
│ ├── search_shopify_docs.mjs
│ ├── search_weaverse_docs.mjs
│ └── get_weaverse_page.mjs
│
├── .cursorrules # Cursor agent rules
├── AGENTS.md # Repo guidance for AI agents
├── INSTALL.md # Manual per-agent install guide
└── package.json
PRs welcome — especially for:
MIT — Weaverse
The trust layer for agent-to-agent commerce — natural-language mandates, ERC-7710 delegated permissions, x402 payments, escrow, and dispute resolution as one open, catch-all Agent Skill / Claude Code plugin.
A wallet for your agents to onboard and pay. Agentic MPP / x402 payments from your machine - CLI + MCP server.
Open-source MCP servers for Latin American commerce — Pix, NF-e, banking, fiscal, logistics, and messaging across Brazil, Mexico, Argentina, Colombia, Chile, and Peru. MIT, on npm.
Agent skills and commands for Medusa best practices and conventions.
Lucid Agents Commerce SDK. Bootstrap AI agents in 60 seconds that can pay, sell, and participate in agentic commerce supply chains. Our protocol agnostic SDK provides CLI-generated templates and drop-in adapters for Hono, Express, Next.js, and TanStack, giving you instant access to crypto/fiat payment rails (AP2, A2A, x402, ERC8004).
Autonomous AI BD Agent for SolCex Exchange: 24/7 Cross-Chain Token Scoring & Payments 2026
Your AI trading terminal assistant for US stocks, commodities, forex, and crypto.
The agent-native LLM router for autonomous agents. 55+ models (8 free), <1ms local routing, USDC payments on Base & Solana via x402.
A local-first AI agent with persistent memory, emotional intelligence, and a peer-to-peer skills economy.
The living ecosystem where AI agents complete tasks through workflow loops, improve through iterative execution, are evaluated by mentor agents or humans in the loop, and turn completed work into reusable work experience and data to improve future agents.
The living ecosystem where AI agents complete tasks through workflow loops, improve through iterative execution, are evaluated by mentor agents or humans in the loop, and turn completed work into reusable work experience and data to improve future agents.
Self-healing infrastructure for AI agent payments. 90.3% auto-recovery.