Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "shopify-plugin",
"source": "./",
"description": "Search Shopify docs, generate and validate GraphQL, Liquid, and UI extension code. Skill scripts send usage telemetry (queries, code, model/client identifiers) to shopify.dev by default; set OPT_OUT_INSTRUMENTATION=true to disable.",
"version": "1.5.0",
"version": "1.5.1",
"author": { "name": "Shopify" },
"license": "MIT",
"homepage": "https://github.com/Shopify/Shopify-AI-Toolkit",
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "shopify-plugin",
"description": "Shopify developer tools for Claude Code — search Shopify docs, generate and validate GraphQL, Liquid, and UI extension code. Skill scripts send usage telemetry (queries, code, model/client identifiers) to shopify.dev by default; set OPT_OUT_INSTRUMENTATION=true to disable.",
"version": "1.5.0",
"version": "1.5.1",
"author": { "name": "Shopify" },
"license": "MIT",
"keywords": ["shopify", "mcp", "graphql", "liquid", "storefront", "admin-api"]
Expand Down
2 changes: 1 addition & 1 deletion .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shopify-plugin",
"version": "1.5.0",
"version": "1.5.1",
"description": "Shopify developer tools for OpenAI Codex — search Shopify docs, generate and validate GraphQL, Liquid, and UI extension code. Skill scripts send usage telemetry (queries, code, model/client identifiers) to shopify.dev by default; set OPT_OUT_INSTRUMENTATION=true to disable.",
"author": { "name": "Shopify" },
"homepage": "https://shopify.dev/docs/apps/build/devmcp",
Expand Down
2 changes: 1 addition & 1 deletion .cursor-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "shopify-plugin",
"source": "./",
"description": "Search Shopify docs, generate and validate GraphQL, Liquid, and UI extension code. Skill scripts send usage telemetry (queries, code, model/client identifiers) to shopify.dev by default; set OPT_OUT_INSTRUMENTATION=true to disable.",
"version": "1.5.0",
"version": "1.5.1",
"author": { "name": "Shopify" },
"license": "MIT",
"homepage": "https://shopify.dev/docs/apps/build/devmcp",
Expand Down
2 changes: 1 addition & 1 deletion .cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "shopify-plugin",
"description": "Shopify developer tools for Cursor — search Shopify docs, generate and validate GraphQL, Liquid, and UI extension code. Skill scripts send usage telemetry (queries, code, model/client identifiers) to shopify.dev by default; set OPT_OUT_INSTRUMENTATION=true to disable.",
"version": "1.5.0",
"version": "1.5.1",
"author": { "name": "Shopify" },
"logo": "../assets/shopify_glyph.svg",
"homepage": "https://shopify.dev/docs/apps/build/devmcp",
Expand Down
2 changes: 1 addition & 1 deletion .hermes-plugin/plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shopify-plugin
version: 1.5.0
version: 1.5.1
description: >
Shopify developer tools for Hermes — search Shopify docs, generate and
validate GraphQL, Liquid, and UI extension code, plus a `hermes shopify`
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# shopify-plugin

## 1.5.1

### Patch Changes

- b1a40b9: Use `log!` + `process::abort()` in the Functions `main.rs` example so the documented template matches the runtime the rest of the SKILL recommends.

## 1.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "shopify-plugin",
"version": "1.5.0"
"version": "1.5.1"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shopify-plugin",
"version": "1.5.0",
"version": "1.5.1",
"private": true,
"description": "AI agent plugin manifests for the Shopify Dev MCP server",
"author": "Shopify",
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "shopify-plugin",
"description": "Shopify developer tools for GitHub Copilot — search Shopify docs, generate and validate GraphQL, Liquid, and UI extension code. Skill scripts send usage telemetry (queries, code, model/client identifiers) to shopify.dev by default; set OPT_OUT_INSTRUMENTATION=true to disable.",
"version": "1.5.0",
"version": "1.5.1",
"author": { "name": "Shopify" },
"license": "MIT",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion skills/shopify-admin/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: "Write or explain **Admin GraphQL** queries and mutations for apps
compatibility: Requires Node.js
metadata:
author: Shopify
version: "1.11.0"
version: "1.12.0"
hooks:
PostToolUse:
- matcher: Skill
Expand Down
6 changes: 3 additions & 3 deletions skills/shopify-admin/scripts/search_docs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ async function reportValidation(toolName, result, context, metadata) {
tool: toolName,
parameters: {
skill: "shopify-admin",
skillVersion: "1.11.0",
skillVersion: "1.12.0",
...truncatedUserPrompt !== void 0 && {
user_prompt: truncatedUserPrompt
},
Expand All @@ -648,7 +648,7 @@ async function reportValidation(toolName, result, context, metadata) {
...nonEmptyUsageMetadata(metadata)
}),
instrumentation: {
packageVersion: "1.11.0",
packageVersion: "1.12.0",
timestamp: (/* @__PURE__ */ new Date()).toISOString()
}
});
Expand Down Expand Up @@ -696,7 +696,7 @@ async function performSearch(query2, apiName, apiVersion) {
},
body: JSON.stringify(body),
instrumentation: {
packageVersion: "1.11.0",
packageVersion: "1.12.0",
timestamp: (/* @__PURE__ */ new Date()).toISOString()
}
});
Expand Down
Loading