skills/composites/newsletter-monitor/SKILL.md
Scan an AgentMail inbox for newsletter signals using configurable keyword campaigns. Extracts matched keywords, context snippets, and company mentions from incoming emails. Use for monitoring accounting industry newsletters for buying signals like acquisitions, migrations, and staffing news.
npx skillsauth add gooseworks-ai/goose-skills newsletter-monitorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
# 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
pip3 install agentmail python-dotenv
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:
| Flag | Description | Default |
|------|-------------|---------|
| --campaign NAME | Run only a specific campaign | All campaigns |
| --days N | Only scan emails from last N days | No limit |
| --keywords "a,b,c" | Custom keywords (overrides campaigns) | Use campaigns.json |
| --output json\|summary | Output format | json |
| --inbox ADDRESS | Override inbox address | AGENTMAIL_INBOX env or [email protected] |
| --limit N | Max messages to fetch | 100 |
Returns an array of matched messages with:
message_id, from, subject, datematched_campaigns - which campaigns triggeredmatched_keywords - specific keywords foundcontext_snippets - 200-char window around each matchcompanies_mentioned - capitalized multi-word phrases near matchesHuman-readable report showing matched emails grouped by campaign with snippets and detected companies.
When newsletter signals are found, chain to:
development
End-to-end skill that turns a single reference image into a fully-installed, example-rendered style preset for the goose-graphics composite. Analyzes the image, writes the slim style spec, registers it in styles/index.json, generates all 7 format examples using the standard brief, renders PNGs via Playwright, and updates examples/manifest.json. Invoke with /goose-graphics-create-style.
development
Evaluate YC batch companies for investment — scrapes the YC directory, researches each company and its founders (work history, LinkedIn, website), assesses founder-company fit, and exports to Google Sheets with priority rankings. Use when asked to evaluate YC companies, research a YC batch, screen startups, or do due diligence on YC companies.
tools
Take screenshots of any website using Notte browser automation. Use when asked to screenshot, capture, or snap a webpage.
development
Search the web, platforms, and datasets. Use when asked to search, find, look up, research, or discover information from the web, YouTube, Amazon, eBay, news, academic sources, or any online platform.