Claude-skill-registry Content Seeder
Generates realistic dummy data (text, images, products) based on Shopify Schema inputs.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/content-seeder" ~/.claude/skills/majiayu000-claude-skill-registry-content-seeder && rm -rf "$T"
manifest:
skills/data/content-seeder/SKILL.mdsource content
Capabilities
Helps developers populate empty theme sections with testing data. By passing a Shopify JSON Schema (from
{% schema %}), this skill returns a JSON object of settings filled with plausible content (Lorem Ipsum, Unsplash images, names, etc.).
Tools Usage Guide
1. generate_dummy_data
generate_dummy_dataParses a Shopify Schema settings array and generates a corresponding settings object populated with dummy data.
- Param
: The JSON string of the section schema (specifically theschema_json
array).settings - Returns: A JSON object where keys are setting IDs and values are generated content.
Example
Input Schema:
[ { "type": "text", "id": "heading", "label": "Heading" }, { "type": "image_picker", "id": "banner", "label": "Banner Image" } ]
Output:
{ "heading": "Elegant Sustainable Fashion", "banner": "shopify://shop_images/fashion_banner_mockup.jpg" }