← Back to Skills Marketplace
andrew020

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

by andrew020 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
226
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install daily-commits
Description
Summarize a person's git commits on a given date, grouped by feature area with concise descriptions for daily work review.
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install daily-commits
  3. After installation, invoke the skill by name or use /daily-commits
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug daily-commits
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 226 downloads so far.

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

Run "/install daily-commits" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

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

Yes, Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output. is completely free, licensed under MIT-0. You can download, install and use it at no cost.

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

Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output. is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

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

It is built and maintained by andrew020 (@andrew020); the current version is v1.0.0.

💬 Comments