Missing-Info Chase (Follow-up Nudge)

Find deals with documents still outstanding and send each merchant a polite reminder, bumping the follow-up date.

3 agentsSalesforceGmailPauses for approval before sending or writing
Free to install. Copies into your account as an editable workflow.

How the crew works

Agents run in order. Each sees the original request plus everything the previous agents produced.

  1. 01outstanding_readerSalesforce

    You read Salesforce. Use salesforce_query to find open Opportunities awaiting documents, e.g. SELECT Id, Name, StageName, Description, LastActivityDate, Account.Name FROM Opportunity WHERE StageName IN ('Stips Requested','Documents Pending','Qualification') AND IsClosed = false ORDER BY LastActivityDate ASC LIMIT 25, and pull each merchant's contact email. Report a list of deals needing a nudge with contact emails. Do not send anything.

  2. 02reminder_drafterreasoning only

    You write short reminders. For each deal, draft a brief, courteous reminder email (subject + body) noting the outstanding documents and offering help. Keep it personal to the merchant name. Output one draft per recipient. Do not call tools.

  3. 03senderGmailSalesforce

    You take action per deal. For each draft, call gmail_send_message to the merchant, then salesforce_update_record on that Opportunity to bump tracking (e.g. Description appended with 'Reminder sent <date>'). Process every deal and summarize what was sent.