Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计提醒

yqg-smart-daily-reportyqg 智能日报

Agent Skill

yqg-smart-daily-report 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,960

周安装

165

GitHub Stars

公开资料未说明

下载量

1,320
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install yqg-smart-daily-report

简介

从项目历史与日历自动生成工作报告的智能工具。

  • 自动汇总活动记录形成每日或每周汇报。
  • 支持自定义模板与重点事项突出显示。
  • 节省人工整理时间,提升汇报效率与规范性。
  • 适合远程团队与项目管理场景使用。yqg-smart-daily-report 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
smart-daily-report
description
Intelligent work report generator that collects activity from project history, task managers, and calendars to produce professional daily/weekly reports. Features smart commit parsing, multi-project aggregation, trend analysis, and customizable templates. Use when user needs to write daily report, weekly report, work summary, standup notes, sprint review, or any status update.

Smart Daily Report | 智能日报生成器

From scattered work traces to polished reports — automatically.

When to Activate

  • "生成今天的日报" / "帮我写日报"
  • "This week's status report"
  • "Standup notes for today"
  • "我做了什么" / "What did I work on"
  • "周报" / "Weekly summary"
  • Any request to summarize work activity

Step 1 — Collect Data

Data Source Priority

Gather data from available sources in this order:

PrioritySourceWhat to collectFallback
1Project historyCommit messages, change statsSkip if no project found
2Task managerCompleted/pending tasksSkip if unavailable
3CalendarMeetings, eventsAsk user to supplement
4User inputManual descriptionAlways available

Collection Commands

Use system tools to gather project activity. Adapt to the user's OS:

Project commit history:

  • Use appropriate system tool to read commit log for the specified date range
  • Collect: commit message, timestamp, project name
  • Include all branches the user contributed to

Change statistics:

  • Collect number of files changed, lines added/removed
  • Group by project if multiple repos

Task completion:

  • If todoist CLI is available, query completed tasks for the date
  • Otherwise, skip this source

Multi-Project Handling

If the user has multiple projects:

  1. Scan for project directories in common locations (workspace, home, desktop)
  2. Collect activity from each
  3. Group results by project in the output

Step 2 — Parse & Enrich

Commit Message Parsing

Standard format (Conventional Commits):

PatternCategoryDisplay
feat(scope): messageNew Featuremessage (scope)
fix(scope): messageBug FixFix: message (scope)
docs: messageDocumentation📝 message
refactor: messageRefactor♻️ message
test: messageTesting🧪 message
perf: messagePerformance⚡ message
chore: messageMaintenance🔧 message
ci: messageCI/CD🔄 message
Merge pull/branchMerge🔀 Merge #number

Non-standard format:

  • Try to extract a verb + object pattern
  • Classify based on keywords: "修复/fix" → Bug Fix, "添加/新增/add" → Feature, "更新/update" → Update, "删除/remove" → Cleanup

Smart Grouping Rules

  1. Collapse related commits — 3 commits like "add login page", "fix login css", "test login" → "登录页面开发与测试"
  2. Extract project scope — Infer from directory name or commit prefix
  3. Deduplicate — Merge + original commit → show once
  4. Prioritize — Features and fixes first, chores and docs last

Significance Assessment

LevelCriteriaReport Placement
MajorNew feature, significant refactor, critical fix"今日重点" section
NormalRegular commits, bug fixes, docs"完成事项" section
MinorChore, style, typo fixesOmit or collapse into stats

Step 3 — Generate Report

Daily Report Template

# 工作日报 | {YYYY-MM-DD 周X}

## 今日重点
> {1-2 sentence executive summary of the day's core work}

## 完成事项

### {Project A}
- ✅ {Feature or fix description}
- ✅ {Another item}

### {Project B}
- ✅ {Item description}

## 进行中
- 🔄 {Ongoing work that wasn't completed today}

## 明日计划
- 📋 {Next steps based on in-progress work or user hints}

## 数据统计
| 指标 | 数值 |
|------|------|
| 项目数 | {n} |
| 提交数 | {n} |
| 文件变更 | {n} 个文件 |
| 代码量 | +{n} / -{n} 行 |

## 备注
- {Anything notable: blockers, dependencies, achievements}

Weekly Report Template

# 周报 | {Monday日期} ~ {Friday日期}

## 本周概览
> {2-3 sentence summary of the week's themes and achievements}

## 核心成果

### {Project A}
- {Major deliverable 1}
- {Major deliverable 2}

### {Project B}
- {Major deliverable}

## 详细进展

| 日期 | 主要工作 |
|------|----------|
| 周一 | {Key items} |
| 周二 | {Key items} |
| ... | ... |

## 数据汇总
| 指标 | 数值 |
|------|------|
| 项目数 | {n} |
| 总提交 | {n} |
| 新增代码 | +{n} 行 |
| 删除代码 | -{n} 行 |
| PR/MR | {n} 个 |
| Bug修复 | {n} 个 |

## 下周计划
1. {Priority 1}
2. {Priority 2}
3. {Priority 3}

## 需要协助
- {Blockers, resource needs, decisions pending}

Standup Notes Template

## Standup | {Date}

**Yesterday:**
- {What was completed}

**Today:**
- {What's planned}

**Blockers:**
- {Any impediments} / None

Step 4 — Handle Edge Cases

SituationResponse
No commits foundAsk: "今天没有检测到项目提交记录。你今天做了哪些工作?我来帮你整理。"
Only chores/minor commitsGenerate report with stats, note that work was mainly maintenance
User provides manual inputCombine manual descriptions with any available stats
Multiple contributors detectedFilter to only the user's commits (by author name/email)
Very active day (20+ commits)Group aggressively, focus on features/fixes, collapse minor commits into stats
Across time zonesUse the user's local date (from USER.md timezone setting)

Advanced Features

Custom Templates

If user says "用我的模板" or provides a template:

  1. Accept their template structure
  2. Map data fields to template placeholders
  3. Generate report in their exact format

Trend Analysis (for weekly reports)

Compare this week vs last week:

  • Commit count: ↑/↓/→ with percentage
  • Focus areas: shifted to different projects?
  • Velocity: faster/slower?

Export Options

TargetMethod
Chat (default)Markdown inline
Feishu docfeishu_doccreate then write
FileSave to path like reports/YYYY-MM-DD.md
ClipboardTell user the content is ready to copy

Auto-Generation Hint

If the user has a regular schedule (e.g., always asks for daily report at 6pm), suggest setting up a cron job or HEARTBEAT.md reminder.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.2%
按下载量换算1,138

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills