← 返回 Skills 市场
437
总下载
0
收藏
5
当前安装
2
版本数
在 OpenClaw 中安装
/install daily-standup
功能描述
每日早报聚合器。当用户询问每日汇总、standup、晨报、或工作状态总览时激活。
使用说明 (SKILL.md)
每日早报
聚合多个数据源,生成精简的晨报。
前置条件
- 安装插件:
openclaw plugins install openclaw-morphixai - 获取 API Key: 访问 morphix.app/api-keys 生成
mk_xxxxxx密钥 - 配置环境变量:
export MORPHIXAI_API_KEY="mk_your_key_here" - 链接账号: 访问 morphix.app/connections 链接需要聚合的服务账号(GitLab、Jira、Outlook 等),或通过
mx_link工具逐个链接
触发词
- "早报" / "日报" / "standup" / "今日工作"
- "帮我看看今天有什么"
执行策略
使用 mx_* 工具并行查询以下数据源,然后汇总输出。
GitLab
使用 mx_gitlab 工具:
1. mx_gitlab: action: get_user → 获取当前用户
2. mx_gitlab: action: list_projects → 获取项目列表
3. mx_gitlab: action: list_merge_requests, state: "opened"
→ 查询我的待合并 MR
4. mx_gitlab: action: list_pipelines, per_page: 5
→ 查看最近 pipeline 状态
GitHub(可选)
使用 mx_github 工具:
1. mx_github: action: list_pulls, state: "open" → 我的待合并 PR
2. mx_github: action: list_issues, state: "open" → 待处理 Issue
3. mx_github: action: list_workflow_runs → CI 状态
Jira
使用 mx_jira 工具:
1. mx_jira: action: get_myself → 获取当前用户 accountId
2. mx_jira: action: search_issues
jql: "assignee = \x3CaccountId> AND status != Done ORDER BY priority DESC, updated DESC"
→ 我的未完成 Issue
3. mx_jira: action: search_issues
jql: "assignee = \x3CaccountId> AND due >= startOfWeek() AND due \x3C= endOfWeek() ORDER BY due ASC"
→ 本周到期 Issue
4. mx_jira: action: search_issues
jql: "sprint in openSprints() AND assignee = \x3CaccountId>"
→ 当前 Sprint 进度
邮件(可选)
使用 mx_outlook 或 mx_gmail 工具:
Outlook:
mx_outlook: action: list_messages, top: 10
→ 筛选 isRead: false 的邮件
Gmail:
mx_gmail: action: search_messages, query: "is:unread", max_results: 10
→ 然后逐条 get_message 获取摘要
待办任务(可选)
使用 mx_ms_todo 或 mx_google_tasks 工具:
mx_ms_todo: action: list_tasks, list_id: "\x3C默认列表ID>"
→ 筛选今日到期的任务
日历(可选)
使用 mx_outlook_calendar 工具:
mx_outlook_calendar: action: get_calendar_view
start_date_time: "\x3C今日 00:00>"
end_date_time: "\x3C今日 23:59>"
→ 今日会议安排
降级规则
如果某个工具的账号未链接或查询失败,跳过该部分并标注"未连接"或"查询失败"——绝不阻塞整个早报。
使用 mx_link: action: list_accounts 预先检测哪些账号可用,只查询已连接的服务。
回复格式
严格按以下结构回复(中文,精简):
**代码**
- GitLab: N 个待合并 MR(列出标题)/ GitHub: N 个待合并 PR
- CI 状态:全绿 / X 个失败
**Jira**
- N 个本周到期 Issue(列出 key + 标题)
- 当前 Sprint 进度:X/Y 完成
**邮件**
- N 封未读(列出发件人 + 主题,最多 5 封)
**待办**
- N 个今日到期任务(列出标题)
**日历**
- N 个今日会议(列出时间 + 主题)
**今日建议**
- 基于以上信息给出 1-2 条优先级建议
未连接的数据源不展示对应板块。
规则
- 总输出不超过 500 字
- 无客套话,无寒暄
- 紧急事项优先标记
- 仅用列表,不用段落
安全使用建议
This skill behaves like a normal aggregator but requires installing a third‑party plugin (openclaw-morphixai) and giving a Morphix API key that will access all linked accounts. Before installing: 1) Verify the openclaw-morphixai plugin and morphix.app (homepage, source repo, privacy/security docs, ownership). 2) Limit which accounts you link (avoid using high‑privilege service accounts) and prefer least privilege. 3) Consider creating a separate/test account or sandbox to evaluate behavior. 4) Rotate and revoke the MORPHIXAI_API_KEY if you stop using the service. If you cannot verify the plugin/provider provenance, treat this skill as untrusted.
功能分析
Type: OpenClaw Skill
Name: daily-standup
Version: 0.1.1
The skill aggregates sensitive information from multiple platforms including GitLab, GitHub, Jira, and email services (Outlook/Gmail) to generate a daily report. While these actions are aligned with the stated purpose of a 'daily standup' aggregator, the broad access to private communications, code repositories, and calendar data constitutes a high-risk capability. It requires the installation of the 'openclaw-morphixai' plugin and an external API key from morphix.app.
能力评估
Purpose & Capability
The skill is an aggregator and only declares MORPHIXAI_API_KEY, which coheres with using a single Morphix proxy to access GitLab/GitHub/Jira/Outlook/etc. However the SKILL.md also instructs the user to install an external plugin (openclaw-morphixai) and to link multiple service accounts — these actions are outside the skill bundle itself and increase the trust surface. The lack of a homepage/source makes it harder to verify the plugin/service.
Instruction Scope
Instructions are specific: use mx_* tools to query each connected service and skip unlinked accounts. The skill does not instruct reading local files or arbitrary env vars beyond MORPHIXAI_API_KEY. However it explicitly instructs linking many third‑party accounts (OAuth/credentials) and running external tooling (mx_link, mx_gitlab, etc.), which will cause broad data access via Morphix if performed.
Install Mechanism
This is instruction-only (no install spec), so it doesn't write code itself. But it tells users to run `openclaw plugins install openclaw-morphixai` — an external plugin install step not captured by the skill metadata. Installing a third‑party plugin is a higher-risk action because that plugin will run code and handle account credentials; the skill provides no verification link or provenance for that plugin.
Credentials
Only MORPHIXAI_API_KEY is required, which is proportionate for a service that proxies multiple connectors. Note: that single API key likely grants access to all linked accounts through Morphix, so its power is broad — the key's scope and Morphix's handling of linked credentials should be reviewed.
Persistence & Privilege
The skill does not request always:true and does not declare any persistent system modifications. It relies on runtime calls to external connectors; autonomous invocation is allowed (platform default) but is not excessive by itself.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install daily-standup - 安装完成后,直接呼叫该 Skill 的名称或使用
/daily-standup触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
- 新增“前置条件”说明,包括插件安装、API Key 获取、环境变量设置及账号链接操作指引。
- 补充了操作入口和具体配置流程的详细步骤,提升上手简便性。
- 其余功能与执行逻辑未变。
v0.1.0
daily-standup v0.1.0
- Initial release of an aggregator for daily standup summaries.
- Supports GitLab, GitHub, Jira, email, to-dos, and calendar data sources.
- Parallel queries based on connected accounts; skips unavailable sources.
- Responds to common standup/summary trigger words in Chinese.
- Structured, concise output under 500 characters, focusing on actionable items and priorities.
元数据
常见问题
Daily Standup 是什么?
每日早报聚合器。当用户询问每日汇总、standup、晨报、或工作状态总览时激活。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 437 次。
如何安装 Daily Standup?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install daily-standup」即可一键安装,无需额外配置。
Daily Standup 是免费的吗?
是的,Daily Standup 完全免费(开源免费),可自由下载、安装和使用。
Daily Standup 支持哪些平台?
Daily Standup 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Daily Standup?
由 Paul Leo(@paul-leo)开发并维护,当前版本 v0.1.1。
推荐 Skills