Generate industry intelligence reports with MoltPulse. Run when user says "generate report", "daily brief", "weekly digest", "industry analysis", "market intelligence", or "moltpulse run".
Generate daily, weekly, and specialized reports for monitored industries. MoltPulse collects data from financial APIs, news sources, RSS feeds, and social media, then generates formatted intelligence reports.
# Generate daily brief for advertising industry
moltpulse run --domain=advertising --profile=ricki daily
# Generate weekly digest with deep collection
moltpulse run --domain=advertising --profile=ricki --deep weekly
# Generate fundraising outlook
moltpulse run --domain=advertising --profile=ricki fundraising
moltpulse run --domain=DOMAIN --profile=PROFILE REPORT_TYPE [options]
Report Types:
daily - Compact morning brief (stock performance, top 5 news, thought leader highlights)weekly - Comprehensive weekly analysis (15 news items, trends, M&A activity)fundraising - Nonprofit-focused outlook (timing recommendations, 6-month/1-year/3-year outlook)Options:
--quick - Fast, shallow collection--deep - Thorough, comprehensive collection--deliver - Send via profile's delivery settings--no-deliver - Output to stdout only (for OpenClaw orchestration)--output FORMAT - Format: compact, json, markdown, full--dry-run - Show configuration without running# List all configuration
moltpulse config list
# Set an API key
moltpulse config set ALPHA_VANTAGE_API_KEY your_key
# Get a specific value
moltpulse config get ALPHA_VANTAGE_API_KEY
# Test API key validity
moltpulse config test ALPHA_VANTAGE_API_KEY
# List available domains
moltpulse domain list
# Show domain details
moltpulse domain show advertising
# Create new domain
moltpulse domain create healthcare --display-name "Healthcare Intelligence"
# Add entities
moltpulse domain update healthcare --add-entity "hospital_systems:HCA:HCA Healthcare"
# List profiles in a domain
moltpulse profile list advertising
# Show profile details
moltpulse profile show advertising ricki
# Create new profile
moltpulse profile create advertising sarah \
--thought-leader "Seth Godin:ThisIsSethsBlog:1" \
--publications "Ad Age,AdWeek" \
--delivery-channel email \
--delivery-email "[email protected]"
# List available cron templates
moltpulse cron list
# Show template details
moltpulse cron show daily-brief
# Install cron jobs to OpenClaw
moltpulse cron install --all
# Install specific job
moltpulse cron install daily-brief
# Preview without installing
moltpulse cron install --all --dry-run
When running under OpenClaw orchestration, use --no-deliver so OpenClaw handles delivery:
# OpenClaw runs this and delivers output to configured channel
moltpulse run --domain=advertising --profile=ricki --output=markdown --no-deliver daily
| Template | Schedule | Description |
|---|---|---|
daily-brief | Weekdays 7am PT | Morning intelligence brief |
weekly-digest | Mondays 8am PT | Comprehensive weekly analysis |
fundraising-outlook | 1st of month 9am PT | Monthly fundraising outlook |
Run moltpulse domain list to see configured domains.
Current domains:
advertising - Advertising industry monitoring (holding companies, agencies, M&A)Reports can be delivered via:
console - Print to terminal (default)file - Save to local fileemail - Send via SMTPConfigure delivery in profile YAML or via CLI:
moltpulse profile update advertising ricki \
--set-delivery-channel email \
--set-delivery-email "[email protected]"
Configure in ~/.config/moltpulse/.env or via moltpulse config set:
| Key | Purpose |
|---|---|
ALPHA_VANTAGE_API_KEY | Stock data (required) |
NEWSDATA_API_KEY | News aggregation (required) |
XAI_API_KEY | X/Twitter search (optional) |
# Check what will be collected
moltpulse run --domain=advertising --profile=ricki --dry-run daily
# Generate and deliver
moltpulse run --domain=advertising --profile=ricki --deliver daily
# Create domain
moltpulse domain create fintech --display-name "Fintech Intelligence"
# Add entities
moltpulse domain update fintech \
--add-entity "banks:JPM:JPMorgan Chase" \
--add-entity "banks:BAC:Bank of America"
# Create profile
moltpulse profile create fintech analyst1 \
--thought-leader "Cathie Wood:CathieDWood:1" \
--publications "Bloomberg,WSJ"
# Generate report
moltpulse run --domain=fintech --profile=analyst1 daily
# Compact (default) - brief summary
moltpulse run --domain=advertising --profile=ricki daily
# Markdown - formatted for reading
moltpulse run --domain=advertising --profile=ricki --output=markdown daily
# JSON - for programmatic use
moltpulse run --domain=advertising --profile=ricki --output=json daily
# Full - all collected data
moltpulse run --domain=advertising --profile=ricki --output=full daily