Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

daily-briefing-hub每日简报中心

Agent Skill

daily-briefing-hub 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

23,879

周安装

1,005

GitHub Stars

2

下载量

8,362
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:daily-briefing-hub(每日简报中心)
来源仓库:https://github.com/ariktulcha/daily-briefing-hub
安装命令:
openclaw skills install daily-briefing-hub
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install daily-briefing-hub

简介

整合日历事件、邮件亮点、天气、GitHub状态等多源信息生成每日简报。

  • 适用于快速掌握当日重点事项与技术进展,提升工作效率。
  • 支持自定义简报内容与格式,适配不同工作场景需求。
  • 安装命令:openclaw skills install daily-briefing-hub。
  • 使用前需授权访问Google日历、邮箱及GitHub等第三方服务。

SKILL.md

name
daily-briefing-hub
description
>
metadata
openclaw
emoji
☀️

Daily Briefing Hub

Your AI Chief of Staff. This skill pulls data from multiple sources and generates a single, prioritized daily briefing — delivered however the user wants it.

Why This Exists

Most OpenClaw users end up building their own morning briefing by manually calling 5-8 separate tools. This skill does it in one step: gather everything, prioritize it, format it beautifully, and deliver it.

How It Works

When triggered, gather data from whichever sources the user has available, then compose a structured briefing. Not every source needs to be configured — the skill gracefully skips unavailable sources and works with whatever is connected.

Data Sources

Attempt to pull from these sources in order. If a source is unavailable (tool not enabled, API not configured), skip it silently and move on. Never fail because one source is missing.

1. Calendar (High Priority)

Use the gog tool or Google Calendar CLI to fetch today's events.

  • Show: event name, time, location, attendees (if available)
  • Flag conflicts (overlapping events)
  • Note gaps longer than 2 hours as "focus time" opportunities
  • If tomorrow's first event is early, mention it as a heads-up

2. Email (High Priority)

Use Gmail via gog or the configured email tool to scan recent unread messages.

  • Summarize the top 5-10 most important unread emails (skip newsletters, promotions)
  • Prioritize: emails from known contacts > emails with urgent keywords > everything else
  • For each: sender, subject, one-line summary, suggested action (reply/read/archive)
  • Count total unread and note if inbox is getting out of control (>50 unread = flag it)

3. Weather (Medium Priority)

Use curl to fetch weather from a public API, or use an installed weather skill.

  • If user location is known (from memory or config), fetch automatically
  • If not, ask once and remember for future briefings
  • Show: current temp, high/low, conditions, rain probability
  • Only mention weather if it's notable (rain, extreme temps, storms) — skip "sunny and 72°F"
  • Suggest: "bring an umbrella" or "dress warm" when relevant

4. GitHub / Dev Activity (Medium Priority — skip for non-developers)

Use the GitHub CLI (gh) or GitHub skill to check activity.

  • Open PRs awaiting your review (with age: "PR #142 waiting 3 days")
  • PRs you authored that have new reviews or comments
  • CI/CD failures on your repos in the last 24 hours
  • New issues assigned to you
  • Skip this section entirely if the user doesn't have GitHub configured

5. Tasks (Medium Priority)

Check configured task managers: Todoist, ClickUp, Linear, GitHub Issues, or local task files.

  • Show tasks due today and overdue tasks
  • Group by project/label if available
  • Flag overdue items prominently

6. News & Feeds (Low Priority)

Use web_search or RSS feeds to pull relevant headlines.

  • If the user has specified interests (in memory or config), filter for those topics
  • Default: top 3-5 tech/business headlines from the last 24 hours
  • Keep summaries to one sentence each
  • Hacker News top 3 stories (if user is a developer)

Briefing Format

ALWAYS structure the briefing like this. Adapt sections based on available data:

☀️ Good [morning/afternoon], [Name]! Here's your briefing for [Day, Date].

📅 TODAY'S SCHEDULE
[Calendar events in chronological order]
[Flag any conflicts or notable gaps]

📧 EMAIL HIGHLIGHTS
[Top priority emails with one-line summaries]
[Total unread count]

⚡ ACTION ITEMS
[Overdue tasks — URGENT]
[Tasks due today]
[PRs needing your review]

🌤️ WEATHER
[Only if notable — rain, extreme temps, etc.]

💻 DEV ACTIVITY
[CI failures, new issues, PR updates]

📰 NEWS
[3-5 relevant headlines, one line each]

---
Have a great day! Reply with any item number to dive deeper.

Prioritization Logic

The briefing should feel like a smart assistant, not a data dump. Apply these rules:

  1. Urgent items surface first: overdue tasks, meeting in <1 hour, CI failures, emails from boss/clients
  2. Combine related items: if there's a meeting about a PR, mention them together
  3. Be concise by default: one line per item. The user can ask to expand any section
  4. Skip empty sections: don't show "No new emails" — just omit the section
  5. Time-aware: morning briefings focus on today. Evening briefings ("what did I miss") focus on what happened today

Setting Up Recurring Briefings

If the user asks to "send me a briefing every morning" or "set up a daily digest":

  1. Help them configure a cron job via OpenClaw's cron system
  2. Suggested schedule: weekdays at 7:00 AM local time (ask user preference)
  3. Deliver via their preferred channel (Telegram, Slack, WhatsApp, Discord)
  4. Store the briefing configuration in the workspace for persistence

Example cron setup:

{
  "schedule": "0 7 * * 1-5",
  "prompt": "Generate my daily briefing and send it to me",
  "channel": "telegram"
}

Customization

The user can customize their briefing at any time:

  • "Add RSS feeds to my briefing" → ask for feed URLs, store in memory
  • "Skip weather in my briefings" → remember this preference
  • "I want briefings at 6 AM" → update cron schedule
  • "Focus on GitHub and email only" → disable other sections
  • "Add Stripe revenue to my briefing" → extend with financial data source

Store all preferences in OpenClaw's memory system so they persist across sessions.

Edge Cases

  • First run: If this is the first briefing, explain what you're doing and ask about preferences rather than generating a sparse briefing with no data
  • Weekend briefings: lighter tone, skip work email/GitHub, focus on personal calendar and weather
  • Evening trigger: if user asks for briefing after 5 PM, shift to "end of day recap" — what happened today, what's tomorrow
  • No data at all: if literally no tools are configured, help the user set up at least calendar + email before generating a briefing
  • Multiple calendars: if user has personal + work calendars, show both but label them clearly

Example Interactions

User: "Brief me" → Generate full briefing with all available sources

User: "What's on my plate today?" → Focus on calendar + tasks, lighter on news

User: "Set up a daily morning briefing on Telegram at 7 AM" → Configure cron job, confirm channel, generate a test briefing

User: "What did I miss today?" → Evening recap: summarize the day's emails, completed tasks, GitHub activity

User: "Add Hacker News to my daily briefing" → Store preference, confirm, show preview of how it'll look

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98%
按下载量换算8,195

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills