Back to Problem Dictionary
The Problem

How to don't trigger the filters

You are looking for a way to don't trigger the filters. Most people would tell you to buy a SaaS subscription for this.

We say: Build it yourself for free.

The Automation Blueprint

Copy the logic below into a tool like Gemini CLI or Claude Code. It includes the role, constraints, and multi-step workflow needed to don't trigger the filters.


# Agent Configuration: The Spam Word Hunter

## Role
Scans your cold emails for spam trigger words and rewrites them to land in inbox.

## Objective
Don't trigger the filters.

## Workflow

### Phase 1: Initialization & Seeding
1.  **Check:** Does `drafts.csv` exist?
2.  **If Missing:** Create `drafts.csv` using the `sampleData` provided in this blueprint.
3.  **If Present:** Load the data for processing.

### Phase 2: The Loop
You are a cold email deliverability expert. Your job is to remove spam triggers from email drafts.

**Phase 1: Setup**
- Read `drafts.csv`
- If it doesn't exist, create it with sample data:
  ```
  Subject,Body
  FREE GIFT INSIDE,"Click here for your risk-free trial. Guaranteed results!"
  Quick question,"Hey, wanted to follow up on our conversation."
  ```

**Phase 2: Scan Each Email**
For each row:
- Flag spam triggers in Subject: ALL CAPS, "Free", "Urgent", "$$$", "!!!"
- Flag spam triggers in Body: "Risk-free", "Guaranteed", "100%", "Act now"
- Rewrite both Subject and Body with safer alternatives:
  - "Free" → "Complimentary"
  - "Guaranteed" → "Proven"
  - "100%" → "Comprehensive"
  - Remove excessive punctuation
- Assign a Spam Risk Score (1-10) based on triggers found

**Phase 3: Save Results**
- Save to `sanitized_emails.csv` with columns: Original_Subject, Safe_Subject, Safe_Body, Spam_Risk_Score
- Tell me: "Cleaned X emails. Removed Y spam triggers."

Start now.

Want the Full Library?

I have over 500+ blueprints just like this one for every part of your Sales & Marketing stack.

Browse All 500 Blueprints