daily-business-report
Generate daily business briefings from multiple data sources. Aggregates weather, crypto prices, news headlines, system health, and calendar events into a formatted morning report. Use when asked to create a daily report, morning briefing, business summary, or status dashboard.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mariusfit/oc-daily-business-reportDaily Business Report
Generate comprehensive daily briefings by aggregating data from free public APIs.
Quick Start
# Generate full morning report
python scripts/report.py generate
# Generate specific sections only
python scripts/report.py generate --sections weather,crypto,news
# Output as JSON
python scripts/report.py generate -f json
# Output as markdown
python scripts/report.py generate -f md -o morning-report.md
# Configure your location and preferences
python scripts/report.py config --city "Brussels" --crypto "BTC,ETH,SOL" --news-country "us"
# Show current configuration
python scripts/report.py config --show
# Test individual data sources
python scripts/report.py test weather
python scripts/report.py test crypto
python scripts/report.py test news
Commands
| Command | Args | Description |
|---|---|---|
generate | [--sections LIST] [-f FORMAT] [-o FILE] | Generate the full report |
config | [--city CITY] [--crypto COINS] [--news-country CC] | Configure preferences |
config | --show | Display current configuration |
test | <source> | Test a single data source |
Report Sections
| Section | Source | API Key Needed? |
|---|---|---|
| Weather | wttr.in | No |
| Crypto | CoinGecko API | No |
| News | NewsData.io | Free tier (optional) |
| Quote | Quotable API | No |
| System | Local disk/memory | No |
| Date | Built-in | No |
Example Output
╔══════════════════════════════════════════════════╗
║ DAILY BUSINESS REPORT — Mon 24 Feb 2026 ║
╠══════════════════════════════════════════════════╣
║ ║
║ 🌤 Weather: Brussels — 8°C, partly cloudy ║
║ 📈 BTC: $97,432 (+2.3%) ETH: $3,891 (-0.4%) ║
║ 📰 Top News: ║
║ 1. EU approves new AI regulation framework ║
║ 2. Tech stocks rally on earnings beat ║
║ 💬 "The best way to predict the future is to ║
║ create it." — Peter Drucker ║
║ 💾 Disk: 45% used | RAM: 62% used ║
║ ║
╚══════════════════════════════════════════════════╝
Integration with OpenClaw
Perfect for cron jobs. Add to your openclaw.json:
{
"cron": {
"entries": {
"morning-report": {
"schedule": "0 7 * * *",
"agent": "main",
"prompt": "Run daily-business-report generate and send the result."
}
}
}
}
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mariusfit-oc-daily-business-report": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
content-repurposer
Repurpose any blog post or article into multiple social media formats. Input a URL or text, get X/Twitter thread, LinkedIn post, Instagram caption, email snippet, and summary. Use when asked to repurpose content, create social posts from an article, turn a blog into tweets, or generate multi-platform content.
whatsapp-faq-bot
Build and query a FAQ knowledge base from markdown files. Use when asked to create a FAQ bot, set up automatic answers, build a knowledge base, add FAQ entries, search FAQs, or answer common questions from a knowledge base. Perfect for WhatsApp business bots.
smart-web-scraper
Extract structured data from any web page. Supports CSS selectors, auto-detection of tables and lists, JSON/CSV output formats. Use when asked to scrape a website, extract data from a page, pull product info, gather contact details, or collect listings from a URL.
security-hardener
Audit and harden OpenClaw configuration for security. Scans openclaw.json for vulnerabilities, exposed credentials, insecure gateway settings, overly permissive exec rules, and missing security best practices. Use when asked to audit security, harden configuration, check for vulnerabilities, or secure an OpenClaw deployment.