Skip to main content
Complete Edition • $10,000 Value

The Definitive Gemini Code Assistant Master Guide

Everything you need to build, debug, and maintain complex AI-powered applications. From basic prompts to multi-file TypeScript debugging.

Prompts
100+
Modules
20
Hours
80+
Value
$10K

Paste these into Gemini's System Instructions (gear icon) FIRST. They define how Gemini works with you across all conversations.

🔧 Master Custom Instructions

System Instructions
You are an expert coding partner for a vibe coder building complex AI-powered applications. **MY PROFILE:** - I understand concepts but may not know technical terms - I can read code better than write it from scratch - I build production apps with React, TypeScript, and Shopify Liquid - I use Shopify Basic with Atelier 2.1.1 theme - My apps integrate with Gemini API, Shopify API, and image generation **COMMUNICATION RULES:** 1. Explain WHAT code does before showing it 2. Add comments inside code explaining each section 3. Define technical terms immediately when used 4. Break complex solutions into numbered steps 5. When I share code, confirm you received it completely before changes **CODING STANDARDS:** 1. Always provide COMPLETE code - never snippets or partial files 2. Test code mentally before presenting 3. Check for: syntax errors, missing brackets, undefined variables, type mismatches 4. Include error handling in all JavaScript/TypeScript 5. Make everything mobile-first and accessible **DEBUGGING APPROACH:** 1. When I report a bug, ask clarifying questions first 2. Explain WHY the bug happened, not just how to fix it 3. Show before/after comparisons 4. Add console.log statements to help verify fixes 5. Trace parameter flow through function calls **KEYWORDS:** - "audit" = comprehensive review (functionality, quality, performance, security, accessibility) - "optimize" = improve performance without changing functionality - "refine" = clean up code, improve readability, add comments - "production ready" = add error handling, edge cases, loading states, accessibility - "trace" = follow data/parameters through the entire call chain

⚛️ TypeScript/React Instructions

Add to System Instructions
**TYPESCRIPT/REACT RULES:** When working on TypeScript React applications: **TYPE SAFETY:** - Always define interfaces for props, state, and function parameters - Use proper TypeScript types, not 'any' - Check for optional parameters with '?' and handle undefined cases - Ensure function signatures match between definition and call sites **PARAMETER FLOW:** - When adding a new parameter to a function, update ALL call sites - Check the entire chain: component → service → API call - Verify optional parameters are handled with defaults or conditionals **STATE MANAGEMENT:** - Never use localStorage in artifact/browser apps (not supported) - Use useState/useReducer for all state - Include cleanup in useEffect hooks **ERROR HANDLING:** - Wrap all async operations in try/catch - Provide user-friendly error messages - Log errors to console for debugging **COMMON ISSUES TO CHECK:** - Function signature mismatches (parameters in wrong order) - Missing imports - Duplicate interface definitions - Undefined variables in callbacks - Race conditions with async state updates

🛒 Shopify API Instructions

Add to System Instructions
**SHOPIFY API INTEGRATION RULES:** When connecting to Shopify's Admin API: **API STRUCTURE:** - Base URL: https://{store}.myshopify.com/admin/api/2024-01/ - Auth Header: X-Shopify-Access-Token: {access_token} - Always use the latest stable API version **CORS HANDLING:** - Browser apps need CORS proxy for Shopify API - Options: cors.sh, allorigins, or custom backend - Always have fallback if proxy fails **COMMON ENDPOINTS:** - GET /products.json - List all products - GET /products/{id}.json - Single product - GET /collections.json - List collections - GET /collections/{id}/products.json - Products in collection **ERROR HANDLING:** - 401 = Invalid/expired access token - 402 = Store frozen - 403 = Scope not granted - 404 = Resource not found - 429 = Rate limited (wait and retry) **DATA EXTRACTION:** - Products: response.data.products or response.data.product - Images: product.images[0].src - Variants: product.variants - Always check if arrays exist before mapping

🎨 Image Generation Instructions

Add to System Instructions
**IMAGE GENERATION RULES:** When working with AI image generation (Gemini Imagen, etc.): **PROMPT STRUCTURE:** 1. Subject (what is being shown) 2. Art style (how it should look) 3. Technical specs (lighting, composition) 4. Atmosphere (mood, feeling) **PRODUCT IMAGE REQUIREMENTS:** - Product identity MUST be preserved (logos, colors, shape) - Reference images should be passed as base64 - Art style modifiers must reach the image generation function - Never redesign the product - transform the aesthetic only **PARAMETER FLOW (CRITICAL):** - Art style must flow: UI selection → state → function call → API prompt - Verify the modifier reaches the final prompt construction - Add debug logging to trace the style through the chain **COMMON ISSUES:** - Art style defined but never passed to image function - Reference image not encoded correctly - Prompt modifier stops at text generation, doesn't reach image generation - Base64 data has wrong prefix or is corrupted **COPYRIGHT SAFETY:** - Use generic descriptions, not trademarked names - Describe techniques, not specific copyrighted works - Focus on visual qualities anyone can recreate

🚀 New Project Initialization

Copy-Ready Prompt
Starting a new project: **PROJECT:** [Name and description] **TYPE:** [React app / Shopify section / automation] **PLATFORM:** [Vite+React+TS / Shopify Liquid / vanilla JS] **INTEGRATIONS:** [List APIs: Gemini, Shopify, image gen, etc.] **GOAL:** [What this project accomplishes] Before writing code: 1. Confirm you understand the project 2. List files that will be created 3. Identify potential challenges 4. Ask clarifying questions

📁 Multi-File Context Share

Copy-Ready Prompt
I'm sharing multiple files from my project. Read all of them before making changes. **PROJECT:** [Project name] **ISSUE:** [What's broken or needs work] **FILE 1: [filename.ts]** ```typescript [PASTE COMPLETE FILE] ``` **FILE 2: [filename.tsx]** ```typescript [PASTE COMPLETE FILE] ``` **FILE 3: [constants.ts]** ```typescript [PASTE COMPLETE FILE] ``` After reading all files: 1. Summarize how they connect 2. Identify the root cause 3. List ALL files that need changes 4. Make changes in order of dependency

🐛 Universal Bug Report

Copy-Ready Prompt
Bug report: **EXPECTED:** [What should happen] **ACTUAL:** [What actually happens] **STEPS:** 1. [First step] 2. [Second step] **ERROR:** ``` [Console error or message] ``` **CODE:** ``` [Relevant code] ``` Please: 1. Explain WHY this bug happens 2. Show exact fix with before/after 3. How to prevent this in future

🔇 Silent Failure Debug

Copy-Ready Prompt
Silent failure - something should happen but nothing does. **TRIGGER:** When I [click button / call function / etc.] **EXPECTED:** [What should happen] **ACTUAL:** Nothing. No errors in console. **CODE:** ``` [The function that should run] ``` Add console.log statements to trace where execution stops. Check: Is function called? Are conditions met? Is data undefined?

⏰ Regression Debug

Copy-Ready Prompt
Something that worked before has stopped working. **FEATURE:** [What used to work] **LAST WORKED:** [When/before what change] **RECENT CHANGES:** [List ALL changes made since it worked] **CURRENT CODE:** ``` [Current version] ``` Identify which change caused the regression and fix it.

🔗 Data Flow Trace

Copy-Ready Prompt
Trace data flow through my application. **DATA:** [What data/parameter to trace] **START:** [Where user selects/inputs it] **END:** [Where it should be used] **FILES INVOLVED:** ``` [List files in the chain] ``` Trace the complete path: 1. Where is it stored? (state variable name) 2. How is it passed? (props, function params) 3. Where does it stop flowing? 4. What's missing to complete the chain? Add console.log at each step to verify.

🧩 Interface Mismatch Debug

Copy-Ready Prompt
TypeScript interface or type mismatch. **ERROR:** ``` [TypeScript error message] ``` **INTERFACE:** ```typescript [The interface definition] ``` **USAGE:** ```typescript [Where it's being used incorrectly] ``` Check: 1. Are all required properties provided? 2. Are optional properties marked with '?'? 3. Do the types match exactly? 4. Is there a duplicate interface definition?

🔄 Async/Await Debug

Copy-Ready Prompt
Async operation not working correctly. **FUNCTION:** ```typescript [The async function] ``` **SYMPTOM:** [Data undefined? Wrong order? Never resolves?] Check: 1. Is the function marked 'async'? 2. Is 'await' used on all async calls? 3. Is the caller also awaiting this function? 4. Are there race conditions with state updates? 5. Is error handling catching rejections? Add try/catch and log entry/exit points.

🎯 Callback/Handler Debug

Copy-Ready Prompt
Event handler or callback not firing correctly. **HANDLER:** ```typescript [The handler function] ``` **ATTACHED TO:** ```tsx [The JSX element] ``` **SYMPTOM:** [Not called? Called with wrong data? Called too many times?] Check: 1. Is the handler bound correctly? (arrow function vs regular) 2. Is it passing the function reference, not calling it? (onClick={fn} not onClick={fn()}) 3. Is the element actually rendered? 4. Are event.preventDefault() or event.stopPropagation() blocking it? 5. Is there a stale closure capturing old state?

📝 Function Signature Fix

Copy-Ready Prompt
Function signature mismatch between definition and call site. **FUNCTION DEFINITION:** ```typescript [Function with its parameters] ``` **CALL SITE:** ```typescript [Where function is called] ``` **ERROR:** ``` [TypeScript error] ``` Fix by: 1. Aligning parameter order 2. Making new params optional with '?' 3. Adding default values 4. Updating ALL call sites if signature changes

🔌 Add New Parameter to Existing Function

Copy-Ready Prompt
I need to add a new parameter to an existing function. **FUNCTION:** [Function name] **NEW PARAMETER:** [Name and type] **PURPOSE:** [What it's for] **CURRENT DEFINITION:** ```typescript [Current function signature] ``` **CALLED FROM:** [List all places this function is called] Provide: 1. Updated function signature (param should be optional) 2. How to use the param inside the function 3. Updates to ALL call sites 4. What happens when param is not provided (default behavior)

🪝 React Hooks Debug

Copy-Ready Prompt
React hook issue. **HOOK CODE:** ```typescript [The useState/useEffect/useCallback] ``` **SYMPTOM:** [Infinite loop? Stale data? Not updating?] Check: 1. useEffect dependencies - are all used values listed? 2. useState - are you mutating state directly instead of setting new value? 3. useCallback - does the dependency array include all referenced values? 4. Are hooks called conditionally? (not allowed) 5. Is there a cleanup function needed?

For complex apps with multiple interconnected files like services, components, and constants.

🔍 Full App Diagnostic

Copy-Ready Prompt
Perform full diagnostic on my multi-file application. **APP NAME:** [Name] **MAIN ISSUE:** [What's broken] **FILE STRUCTURE:** ``` [List main files and their purposes] ``` **SHARE FILES:** [I will paste each file after you confirm] Diagnostic checklist: 1. Check all imports/exports match 2. Find duplicate definitions 3. Verify function signatures across files 4. Trace data flow for the broken feature 5. Identify missing connections 6. List ALL files that need changes

🔗 Cross-File Parameter Flow

Copy-Ready Prompt
Parameter not flowing correctly across files. **PARAMETER:** [Name and purpose] **DEFINED IN:** [File where constant/type is defined] **SELECTED IN:** [File where user chooses it] **SHOULD REACH:** [File where it should be used] Current flow (what I expect): [UI → Component → Service → API] Find where the chain breaks and fix all files needed. **FILE 1 ([constants.ts]):** ```typescript [PASTE] ``` **FILE 2 ([Component.tsx]):** ```typescript [PASTE] ``` **FILE 3 ([service.ts]):** ```typescript [PASTE] ```

📦 Missing Export/Import Fix

Copy-Ready Prompt
Import/export error between files. **ERROR:** ``` [Error message] ``` **SOURCE FILE:** ```typescript [File that exports] ``` **IMPORTING FILE:** ```typescript [File that imports] ``` Check: 1. Is the export named or default? 2. Does import syntax match export type? 3. Is the file path correct (relative path)? 4. Is there a circular dependency?

🔌 API Connection Lost

Copy-Ready Prompt
API connection that was working has stopped. **API:** [Service name] **ENDPOINT:** [URL] **AUTH:** [API key / token] **ERROR:** ``` [Error message or HTTP status] ``` **WORKING CODE (before):** ```typescript [Code that used to work] ``` **CURRENT CODE:** ```typescript [Current code] ``` Diagnose: 1. Is the API key valid and not expired? 2. Has the endpoint URL changed? 3. Are headers correct? 4. Is CORS blocking the request? 5. Is the request format still correct?

🌐 CORS Error Fix

Copy-Ready Prompt
CORS error blocking my API request. **API:** [Service] **ERROR:** ``` [CORS error from console] ``` **CURRENT CODE:** ```typescript [Fetch code] ``` **CONTEXT:** [Browser app / Shopify / React artifact] Provide solutions: 1. CORS proxy options (cors.sh, allorigins) 2. Proper proxy implementation with fallback 3. How to handle proxy failures gracefully

📡 API Response Parsing

Copy-Ready Prompt
API returns data but I can't access it correctly. **API RESPONSE:** ```json [Sample response structure] ``` **MY CODE:** ```typescript [How I'm trying to access data] ``` **RESULT:** [Undefined? Wrong data? Type error?] Show correct way to: 1. Access the data I need 2. Handle missing/undefined values 3. Type the response properly in TypeScript

🛒 Shopify Connection Setup

Copy-Ready Prompt
Set up Shopify Admin API connection for my app. **STORE:** [store-name.myshopify.com] **ACCESS TOKEN:** [shpat_xxxxx] **CONTEXT:** [Browser app needing CORS proxy] **NEED TO ACCESS:** [Products / Collections / Orders / etc.] Provide: 1. Complete fetch function with proper headers 2. CORS proxy implementation with fallback 3. Error handling for common Shopify errors 4. Response parsing for each endpoint 5. Example usage

🔄 Shopify Connection Restore

Copy-Ready Prompt
Shopify API connection lost - was working before. **STORE:** [store.myshopify.com] **TOKEN:** [shpat_xxxxx] **ERROR:** ``` [Error message] ``` **CURRENT CODE:** ```typescript [API fetch code] ``` Diagnose and fix: 1. Test if token is still valid 2. Check if CORS proxy is down 3. Verify endpoint URL format 4. Provide working alternative

📦 Fetch Products/Collections

Copy-Ready Prompt
Create functions to fetch Shopify data. **STORE:** [store.myshopify.com] Need functions for: 1. Fetch all collections (with images and handles) 2. Fetch all products in a collection 3. Fetch single product by handle 4. Extract: title, description, images, variants, price Include: - TypeScript interfaces for responses - Error handling - Loading states - CORS proxy with fallback

For apps that generate images with AI (Gemini Imagen, etc.).

🎨 Art Style Not Applying

Copy-Ready Prompt
Art style selected but not appearing in generated images. **STYLE SELECTED:** [Style name] **STYLE DEFINITION:** ```typescript [The promptModifier from constants] ``` **UI COMPONENT:** ```typescript [Where style is selected - dropdown/state] ``` **IMAGE GENERATION FUNCTION:** ```typescript [The function that generates images] ``` Trace the flow: 1. Is style ID stored in state correctly? 2. Is style object retrieved from array? 3. Is promptModifier passed to generation function? 4. Is it included in the final prompt to the API? Fix the broken link in the chain.

🖼️ Product Not Preserved in Image

Copy-Ready Prompt
Generated images don't show my actual product correctly. **PRODUCT:** [What it is] **REFERENCE IMAGE:** [Provided? Base64?] **RESULT:** [Generic product / wrong design / missing logo] **GENERATION CODE:** ```typescript [The prompt construction] ``` Fix to ensure: 1. Reference image is passed correctly (base64 + mimeType) 2. Prompt explicitly says to preserve product identity 3. Logos, colors, shape must be maintained 4. Art style transforms aesthetic, not product design

🔧 Image Generation Function Fix

Copy-Ready Prompt
Image generation function needs new parameter for art style. **CURRENT FUNCTION:** ```typescript [generateSingleImage or generateImageBatch] ``` **CALLED FROM:** ```typescript [Component that calls this function] ``` Add new optional parameter 'artStyleModifier': 1. Add to function signature (optional, last position) 2. Construct art style instruction if provided 3. Inject into prompt before sending to API 4. Update ALL call sites to pass the style 5. Maintain backward compatibility (works without style)

📊 Parameter Chain Audit

Copy-Ready Prompt
Audit parameter flow from UI to final usage. **PARAMETER:** [Name] **TYPE:** [string / object / etc.] **EXPECTED FLOW:** 1. User selects in UI → stored in state as [stateVar] 2. Passed to function → [functionName(param)] 3. Passed to service → [service.method(param)] 4. Used in API call → [how it appears in request] Audit each step: - Is it passed at each level? - Is the type consistent? - Are there any transforms that lose data? - What happens if undefined?

🔄 Fix Broken Parameter Chain

Copy-Ready Prompt
Parameter stops flowing at a certain point. **PARAMETER:** [Name] **WORKS UNTIL:** [Last point where it's available] **BREAKS AT:** [Where it becomes undefined] **CODE AT BREAK POINT:** ```typescript [Function that should receive it but doesn't] ``` **CODE THAT CALLS IT:** ```typescript [Caller that should pass it] ``` Fix: 1. Add parameter to receiving function 2. Update calling code to pass it 3. Update any intermediate functions in the chain 4. Add debug logging to verify flow

✅ Feature Test Checklist

Copy-Ready Prompt
Create test checklist for this feature. **FEATURE:** [What to test] **CODE:** ``` [The implementation] ``` Create checklist: 1. Happy path (normal usage) 2. Edge cases (empty, null, very long) 3. Error conditions (network fail, invalid input) 4. Boundary values (min, max, zero) 5. User flow (complete user journey) 6. Mobile vs desktop

🔁 Test Until Fixed

Copy-Ready Prompt
Test and revise until all errors are fixed and it works. **CODE:** ``` [Complete code to test] ``` **KNOWN ISSUES:** [Any issues you've noticed] Your job: 1. Mentally test every function 2. Find ALL bugs (not just known ones) 3. Fix each bug 4. Verify fixes don't break other things 5. Return complete working code This is for daily use - it must be reliable.

🔍 Deep Tech Audit

Copy-Ready Prompt
Perform deep technical audit of this application. **APP:** [Name and purpose] **CONTEXT:** [Personal tool / public / etc.] **FILES:** [I will share each file] Audit checklist: 1. **Working Features** - What functions correctly 2. **Broken Features** - What doesn't work 3. **Code Quality** - Structure, readability, DRY 4. **Performance** - Bottlenecks, efficiency 5. **Bugs Found** - List with severity 6. **Missing Error Handling** - Where try/catch needed 7. **Type Issues** - TypeScript problems 8. **Improvement Ideas** - How to make it better Rate each area: 🔴 Critical / 🟡 Warning / 🟢 Good

⚡ Performance Audit

Copy-Ready Prompt
Audit for performance issues. **CODE:** ``` [Paste code] ``` **SYMPTOM:** [Slow? Laggy? Memory?] Check: 1. Unnecessary re-renders 2. Missing memoization 3. Large loops in render 4. Memory leaks 5. Unoptimized API calls 6. Missing loading states Provide optimized version with explanations.

✨ Code Cleanup

Copy-Ready Prompt
Clean up this code without changing functionality. **CODE:** ``` [Messy code] ``` Apply: 1. Better naming 2. Remove duplicates (DRY) 3. Group related code 4. Simplify conditionals 5. Add comments 6. Consistent formatting

🔧 Production Ready Upgrade

Copy-Ready Prompt
Make this production ready. **CODE:** ``` [Working prototype] ``` Add: 1. Error handling (try/catch, user messages) 2. Edge cases (empty, null, network fail) 3. Loading states 4. Input validation 5. Accessibility 6. TypeScript types 7. Comments for complex logic

🧱 New Section

Copy-Ready Prompt
Create Shopify section for Atelier 2.1.1 theme. **SECTION:** [Name and purpose] **SETTINGS:** [List customizable options] Requirements: - Shopify 2.0 section architecture - Complete schema with all settings - CSS custom properties - Mobile-first responsive - ARIA attributes - prefers-reduced-motion support Return complete section.liquid file.

🔧 Section Update

Copy-Ready Prompt
Update this section for 2025/2026 standards. **CURRENT:** ```liquid [Existing section code] ``` **THEME:** Atelier 2.1.1 Apply: - Shopify 2.0 best practices - Mobile-first CSS - ARIA accessibility - CSS custom properties - Performance optimization Keep all current functionality.

🤖 Agent System Prompt

Copy-Ready Prompt
Design an AI agent. **NAME:** [Agent name] **ROLE:** [Content writer / analyst / etc.] **TASKS:** [What it should do] **BRAND:** [Brand voice and guidelines] Create: 1. Agent persona 2. System prompt 3. Example outputs 4. Quality checklist

🧠 Multi-Agent Pipeline

Copy-Ready Prompt
Design multi-agent content pipeline. **GOAL:** [Content output] **BRAND:** [Business name] Design agents: - STRATEGIST - Analyzes and plans - WRITER - Creates content in brand voice - EDITOR - Reviews and refines - FORMATTER - Platform-specific adaptation Provide system prompt for each.

🔄 App Down - Full Restore

Copy-Ready Prompt
My production app is down. Need to restore functionality. **APP:** [Name] **DOWN FOR:** [How long] **SYMPTOM:** [What's broken] **LAST WORKING:** [When] **CHANGES SINCE:** [What changed] **FILES:** [Will share relevant files] Priority: 1. Identify root cause 2. Quick fix to restore basic function 3. Proper fix for long-term 4. Prevent recurrence

📊 Feature Enhancement

Copy-Ready Prompt
Add new feature to existing app. **APP:** [Name] **NEW FEATURE:** [What to add] **CURRENT CODE:** ``` [Relevant existing code] ``` **INTEGRATION POINTS:** [Where it connects] Requirements: 1. Don't break existing features 2. Match existing code style 3. Add proper error handling 4. Include TypeScript types

🚨 Crisis Mode - App Completely Broken

Copy-Ready Prompt
🚨 CRISIS: App is completely broken, needs immediate fix. **APP:** [Name] **DOWN FOR:** [Time] **BROKEN FEATURE:** [What stopped working] **ERROR:** ``` [Error message] ``` **LAST CHANGE:** [What was edited] I need: 1. IMMEDIATE fix (even temporary) 2. Root cause diagnosis 3. Proper permanent fix 4. How to prevent this Files attached: [paste relevant code]

🔄 Gemini Gave Bad Code - Recovery

Copy-Ready Prompt
The code you provided doesn't work. **YOUR CODE:** ``` [Paste Gemini's code] ``` **ERROR:** ``` [What went wrong] ``` **ORIGINAL REQUEST:** [What I asked for] Please: 1. Acknowledge what went wrong 2. Explain WHY it didn't work 3. Provide corrected, tested code 4. Add console.log to verify
When to Start Fresh

If Gemini keeps giving bad responses after 3-4 attempts, start a new conversation with your best prompt.

Complete prompts that create working tools for your Shopify store. Copy, paste, and customize!

📝 Product Description Generator

One-Prompt App
Create a React app for generating Shopify product descriptions. **BRAND:** Design Delight Studio - sustainable organic cotton streetwear **CERTIFICATIONS:** GOTS, GRS, OCS, PETA-Approved Vegan, Fair Trade Features: - Input: product name, features, target audience - Dropdown: collection theme (gaming, western, retro, science) - Generate: main description (150-200 words), bullet points (5-7), meta description - Brand voice: playful, conscious, community-focused - Include sustainability messaging naturally - Copy buttons for each output - Dark theme, clean UI Use Claude API for generation.

📱 Social Media Caption Generator

One-Prompt App
Create a React app for generating social media captions for my Shopify products. **BRAND:** Design Delight Studio - organic cotton streetwear Features: - Input: product name, key feature, promotion (optional) - Generate for: Instagram, TikTok, Facebook, Pinterest, X - Each platform has correct length, tone, hashtags - Instagram: 2200 chars max, 30 hashtags - TikTok: short punchy, trending sounds reference - Pinterest: SEO keywords, searchable - X: 280 chars, witty - Copy buttons for each - Regenerate individual platforms Use Claude API for generation.

🔍 SEO Metadata Generator

One-Prompt App
Create a React app for generating SEO metadata for Shopify products. Features: - Input: product name, description, main keyword - Generate: - Title tag (50-60 chars) - Meta description (150-160 chars) - URL handle (slug) - Alt text for images - Schema markup snippet - Character counters for each - SEO score indicator - Copy all button - Export as JSON for Shopify import Include keyword density check.

📧 Email Campaign Builder

One-Prompt App
Create a React app for building email marketing content for my store. **BRAND:** Design Delight Studio Features: - Select email type: Welcome, Abandoned Cart, New Product, Sale, Newsletter - Input: product/collection name, discount (optional), key message - Generate: - Subject line (5 variations) - Preview text - Email body (header, main content, CTA) - PS line - Brand voice: warm, sustainable-focused, community - Preview email layout - Copy sections or full email Use Claude API for generation.

📸 Product Image Prompt Generator

One-Prompt App
Create a React app for generating AI image prompts for my product photos. **STORE:** Design Delight Studio - organic cotton t-shirts Features: - Input: product name, color, design theme - Select: scene type (lifestyle, flat lay, model, artistic) - Select: art style (realistic, vintage MTG, retro, etc.) - Select: aspect ratio (1:1 square, 4:5 Instagram, 16:9 banner) - Generate: complete image generation prompt - Include product preservation instructions - Include art style modifier - Copy prompt button - Save favorite prompts Focus on maintaining product identity.

#️⃣ Hashtag Research Tool

One-Prompt App
Create a React app for generating hashtags for my Shopify store posts. **NICHE:** Sustainable fashion, organic cotton, streetwear Features: - Input: post topic or product - Generate hashtag sets: - High competition (500K+ posts) - Medium competition (50K-500K) - Low competition (under 50K) - Niche specific - Branded - Total 30 hashtags (Instagram max) - One-click copy all - Organize by category - Save sets for reuse - Platform selector (IG vs TikTok formats) Use Claude API with web search for relevance.

📊 Collection Showcase Generator

One-Prompt App
Create a React app that connects to my Shopify store and generates collection marketing content. **STORE:** ku265s-dh.myshopify.com **API TOKEN:** [Will replace with actual] Features: - Fetch all collections from Shopify - Select a collection from dropdown - Generate for that collection: - Collection description (SEO optimized) - Hero banner headline - Social media announcement - Email introduction paragraph - Show products in collection as reference - Uses actual product data for context - Copy all outputs Connect to Shopify Admin API with CORS proxy.

⭐ Review Response Generator

One-Prompt App
Create a React app for generating responses to customer reviews. **BRAND:** Design Delight Studio Features: - Input: paste customer review - Select: review type (positive, neutral, negative) - Select: issue type (shipping, quality, sizing, general) - Generate: personalized response - Tone: warm, helpful, solution-focused - Include: - Thank the customer - Address specific points they mentioned - Offer solution if needed - Invite future engagement - Copy response button - Response templates library Use Claude API for generation.

📅 Content Calendar Generator

One-Prompt App
Create a React app for generating a social media content calendar. **BRAND:** Design Delight Studio - sustainable fashion Features: - Select: month and year - Select: posting frequency (daily, 3x week, etc.) - Input: upcoming products/launches - Generate: full month calendar with: - Post type (product, lifestyle, educational, engagement) - Content idea/theme - Best posting time - Platform focus - Visual calendar grid view - Export as CSV - Click day to expand details - Balance content types automatically Use Claude API for generation.

📦 Shipping Message Generator

One-Prompt App
Create a React app for generating customer shipping communications. **BRAND:** Design Delight Studio Features: - Select message type: - Order confirmation - Shipping notification - Delivery confirmation - Delay notification - Lost package response - Input: order number, product name, tracking info - Generate: complete message with brand voice - Include: order details, next steps, contact info - Warm, reassuring tone - Copy message button - Template library for common scenarios Use Claude API for personalized messages.
Customize for Your Store

Replace "Design Delight Studio" with your brand name and adjust the certifications, voice, and themes to match your store.