← 返回 Skills 市场
andrew020

Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output.

作者 andrew020 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
226
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install daily-commits
功能描述
Summarize a person's git commits on a given date, grouped by feature area with concise descriptions for daily work review.
使用说明 (SKILL.md)

Daily Commits Summary

Summarize all git commits by $1 on $0, grouped by feature/functional area, in English.

Steps

  1. Run git log filtered by date and author:
git log --after="\x3Cstart-of-day>" --before="\x3Cend-of-day>" --author="$1" --pretty=format:"%h %s" --no-merges

Convert the date $0 (format: YYYY.MM.DD) to proper git date range:

  • --after = the date at 00:00:00
  • --before = the next day at 00:00:00
  1. Also run git log with --stat to understand the scope of changes:
git log --after="\x3Cstart-of-day>" --before="\x3Cend-of-day>" --author="$1" --stat --no-merges
  1. Analyze all commits and group them by feature/functional area based on:

    • Commit message prefixes (feat, fix, refactor, docs, style, test, chore, etc.)
    • Related file paths and modules
    • Logical grouping of related changes
  2. Output a clean summary in this format:

## Daily Commits Summary: \x3Cauthor> — \x3Cdate>

### \x3CFeature Area 1>
- \x3Cconcise description of what was done> (`commit-hash`)
- ...

### \x3CFeature Area 2>
- \x3Cconcise description of what was done> (`commit-hash`)
- ...

**Total: X commits**

Rules

  • Output in English only
  • Group by logical feature, not by commit type prefix
  • Each bullet should be a concise human-readable description (not just the raw commit message)
  • If a commit message already has a conventional prefix like feat(meeting):, use the scope as a hint for grouping
  • Omit merge commits
  • If no commits found, state that clearly
安全使用建议
This skill will run git commands in whatever working directory the agent is given, so it needs (1) the git binary available on PATH and (2) to be run inside the repository whose commits you want summarized. It will read commit messages, stats, and file paths — essentially reading repo history and metadata — so only use it where you are comfortable allowing the agent to view that code/logs. Also confirm how you want date boundaries handled (timezones) before relying on the summary, and ensure the author-name you pass matches git's author format used in your repo. Finally, because the registry metadata doesn't list git as a required binary, make sure your environment provides git and Bash before installing or invoking the skill.
功能分析
Type: OpenClaw Skill Name: daily-commits Version: 1.0.0 The 'daily-commits' skill is a legitimate utility designed to summarize git commit history for a specific author and date. It uses standard, non-malicious 'git log' commands within SKILL.md to retrieve commit messages and statistics, and provides clear instructions for the agent to format and group the output. No signs of data exfiltration, command injection, or unauthorized access were found.
能力评估
Purpose & Capability
The skill's name and description match the instructions (it runs git log, groups commits by feature areas, and formats a summary). However, the registry metadata lists no required binaries while the SKILL.md explicitly runs git commands — the skill implicitly requires access to a local git repository and the git binary being available on PATH. That omission is a minor coherence gap to surface to users.
Instruction Scope
SKILL.md confines actions to running git log (with and without --stat) filtered by date and author, analyzing commit messages and file paths, and producing a grouped summary. It does not instruct reading unrelated system files, contacting external endpoints, or accessing credentials. One small ambiguity: it asks the agent to convert the YYYY.MM.DD input into git --after/--before timestamps but does not define timezone handling; the user/agent should ensure correct timezone boundaries when invoking the skill.
Install Mechanism
There is no install spec (instruction-only), so nothing will be downloaded or written to disk by an installer. This is low-risk. The only runtime requirement is that git is present in the environment and the agent can execute shell commands (Bash).
Credentials
The skill declares no environment variables or credentials, and the instructions do not access secrets. The main capability is read access to the repository and commit history, which is proportionate to the stated purpose.
Persistence & Privilege
The skill is not always-enabled and does not request elevated persistent privileges. Autonomous invocation is allowed (platform default), but there is no sign it attempts to modify agent/system configuration or other skills.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install daily-commits
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /daily-commits 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of daily-commits skill. - Summarizes a person's git commits for a specific date, grouping changes by feature or functional area. - Uses commit message prefixes and file paths to intelligently organize work. - Provides a clear, human-readable summary in English. - Highlights total commit count and clearly states if no commits are found.
元数据
Slug daily-commits
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output. 是什么?

Summarize a person's git commits on a given date, grouped by feature area with concise descriptions for daily work review. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 226 次。

如何安装 Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output.?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install daily-commits」即可一键安装,无需额外配置。

Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output. 是免费的吗?

是的,Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output. 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output. 支持哪些平台?

Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output. 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output.?

由 andrew020(@andrew020)开发并维护,当前版本 v1.0.0。

💬 留言讨论