commit-daily-summary

commit-daily-summary is a skill for Claude Code, Codex from rockyflux/yq-workflow. It costs 56 tokens per session (820 once invoked), scanned A, original, MIT.

A daily git-commit summarizer that turns one day's code changes into grouped, readable work notes. Git is the version-control system that records changes to code.

In plain words
What is it for?
Use it to create a daily report from the current repository's commits, or to summarize what you worked on today or on a chosen date.
Why use it?
It removes the need to read raw commit messages and remember which changes belonged to the same task. It also filters out empty or meaningless commits.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/rockyflux/yq-workflow/commit-daily-summary
Any agent
npx skills add rockyflux/yq-workflow --skill commit-daily-summary
Clone the repo
git clone --depth 1 https://github.com/rockyflux/yq-workflow

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for commit-daily-summary

README.md
[![agentmods](https://agentmods.dev/badge/skills/rockyflux/yq-workflow/commit-daily-summary.svg)](https://agentmods.dev/skills/rockyflux/yq-workflow/commit-daily-summary)
Your own site
<a href="https://agentmods.dev/skills/rockyflux/yq-workflow/commit-daily-summary"><img src="https://agentmods.dev/badge/skills/rockyflux/yq-workflow/commit-daily-summary.svg" alt="Measured on agentmods" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 820 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00056 $0.00820
Opus 5 $0.00028 $0.00410
Sonnet 5 $0.00011 $0.00164
Haiku 4.5 $0.00006 $0.00082

Measured 5d ago against content hash e5be8f536332, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

commit-daily-summary scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

templates/base-skills/commit-daily-summary/SKILL.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

commit-daily-summary

Overview

Use this skill to turn one day of git commits into a readable work summary. The goal is not to dump commit lines, but to translate them into grouped, human-friendly task statements.

Core Rules

  • Default scope is today in the user's local timezone unless the user gives a date.
  • Prefer git evidence over memory.
  • Group commits by workstream / theme, not just by repository order.
  • Rewrite raw commit messages into concise Chinese action summaries.
  • Do not include empty, noise-only, or clearly meaningless commits as standalone achievements.

Workflow

Step 1: Determine the date and repo scope

Default assumptions:

  • date range: today
  • repository scope: current repository unless the user asks for multiple repositories

Clarify only when necessary:

  • today vs a specific date
  • current repo vs multiple repos
  • whether the user wants only task summaries or task summaries + raw commit details

Step 2: Collect commits

Use direct git commands with explicit repository paths.

Recommended command pattern:

git -C <repo> log --since="YYYY-MM-DD 00:00" --until="YYYY-MM-DD 23:59:59" --pretty=format:"%h%x09%s"

If no commits are found, state that clearly.

Step 3: Group commits into workstreams

Cluster related commits together, for example:

  • 同一功能开发
  • 同一缺陷修复
  • 同一配置或工具链调整
  • 同一文档更新

Do not create one task sentence per commit if several commits are obviously part of the same workstream.

Step 4: Rewrite into Chinese action summaries

Good summary lines should:

  • start with a clear action verb
  • describe the actual business or engineering result
  • omit noisy implementation trivia unless it matters
  • be understandable to someone reading a daily report quickly

Examples:

  • 实现了行情页的筛选条件持久化
  • 修复了任务轮询在终态下未刷新概览的问题
  • 重构了图表数据映射逻辑,降低了重复处理分支
  • 补充了设置保存链路的回归测试

Step 5: Output the daily report

Preferred structure:

  • 日期范围
  • 今日工作摘要
  • 仓库 / workstream 明细
  • 如有需要,再附原始 commits
## 提交总结

- 日期:2026-03-30
- 范围:today / current repo

### 今日工作摘要
- ...
- ...

### 分项明细
#### 仓库 A
- workstream 1: ...
- workstream 2: ...

### 原始提交(可选)
- abc123 feat(...)

Read the full file on GitHub · 125 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 125 lines · 56 tokens per session scan A e5be8f536332

Subscribe to this mod's changes

commit-daily-summary is a skill published in the GitHub repository rockyflux/yq-workflow (2 stars, last pushed 3mo ago), licensed MIT. It adds 56 tokens to every session and 820 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.