Back to list
nhantran889

schema-architect

by nhantran889

0🍴 0📅 Jan 4, 2026

SKILL.md


name: Schema Architect version: 1.0.0 description: Intelligently generates and validates Shopify Liquid Schema JSON based on Liquid logic. allowed-tools:

  • generate_schema

Capabilities

This skill abstracts the complexity of writing valid JSON schema for Shopify sections. Not only does it fix syntax errors, but it also intelligently infers the type of settings required based on how variables are used in the liquid code.

Tools Usage Guide

1. generate_schema

Analyzes Liquid code and produces a valid {% schema %}...{% endschema %} block.

  • Param liquid_content: The full liquid content of a section file.
  • Returns: A JSON object containing the suggested schema.

Example

Input:

<h1>{{ section.settings.heading }}</h1>
{% if section.settings.show_image %}
  <img src="{{ section.settings.image | image_url }}" />
{% endif %}

Output:

{
  "name": "Generated Section",
  "settings": [
    {
      "type": "text",
      "id": "heading",
      "label": "Heading",
      "default": "Default Heading"
    },
    {
      "type": "checkbox",
      "id": "show_image",
      "label": "Show Image",
      "default": true
    },
    {
      "type": "image_picker",
      "id": "image",
      "label": "Image"
    }
  ]
}

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon