mirror of
https://github.com/Shopify/Shopify-AI-Toolkit.git
synced 2026-09-18 09:41:58 +08:00
2ce990277b
Synced from https://github.com/Shopify/ai-toolkit-source/commit/c8fa7979b1e491afc85155a4f2ec088a15c44310
15 lines
688 B
JavaScript
15 lines
688 B
JavaScript
// Minimal OpenClaw runtime entry for the Shopify AI Toolkit plugin.
|
|
//
|
|
// This plugin ships skills only — they load from the `skills` field in
|
|
// openclaw.plugin.json. OpenClaw's npm installer nevertheless requires
|
|
// `openclaw.extensions` in package.json to point at a runtime module
|
|
// ("package.json missing openclaw.extensions" otherwise; see
|
|
// https://docs.openclaw.ai/help/troubleshooting#plugin-install-fails-with-missing-openclaw-extensions).
|
|
// This entry satisfies that contract and intentionally registers nothing.
|
|
export default {
|
|
id: "shopify-ai-toolkit",
|
|
name: "Shopify AI Toolkit",
|
|
description: "Skills-only plugin; no runtime capabilities.",
|
|
register() {},
|
|
};
|