PromptBase
Upgrade
Close icon
General
Home
Marketplace
Create
Hire
Login
Chat
Sell
Explore

Prompt Details

Model
(gemini-3.0-flash)
Token size
1,394
Example input
[INSERT: What this workflow accomplishes]: Fulfill WhatsApp orders and notify operations team [INSERT: Zapier / Make / n8n / Manual spreadsheets / Email / Other]: Make (Integromat), WhatsApp Business API, Shopify, Slack [INSERT: List each step, note which are manual vs automated]: 1. MANUAL Monitor WhatsApp for incoming messages 2. AUTO Make scenario detects keyword "ORDER" 3. AUTO Auto-reply requests customer details 4. MANUAL Verify customer details are complete 5. MANUAL Create order in Shopify 6. MANUAL Check product availability 7. AUTO Send Slack notification to ops team 8. MANUAL Follow up on payment 9. MANUAL Confirm order to customer via WhatsApp [INSERT: What starts this workflow]: Customer sends WhatsApp message containing "ORDER" [INSERT: How often does this run? Per day/week/month]: 30 orders/day
Example output
# EXAMPLE OUTPUT ## Input Provided: **Process Goal:** Fulfill WhatsApp orders and notify operations team **Current Tools:** Make (Integromat), WhatsApp Business API, Shopify, Slack **Current Steps:** 1. [MANUAL] Monitor WhatsApp for incoming messages 2. [AUTO] Make scenario detects keyword "ORDER" 3. [AUTO] Auto-reply requests customer details 4. [MANUAL] Verify customer details are complete 5. [MANUAL] Create order in Shopify 6. [MANUAL] Check product availability 7. [AUTO] Send Slack notification to ops team 8. [MANUAL] Follow up on payment 9. [MANUAL] Confirm order to customer via WhatsApp **Trigger:** Customer sends WhatsApp message containing "ORDER" **Volume:** ~30 orders/day **Pain Points:** Missed messages, duplicate orders, slow order creation, no confirmation customers receive their order status --- ## Automation Analysis: WhatsApp Order Fulfillment **Quick Win:** Auto-create draft orders in Shopify instead of manual entry (saves 3-5 min per order × 30 orders = 90-150 min/day) **Verdict:** HIGH automation potential — 6 of 9 steps are manual, most are rule-based and automatable --- ### 1. Workflow Map ``` [Customer WhatsApp] ↓ [Make: Keyword Detection] ──── LINEAR ↓ [Auto-Reply: Request Details] ─── LINEAR ↓ [MANUAL: Verify Details] ──── CONDITIONAL (complete? Y/N) ↓ [MANUAL: Create Shopify Order] ─── LINEAR ↓ [MANUAL: Check Inventory] ──── CONDITIONAL (in stock? Y/N) ↓ [Slack Notification] ──── LINEAR ↓ [MANUAL: Payment Follow-up] ──── LOOP (until paid) ↓ [MANUAL: Confirm to Customer] ──── LINEAR ``` **Patterns identified:** - Mostly LINEAR (sequential) - 2 CONDITIONAL points (details complete, stock available) - 1 LOOP (payment follow-up) - No SPLIT/COMBINE — single path --- ### 2. Manual Step Inventory | Step | What Human Does | Time/Order | Frequency | Error-Prone? | |------|-----------------|------------|-----------|--------------| | Monitor WhatsApp | Watch for messages | 2-5 min | Continuous | HIGH — messages missed | | Verify details | Check name, address, product | 1-2 min | 30/day | MED — inconsistent checks | | Create Shopify order | Copy-paste from WhatsApp | 3-5 min | 30/day | HIGH — typos, wrong SKU | | Check inventory | Look up stock in Shopify | 1-2 min | 30/day | MED — stale data | | Payment follow-up | Send reminder, check bank | 2-3 min | 30/day | HIGH — forgotten | | Confirm to customer | Type confirmation message | 1-2 min | 30/day | LOW | **Total manual time:** 10-19 min/order × 30 = **5-9.5 hours/day** --- ### 3. Automation Candidates | Step | Value (1-5) | Complexity (1-5) | Priority Score | |------|-------------|------------------|----------------| | Create Shopify order | 5 | 2 | **15** | | Check inventory | 4 | 1 | **20** | | Payment follow-up | 4 | 3 | **12** | | Verify details | 3 | 2 | **12** | | Confirm to customer | 3 | 1 | **15** | | Monitor WhatsApp | 3 | 4 | **6** | **Priority Order:** Inventory check → Order creation → Customer confirmation → Payment follow-up → Detail verification --- ### 4. Pattern Analysis **LINEAR sections:** Easy to automate — just chain the steps **CONDITIONAL: Details Complete?** - Can be automated with validation rules - Required fields: Name, Phone, Address, Product - If missing → Auto-reply requesting specific field - Complexity: LOW **CONDITIONAL: Stock Available?** - Shopify API returns inventory count - If 0 → Auto-reply "Out of stock, notify when available?" - If >0 → Proceed - Complexity: LOW **LOOP: Payment Follow-up** - Harder to fully automate - Can automate: Scheduled reminders (Day 1, Day 3, Day 7) - Keep manual: Final decision to cancel unpaid order - Complexity: MEDIUM --- ### 5. Automation Boundaries ✅ **AUTOMATE NOW:** - Inventory check (Shopify API query) - Draft order creation (WhatsApp data → Shopify) - Order confirmation message (template + order ID) - Payment reminder sequence (scheduled messages) ⏸️ **KEEP MANUAL:** - Payment verification (bank reconciliation) - Exception handling (custom requests, complaints) - Cancellation decisions 🔜 **AUTOMATE LATER:** - Smart detail validation (fuzzy address matching) - Payment gateway integration (auto-mark paid) - Full chatbot for product selection --- ### 6. Dependency Chain ``` [Inventory Check automated] ↓ enables [Draft Order Creation automated] ↓ enables [Order ID exists] ↓ enables [Confirmation Message automated] ↓ enables [Payment Reminder Sequence automated] ``` **Must do first:** Inventory check — everything else depends on knowing stock status --- ### 7. Tool Recommendations | Step | Tool | Why | Complexity | |------|------|-----|------------| | Inventory check | Make + Shopify module | Native integration, real-time | LOW | | Draft order creation | Make + Shopify "Create Draft Order" | Preserves manual payment approval | LOW | | Confirmation message | Make + WhatsApp module | Template with variables | LOW | | Payment reminders | Make + Delay + WhatsApp | Scheduled sequence | MEDIUM | | Detail validation | Make + Filter module | Check required fields | LOW | --- ### 8. Human Checkpoints **Keep humans at:** 1. **Payment verification** — Bank transfers need manual matching until payment gateway added 2. **Exception handling** — "Can I change my order?" requires judgment 3. **Inventory override** — "We have 1 left, VIP customer wants it" decisions 4. **Complaint escalation** — Auto-detect negative sentiment, route to human --- ### 9. Implementation Sequence **Phase 1: Quick Wins (This Week, ~4 hours)** - [ ] Add Shopify inventory lookup to Make scenario - [ ] Auto-reply with "Out of stock" if inventory = 0 - [ ] Create draft order automatically (not confirmed) - [ ] Send order confirmation template with draft order ID *Expected result: 3-5 min saved per order, zero missed inventory issues* **Phase 2: Core Automation (Week 2-3, ~8 hours)** - [ ] Add detail validation (check all required fields present) - [ ] Auto-request missing fields with specific prompts - [ ] Build payment reminder sequence (Day 1, 3, 7) - [ ] Add duplicate detection (same customer + product in 24hr = flag) *Expected result: 7-10 min saved per order, no duplicate orders* **Phase 3: Full Optimization (Month 2, ~20 hours)** - [ ] Integrate payment gateway (Stripe/PayPal) - [ ] Auto-confirm order when payment received - [ ] Build product catalog chatbot (customer selects from menu) - [ ] Add order tracking integration *Expected result: Near-full automation, human only for exceptions* --- ### 10. ROI Projection | Automation | Current Time | After Automation | Saved/Order | Saved/Day (30 orders) | |------------|--------------|------------------|-------------|----------------------| | Order creation | 3-5 min | 0 min | 4 min | **120 min** | | Inventory check | 1-2 min | 0 min | 1.5 min | **45 min** | | Confirmation | 1-2 min | 0 min | 1.5 min | **45 min** | | Payment follow-up | 2-3 min | 0.5 min (exceptions) | 2 min | **60 min** | **Total daily savings:** ~270 min = **4.5 hours/day** **Monthly savings:** ~90 hours **Annual savings:** ~1,080 hours At $25/hr labor cost = **$27,000/year saved** --- ### Summary | Category | Finding | |----------|---------| | **Top 3 Automation Wins** | 1. Draft order creation 2. Inventory check 3. Confirmation messages | | **Quick Fix Today** | Add Shopify inventory lookup before order creation | | **Biggest Risk Removed** | Duplicate orders (add 24hr dedup check) | | **Keep Manual For Now** | Payment verification until gateway integrated | | **System Upgrade Later** | Full payment gateway + product catalog chatbot |
♊️ Gemini

Automation Opportunity Analyzer

Add to Cart
Instant accessInstant access
Usage rightsCommercial use
Money-back guaranteeMoney‑back
By purchasing this prompt, you agree to our terms of service
GEMINI-3.0-FLASH
Tested icon
Guide icon
4 examples icon
Free credits icon
identifies which parts of manual workflows should be automated, which should stay manual, and in what order to implement. You understand workflow patterns (linear, split, conditional, combine, loops) and know where automation creates leverage vs where it creates brittleness.
...more
Added over 1 month ago
Report
Browse Marketplace