All Skills 
sync-from-shopify
Platform APIs & Operations
Synchronize Shopify theme changes to git. Pull configuration and template changes from Shopify admin, commit them to git, and push to remote. Use when you need to pull theme updates from the Shopify admin editor or sync recent admin changes.
Jsync-from-shopify
$
npx skills add rocksoup/junestore --skill sync-from-shopifySync from Shopify
Pull theme changes from Shopify admin, commit them to git, and push to remote using the core sync script.
Usage
Execute the Shopify sync script:
./scripts/shopify-sync.sh
The script will:
- Check for uncommitted local changes (exits if any found)
- Pull configuration and templates from Shopify admin
- Review changes and show diff summary
- Stage, commit, and push changes to remote
- Report completion status
Error Handling
If the script reports uncommitted changes:
- Commit your local work first:
git add <files> git commit -m "Descriptive message" - Then retry:
./scripts/shopify-sync.sh
If the script reports no changes:
- This means Shopify admin matches your local files - no action needed
If push fails:
- The script will exit with an error
- Report the error to Jared and ask for guidance
Reporting to Jared
After successful sync, report:
- What files were changed (from script output)
- A summary of the changes (from diff shown by script)
- Confirmation that changes are pushed to remote
Notes
- The script focuses on config and template changes (the most common admin edits)
- Core logic lives in
scripts/shopify-sync.shand can be used by any agent - For pulling ALL theme files, modify the script or use
shopify theme pulldirectly