Awesome-omni-skill moltpulse

Generate industry intelligence reports with MoltPulse. Run when user says "generate report", "daily brief", "weekly digest", "industry analysis", "market intelligence", or "moltpulse run".

install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data-ai/moltpulse" ~/.claude/skills/diegosouzapw-awesome-omni-skill-moltpulse && rm -rf "$T"
manifest: skills/data-ai/moltpulse/SKILL.md
source content

MoltPulse - Industry Intelligence Framework

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.

Quick Start

# 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

Commands

Report Generation

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

Configuration Management

# 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

Domain Management

# 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"

Profile Management

# 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 "sarah@example.com"

Cron Integration (OpenClaw)

# 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

OpenClaw Orchestration

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

Bundled Cron Templates

TemplateScheduleDescription
daily-brief
Weekdays 7am PTMorning intelligence brief
weekly-digest
Mondays 8am PTComprehensive weekly analysis
fundraising-outlook
1st of month 9am PTMonthly fundraising outlook

Available Domains

Run

moltpulse domain list
to see configured domains.

Current domains:

  • advertising
    - Advertising industry monitoring (holding companies, agencies, M&A)

Delivery Channels

Reports can be delivered via:

  • console
    - Print to terminal (default)
  • file
    - Save to local file
  • email
    - Send via SMTP

Configure delivery in profile YAML or via CLI:

moltpulse profile update advertising ricki \
  --set-delivery-channel email \
  --set-delivery-email "user@example.com"

API Keys Required

Configure in

~/.config/moltpulse/.env
or via
moltpulse config set
:

KeyPurpose
ALPHA_VANTAGE_API_KEY
Stock data (required)
NEWSDATA_API_KEY
News aggregation (required)
XAI_API_KEY
X/Twitter search (optional)

Examples

Morning Brief Workflow

# 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

Setup New Industry Domain

# 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

Output Formats

# 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