Install
openclaw skills install daily-intelligenceFully automated daily intelligence briefing system. Searches news, generates high-res infographics (3600px), creates voice narration (edge-tts), uploads to Feishu/Lark docs, and delivers via cron. Battle-tested through 14+ days of continuous production use.
openclaw skills install daily-intelligenceA complete, production-ready system for generating and delivering daily AI/tech intelligence briefings autonomously.
This skill automates the entire daily intelligence workflow:
Generate today's daily intelligence briefing for AI/tech news
Create a daily briefing infographic with 5 modules: world news, OPC trends, tech applications, new skills, and core recommendation
.logo-wrapper {
padding: 10px;
background: linear-gradient(135deg, rgba(255,215,0,0.7), rgba(255,140,0,0.4));
border-radius: 36px;
box-shadow: 0 0 40px rgba(255,215,0,0.4);
}
python3 -m edge_tts --voice zh-CN-XiaoxiaoNeural --file content.txt --write-media output.mp3
For automated daily delivery:
{
"name": "Daily Intelligence",
"cron": "0 0 22 * * *",
"sessionTarget": "isolated",
"payload": {
"kind": "agentTurn",
"deliver": true
},
"wakeMode": "now"
}
⚠️ Critical: Must use isolated session + agentTurn payload. main + systemEvent will NOT trigger full execution.
This skill includes battle-tested safeguards:
| Error | Root Cause | Prevention |
|---|---|---|
| Cron runs but no output | systemEvent payload | Always use agentTurn |
| Images can't be opened by recipient | Direct message attachment | Upload to doc, send link |
| Logo rendering failure | Base64 too large | Resize to 90px width first |
| Infographic too small | 1x resolution | Always use 3x (3600px) |
| Voice missing | Skipped step | Mandatory checklist before delivery |
Before sending, verify:
workspace/scripts/logo.jpg)gen-template.py for your brand--voice parameter for different languages/tonesworkspace/
├── scripts/
│ ├── logo.jpg # Your brand logo
│ └── daily-push-checklist.md
├── reports/ # Generated images (whitelisted for upload)
├── /tmp/
│ └── gen-template.py # HTML generation template
└── skills/
└── daily-intelligence/
└── SKILL.md # This file
pip install playwright && playwright install)pip install edge-tts)pip install Pillow) for image processingMIT