Skill IAMonitor NewslettersSales

Newsletter Monitor — turn industry newsletters into a buying-signal feed — Claude Skill

Une compétence Claude pour Claude Code par Gooseworks — exécuter /newsletter-monitor dans Claude·Mis à jour le 10 avr. 2026

Compatible avecClaude·ChatGPT·OpenClaw

Scan inbox newsletters for keyword campaign matches

  • Scans inbox via AgentMail for newsletter signals
  • Configurable keyword campaigns per topic
  • Extracts matched keywords and context snippets
  • Surfaces company mentions
  • Outputs structured signal feed

Pour qui

Ce qu'il fait

Industry newsletter intelligence

Stop reading 20 newsletters per week — get the signals that match your buying triggers automatically.

Acquisition watch

Track acquisitions and mergers in your space the moment they're announced in industry newsletters.

Hiring signal feed

Get hiring news from industry newsletters delivered as actionable signals.

Fonctionnement

1

Subscribe to relevant industry newsletters

2

Configure keyword campaigns per signal type

3

Scan incoming newsletters for matches

4

Extract matched snippets and company mentions

5

Output signal feed for follow-up

Métriques améliorées

Lead Generation
More qualified leads from converting newsletter signals into outbound
Sales

Compatible avec

Envie d'utiliser Newsletter Monitor ?

Choisissez comment commencer.

Exécuter dans Claude Code
Gratuit. Open source.

Installez et exécutez ce skill localement sur votre ordinateur.

1
Installer Claude Code

Ouvrez un terminal sur votre ordinateur et collez cette commande :

2
Installer le skill

Cela télécharge le skill avec tous ses fichiers sur votre ordinateur :

Ajoutez -g à la fin pour le rendre disponible dans tous vos projets.

3
Lancez-le

Démarrez Claude Code, puis tapez la commande :

puis
Voir la source sur GitHub
Utiliser sur ElasticFlow
Fonctionnalités d'équipe et de collaboration

Exécutez les skills depuis votre navigateur. Partagez les résultats, gérez les accès, collaborez avec votre équipe. Sans terminal.

Essai gratuit de 14 jours. Annulez à tout moment.

Newsletter Monitor

Scan an AgentMail inbox for newsletter signals using configurable keyword campaigns. Designed for monitoring accounting industry newsletters for buying signals like acquisitions, Sage Intacct migrations, staffing challenges, and technology adoption.

Quick Start

# Set your API key
export AGENTMAIL_API_KEY="your_key_here"

# Scan inbox with all campaigns (summary view)
python3 skills/newsletter-monitor/scripts/scan_newsletters.py --output summary

# Scan specific campaign, last 7 days
python3 skills/newsletter-monitor/scripts/scan_newsletters.py --campaign acquisitions --days 7 --output summary

# JSON output for downstream processing
python3 skills/newsletter-monitor/scripts/scan_newsletters.py --output json --limit 50

Dependencies

pip3 install agentmail python-dotenv

Configuration

Keyword campaigns are defined in config/campaigns.json. Each campaign has a description and a list of keywords for case-insensitive substring matching.

Built-in campaigns:

  • acquisitions - CPA firm M&A activity
  • sage_intacct - Sage Intacct migration and implementation signals
  • staffing - Accounting talent and staffing challenges
  • technology - Accounting technology adoption

CLI Options

FlagDescriptionDefault
--campaign NAMERun only a specific campaignAll campaigns
--days NOnly scan emails from last N daysNo limit
--keywords "a,b,c"Custom keywords (overrides campaigns)Use campaigns.json
--output json|summaryOutput formatjson
--inbox ADDRESSOverride inbox addressAGENTMAIL_INBOX env or [email protected]
--limit NMax messages to fetch100

Output

JSON mode (default)

Returns an array of matched messages with:

  • message_id, from, subject, date
  • matched_campaigns - which campaigns triggered
  • matched_keywords - specific keywords found
  • context_snippets - 200-char window around each match
  • companies_mentioned - capitalized multi-word phrases near matches

Summary mode

Human-readable report showing matched emails grouped by campaign with snippets and detected companies.

Downstream Skills

When newsletter signals are found, chain to:

  • company-contact-finder - look up contacts at mentioned companies
  • accounting-news-monitor - combine with direct news monitoring for fuller signal coverage