Planned
Import existing sections from theme
Besides creating sections from scratch, being able to pull and update existing theme sections

Doeke Leeuwis 11 months ago
Feature Requests
Planned
Import existing sections from theme
Besides creating sections from scratch, being able to pull and update existing theme sections

Doeke Leeuwis 11 months ago
Feature Requests
Accepted
Support for Theme Blocks
https://shopify.dev/docs/storefronts/themes/architecture/blocks/theme-blocks/schema

Chirag Desai 11 months ago
Feature Requests
Accepted
Support for Theme Blocks
https://shopify.dev/docs/storefronts/themes/architecture/blocks/theme-blocks/schema

Chirag Desai 11 months ago
Feature Requests
Accepted
Split view for code and preview
So you can see the code changes while previewing (if using a big screen)

Doeke Leeuwis 11 months ago
Feature Requests
Accepted
Split view for code and preview
So you can see the code changes while previewing (if using a big screen)

Doeke Leeuwis 11 months ago
Feature Requests
Accepted
Shopify sidekick integration
Sidekick doesn't currently have an API, but once available, it should support generating sections and apps via Shopdev.

Sam van Hees 11 months ago
Feature Requests
Accepted
Shopify sidekick integration
Sidekick doesn't currently have an API, but once available, it should support generating sections and apps via Shopdev.

Sam van Hees 11 months ago
Feature Requests
Accepted
Team collaboration & plans
To be able to have a Shopdev subscription as a team and work together on builds

Doeke Leeuwis 11 months ago
Feature Requests
Accepted
Team collaboration & plans
To be able to have a Shopdev subscription as a team and work together on builds

Doeke Leeuwis 11 months ago
Feature Requests
Required error
I consistently keep getting a βRequiredβ error with no description/idea how to fix. Stuck in a constant loop of anything I build breaking and have lost so many credits from this. Please help!

User 9 months ago
Bug Reports
Required error
I consistently keep getting a βRequiredβ error with no description/idea how to fix. Stuck in a constant loop of anything I build breaking and have lost so many credits from this. Please help!

User 9 months ago
Bug Reports
Screen Sharing & Voice Activation
Screen sharing and voice activation during discussion mode. This would help walk through the project in real time and give a clearer understanding of the goal.

User 9 months ago
Feature Requests
Screen Sharing & Voice Activation
Screen sharing and voice activation during discussion mode. This would help walk through the project in real time and give a clearer understanding of the goal.

User 9 months ago
Feature Requests
Pre-Created Integrations
An easy or pre-created integration with tools, apps, or themes during development. For example, if someone wants to create a section or block for a progress bar that updates in real time when an item is added to the cart, it should ask upfront whether a cart drawer app is being used and what theme is active. That way, tokens arenβt wasted and the code returned is actually functional and efficient.

User 9 months ago
Feature Requests
Pre-Created Integrations
An easy or pre-created integration with tools, apps, or themes during development. For example, if someone wants to create a section or block for a progress bar that updates in real time when an item is added to the cart, it should ask upfront whether a cart drawer app is being used and what theme is active. That way, tokens arenβt wasted and the code returned is actually functional and efficient.

User 9 months ago
Feature Requests
Countdown feature for free level token renewal
Implement some kind of countdown to inform free account holders when tokens will be replenished

Dan Farrell 11 months ago
Feature Requests
Countdown feature for free level token renewal
Implement some kind of countdown to inform free account holders when tokens will be replenished

Dan Farrell 11 months ago
Feature Requests
Accepted
Hallucinating invalid setting types
The AI is hallucinating invalid section types, such as list. This type does not exist, according to the Shopify documentation: https://shopify.dev/docs/storefronts/themes/architecture/settings/input-settings. Maybe add a whitelist to the system prompt and only allow valid types to fix this, but I don't know if this is possible. { "name": "Product Bundle Builder", "class": "shopdev", "tag": "section", "settings": [ { "type": "header", "content": "Bundle Builder Settings" }, { "type": "text", "id": "title", "label": "Section Title", "default": "Create Your Custom Bundle" }, { "type": "textarea", "id": "subtitle", "label": "Section Subtitle", "default": "Mix and match your favorite products to create a personalized bundle and save." }, { "type": "text", "id": "bundle_title", "label": "Bundle Box Title", "default": "Your Bundle" }, { "type": "textarea", "id": "bundle_description", "label": "Bundle Box Description", "default": "Add at least 3 items to your bundle to receive a special discount." }, { "type": "range", "id": "min_bundle_size", "min": 2, "max": 10, "step": 1, "label": "Minimum Bundle Size for Discount", "default": 3 }, { "type": "range", "id": "discount_percentage", "min": 5, "max": 30, "step": 5, "label": "Bundle Discount Percentage", "default": 15 }, { "type": "text", "id": "add_to_cart_text", "label": "Add to Cart Button Text", "default": "Add Bundle to Cart" }, { "type": "textarea", "id": "bundle_note", "label": "Bundle Note", "default": "Bundle items will be added to your cart with the discount applied. Items can be removed individually from your cart if needed." }, { "type": "header", "content": "Product Selection" }, { "type": "list", "id": "product_handles", "label": "Product Handles", "default": [ "classic-jumper", "basic-t-shirt", "classic-sneaker", "active-sports-bra", "zipped-top", "classic-sweatpants", "maxi-long-dress", "knee-high-socks", "sports-active-skirt", "windbreaker-jacket" ] }, { "type": "list", "id": "collections", "label": "Collection Filters", "default": [ "leasure", "activewear" ] } ], "presets": [ { "name": "Product Bundle Builder", "settings": { "title": "Create Your Custom Bundle", "subtitle": "Mix and match your favorite products to create a personalized bundle and save.", "bundle_title": "Your Bundle", "bundle_description": "Add at least 3 items to your bundle to receive a special discount.", "min_bundle_size": 3, "discount_percentage": 15, "add_to_cart_text": "Add Bundle to Cart", "bundle_note": "Bundle items will be added to your cart with the discount applied. Items can be removed individually from your cart if needed.", "product_handles": [ "classic-jumper", "basic-t-shirt", "classic-sneaker", "active-sports-bra", "zipped-top", "classic-sweatpants", "maxi-long-dress", "knee-high-socks", "sports-active-skirt", "windbreaker-jacket" ], "collections": [ "leasure", "activewear" ] } } ] } {% endschema %} This does not exist: { "type": "list", "id": "product_handles", "label": "Product Handles", "default": [ "classic-jumper", "basic-t-shirt", "classic-sneaker", "active-sports-bra", "zipped-top", "classic-sweatpants", "maxi-long-dress", "knee-high-socks", "sports-active-skirt", "windbreaker-jacket" ] },

Dennis Hartenfels 11 months ago
Bug Reports
Accepted
Hallucinating invalid setting types
The AI is hallucinating invalid section types, such as list. This type does not exist, according to the Shopify documentation: https://shopify.dev/docs/storefronts/themes/architecture/settings/input-settings. Maybe add a whitelist to the system prompt and only allow valid types to fix this, but I don't know if this is possible. { "name": "Product Bundle Builder", "class": "shopdev", "tag": "section", "settings": [ { "type": "header", "content": "Bundle Builder Settings" }, { "type": "text", "id": "title", "label": "Section Title", "default": "Create Your Custom Bundle" }, { "type": "textarea", "id": "subtitle", "label": "Section Subtitle", "default": "Mix and match your favorite products to create a personalized bundle and save." }, { "type": "text", "id": "bundle_title", "label": "Bundle Box Title", "default": "Your Bundle" }, { "type": "textarea", "id": "bundle_description", "label": "Bundle Box Description", "default": "Add at least 3 items to your bundle to receive a special discount." }, { "type": "range", "id": "min_bundle_size", "min": 2, "max": 10, "step": 1, "label": "Minimum Bundle Size for Discount", "default": 3 }, { "type": "range", "id": "discount_percentage", "min": 5, "max": 30, "step": 5, "label": "Bundle Discount Percentage", "default": 15 }, { "type": "text", "id": "add_to_cart_text", "label": "Add to Cart Button Text", "default": "Add Bundle to Cart" }, { "type": "textarea", "id": "bundle_note", "label": "Bundle Note", "default": "Bundle items will be added to your cart with the discount applied. Items can be removed individually from your cart if needed." }, { "type": "header", "content": "Product Selection" }, { "type": "list", "id": "product_handles", "label": "Product Handles", "default": [ "classic-jumper", "basic-t-shirt", "classic-sneaker", "active-sports-bra", "zipped-top", "classic-sweatpants", "maxi-long-dress", "knee-high-socks", "sports-active-skirt", "windbreaker-jacket" ] }, { "type": "list", "id": "collections", "label": "Collection Filters", "default": [ "leasure", "activewear" ] } ], "presets": [ { "name": "Product Bundle Builder", "settings": { "title": "Create Your Custom Bundle", "subtitle": "Mix and match your favorite products to create a personalized bundle and save.", "bundle_title": "Your Bundle", "bundle_description": "Add at least 3 items to your bundle to receive a special discount.", "min_bundle_size": 3, "discount_percentage": 15, "add_to_cart_text": "Add Bundle to Cart", "bundle_note": "Bundle items will be added to your cart with the discount applied. Items can be removed individually from your cart if needed.", "product_handles": [ "classic-jumper", "basic-t-shirt", "classic-sneaker", "active-sports-bra", "zipped-top", "classic-sweatpants", "maxi-long-dress", "knee-high-socks", "sports-active-skirt", "windbreaker-jacket" ], "collections": [ "leasure", "activewear" ] } } ] } {% endschema %} This does not exist: { "type": "list", "id": "product_handles", "label": "Product Handles", "default": [ "classic-jumper", "basic-t-shirt", "classic-sneaker", "active-sports-bra", "zipped-top", "classic-sweatpants", "maxi-long-dress", "knee-high-socks", "sports-active-skirt", "windbreaker-jacket" ] },

Dennis Hartenfels 11 months ago
Bug Reports
Does Shopdev.ai Support Full Theme Analysis for Existing Shopify Themes?
Hey Shopdev Team π Quick questionβdoes Shopdev.ai currently support a feature to analyze the entire current Shopify theme (not just generated sections)? Iβm specifically looking for: Auto-detection of existing Liquid structure Theme health reports (speed, best practices, deprecated code) AI-powered suggestions to modernize/optimize legacy themes Just want to confirm if this capability is already available or planned. Thanks in advance! β Fenil

User 8 months ago
Feature Requests
Does Shopdev.ai Support Full Theme Analysis for Existing Shopify Themes?
Hey Shopdev Team π Quick questionβdoes Shopdev.ai currently support a feature to analyze the entire current Shopify theme (not just generated sections)? Iβm specifically looking for: Auto-detection of existing Liquid structure Theme health reports (speed, best practices, deprecated code) AI-powered suggestions to modernize/optimize legacy themes Just want to confirm if this capability is already available or planned. Thanks in advance! β Fenil

User 8 months ago
Feature Requests