business-monitor

Fetches headlines from business news sources and generates automatic summaries.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires requests, beautifulsoup4.

What problem does it solve? Keeping up with business news across many national and international sources requires manually visiting each site daily. This Skill automates headline collection and summarization so you get a consolidated digest of recent business news without repetitive browsing. ## Core Features & Use Cases - Multi-source monitoring: Fetches top headlines from nine fixed sources including Exame PME, TechCrunch, Reuters Business, and Product Hunt. - Automatic summarization: Generates a short summary for each headline, limited to news from the current day or the previous day. - Structured output: Returns results as JSON objects with source, title, URL, and summary, ready for CRM or MCP integration. - Use Case: A solo entrepreneur schedules a daily routine that collects the latest business headlines and delivers a summarized digest to Telegram each morning. ## Quick Start Ask the assistant to fetch and summarize today's top business news headlines from the monitored sources.

Frequently Asked Questions about business-monitor

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

FAQPage Schema
How do I fetch and summarize business news headlines automatically?

Run the fetch_and_summarize script, which requests each fixed news source, extracts headline links with BeautifulSoup, and generates a short summary per headline. Results are returned as JSON with source, title, URL, and summary fields.

What news sources does this business news monitor cover?

It monitors nine fixed sources: Exame PME, Startups.com.br, Endeavor Brasil, TechCrunch, Reuters Business, Morning Brew, HackerNews, Product Hunt, and Valor Economico. Both Brazilian and international outlets are included.

When should I use web_search instead of web_fetch for news monitoring?

Use web_fetch as the default path for each fixed source. Only fall back to web_search when a URL changes, the page structure breaks, or the source blocks direct fetching. Avoid browser automation unless a source requires JavaScript.

Why does headline extraction fail for some news sites?

Extraction relies on a simple heuristic that picks anchor tags with text longer than 30 characters, so sites with unusual markup or JavaScript-rendered content may return poor results. Errors are captured per source and reported in the output.

Can I integrate the news summaries with a CRM or MCP server?

Yes, the output is structured JSON designed for integration with a business MCP, and the script notes a business_news table as a target. The current script prints results, so you add the POST call for your own endpoint.