politics_economy_monitor

Fetches headlines from politics and economics news sources and generates summaries.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/guizonatto/myopen-claw --skill politics-economy-monitor-guizonatto
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: politics_economy_monitor
Source: https://github.com/guizonatto/myopen-claw/tree/main/skills/politics_economy_monitor
Command: npx skills add https://github.com/guizonatto/myopen-claw --skill politics-economy-monitor-guizonatto

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires requests, beautifulsoup4.

What problem does it solve? Keeping up with political and economic news across many outlets is time-consuming. This Skill automatically collects the top headlines from eight national and international sources and produces a summary for each, so you get a consolidated digest without visiting each site. ## Core Features & Use Cases - Multi-source headline monitoring: Scrapes top headlines from JOTA, Nexo, NYT World, BBC News Mundo, Brazil Journal, Valor Econômico, Bloomberg, and Financial Times. - Automatic summarization: Generates a summary entry for every collected headline in a structured JSON format with source, title, URL, and summary. - Scheduled monitoring ready: Designed to run standalone or via cron, with output ready to post to a business MCP database. - Use Case: A consultant schedules a daily cron job that runs the monitor each morning and receives a consolidated digest of political and economic headlines in Telegram before starting work. ## Quick Start Ask the assistant to run the politics and economy monitor and return today's summarized headlines from the configured news sources.

Frequently Asked Questions about politics_economy_monitor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I monitor news headlines from multiple websites in Python?

Use requests to fetch each source page and BeautifulSoup to parse anchor tags, filtering links by text length to isolate headlines. The script iterates over a configured list of sources and returns structured results with source name, title, URL, and summary.

How to scrape news headlines with BeautifulSoup?

Fetch the page HTML with requests, parse it with BeautifulSoup, then select anchor elements whose text exceeds a length threshold to capture likely headlines. The script takes the first five matching links per source as top headlines.

Which news sources does this monitor cover?

It covers eight sources: JOTA, Nexo Jornal, NYT World, and BBC News Mundo for politics, plus Brazil Journal, Valor Econômico, Bloomberg, and Financial Times for economics. Sources are defined in a list and can be edited.

Why does headline scraping fail on some news sites?

Scraping fails when sites require JavaScript rendering, block bots, or change their HTML structure. The script catches request exceptions per source and records the error in the output instead of crashing the whole run.

Can I run the news monitor on a schedule?

Yes, the script exposes a run() function designed for standalone execution or cron invocation. It prints the collected news list and is prepared to post results to a business MCP database when available.