daily-commits
Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output.
Best use case
daily-commits is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output.
Teams using daily-commits should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/daily-commits/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How daily-commits Compares
| Feature / Agent | daily-commits | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Summarize a person's git commits for a specific date, grouped by feature points, in English. Use when reviewing daily work output.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
Cursor vs Codex for AI Workflows
Compare Cursor and Codex for AI coding workflows, repository assistance, debugging, refactoring, and reusable developer skills.
SKILL.md Source
# 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="<start-of-day>" --before="<end-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 2. Also run `git log` with `--stat` to understand the scope of changes: ``` git log --after="<start-of-day>" --before="<end-of-day>" --author="$1" --stat --no-merges ``` 3. 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 4. Output a clean summary in this format: ``` ## Daily Commits Summary: <author> — <date> ### <Feature Area 1> - <concise description of what was done> (`commit-hash`) - ... ### <Feature Area 2> - <concise 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
Related Skills
daily-report-generator
Automatically generate daily/weekly work reports from git commits, calendar events, and task lists. Use when you need to quickly create professional work reports without manual effort.
email-daily-summary
Automatically logs into email accounts (Gmail, Outlook, QQ Mail, etc.) and generates daily email summaries. Use when the user wants to get a summary of their emails, check important messages, or create daily email digests.
daily-every
每天早上生成简报:上海天气 + V2EX 热帖前 5 条。 Use when: 用户说"生成今日简报",或 cron 在早上 8 点触发。 NOT for: 详细的天气预报或深度新闻分析。
web3-daily-mcp
MCP Server for Web3 Daily - Real-time Web3 research digest with macro news, KOL sentiment, market data, and personalized wallet analysis. This is an MCP server that provides tools for AI agents to fetch real data from the J4Y backend.
daily-fun-content
每日趣味内容生成器 - 每天早上搜索网络,预缓存一天的笑话、热梗、聊天技巧。包括搞笑段子、网络热梗解释、高情商对话示例。用 cron 触发,内容缓存到文件,心跳时随机取用。
obsidian-daily
Manage Obsidian Daily Notes via obsidian-cli. Create and open daily notes, append entries (journals, logs, tasks, links), read past notes by date, and search vault content. Handles relative dates like "yesterday", "last Friday", "3 days ago". Requires obsidian-cli installed via Homebrew (Mac/Linux) or Scoop (Windows).
daily-brief
Send a daily operational brief from your self-hosted OpenClaw to Telegram — agent health, unresolved issues, and weekly evolution highlights, every morning.
dailybit-tech-digest
Curated daily digest from 92 top tech blogs (Andrej Karpathy's list) with AI-generated Chinese summaries, hierarchical tags, and personalized recommendations. Triggers: "今日技术博客", "高质量技术文章", "tech blog digest", "优质博客推荐", "技术发展趋势", "AI行业动态", "每日技术简报", "中文科技摘要", "top tech blogs today", "curated tech reading", "what's trending in tech", "developer daily briefing", "有什么值得看的技术文章", "最近有什么技术趋势", "帮我看看今天的博客", "优质英文博客中文速览".
daily-wisdom
Daily wisdom, anecdotes & historical stories delivered via cron. Use when: "daily anecdote", "daily wisdom", "wisdom cron", "daily story", "morning wisdom", setting up recurring cultural/historical content delivery. Don't use when: one-off trivia (just answer directly), news digests, social media posts. Outputs: A rich daily message with original-language quote, story, and modern connection. Writes to history file to prevent repeats.
CPMO Daily Report - 终端虾每日汇报技能
_最后更新:2026-03-15(合并 cpmo.md 内容)_
daily-log
每日工作日志生成技能。触发时机:每次会话结束前或完成重要任务后。输出位置:memory/daily/YYYY-MM-DD.md。使用方法:加载 skill 后读取 references/spec.md 获取详细规范。
daily-backup
每日 Git 备份。提交工作区所有变更,记录变更摘要。触发时机:cron 定时任务或手动调用。