Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

git-daily-work-reportgit 每日工作报告

Agent Skill

git-daily-work-report 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

356

周安装

15

GitHub Stars

公开资料未说明

下载量

125
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:git-daily-work-report(git 每日工作报告)
来源仓库:https://github.com/wangdengyue/git-daily-work-report
仓库路径:skills/git-daily-work-report
安装命令:
npx skills add wangdengyue/git-daily-work-report --skill "git-daily-work-report"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add wangdengyue/git-daily-work-report --skill "git-daily-work-report"

简介

基于 Git 活动生成每日工作进展汇总报告。git-daily-work-report 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 自动统计提交次数、涉及文件数与活跃时间段分布。
  • 支持按分支、作者或项目模块进行多维数据分析。
  • 隐私敏感信息默认隐藏邮箱与用户名,保护开发者身份匿名性。
  • 报告仅反映表面活跃度,不能完全代表工作产出质量。

SKILL.md

name
git-daily-work-report
description
Automatically generate daily work reports by scanning Git repositories. Use this skill when the user asks to: (1) Generate a daily report from git commits, (2) Summarize work done on a specific date based on code changes, (3) Check commits and create work summary for a date. The skill scans all git repositories under a root directory, filters by author, retrieves commit records with file changes, and generates a summarized work content description using LLM analysis.

Git Daily Work Report

Automatic daily work report generation by scanning Git repositories.

When to Use

Use this skill when:

  • User asks to generate a daily report from git commits
  • User wants to summarize work done on a specific date
  • User requests work summary based on code changes in a monorepo or multi-repo project
  • User needs to check commits by a specific author

Workflow

Step 1: Scan Git Repositories

Use the bundled script to scan all git repositories under a root directory:

python scripts/get_git_log.py <root_path> <date> [--author <name>] [--json]

Parameters:

  • root_path: Root directory containing multiple git repositories
  • date: Date in YYYY-MM-DD format
  • --author (optional): Filter commits by author name
  • --json: Output in JSON format for LLM processing (default: formatted report)

Example:

# Scan all repos for commits on a specific date
python scripts/get_git_log.py /path/to/project 2026-01-23

# Filter by author
python scripts/get_git_log.py /path/to/project 2026-01-23 --author "dengyue"

# Output JSON for LLM processing
python scripts/get_git_log.py /path/to/project 2026-01-23 --json

Note: The script automatically scans all subdirectories and finds git repositories. It's designed for monorepo layouts where multiple projects exist under a single root directory (e.g., D:\work\ containing projects like Libraries, core, Admin, etc.).

Step 2: Analyze Commits with LLM

Process the git log output to generate work summary:

  1. Group commits by repository/project
  2. Summarize what was changed based on commit messages and file changes
  3. Identify major features, bug fixes, or improvements
  4. Generate clear, professional work content description

Step 3: Submit Report (via MCP)

Use browser automation MCP to submit the generated work content to the internal reporting system.

Output Format

The script generates a formatted report by default:

   dengyue 提交日报(2026-01-23)
==========================================

[Libraries]
- 连接redis的slave
  文件变更:
    M       src/redis/connection.py

[Admin]
- 修复用户登录bug
  文件变更:
    M       controllers/auth.go
    M       models/user.go

For LLM processing, use --json to get structured data. The final work summary should be:

  • Clear and concise: Describe what work was done
  • Categorized: Group related changes by repository
  • Professional: Use appropriate language for daily reporting

Example final output format:

## 2026-01-23 工作总结

### EMLibraries
- 修改 Redis 连接配置,切换到 slave 节点以实现读写分离

### Admin
- 修复用户登录时的 session 验证 bug
- 优化用户信息查询性能

### Bug 修复
- 解决登录超时问题
- 修复权限验证逻辑错误

### 代码优化
- 重构 Redis 连接池管理

Notes

  • Ensure git is installed and accessible in the system PATH
  • The script sets UTF-8 encoding for output on Windows platforms automatically
  • The script handles UTF-8 encoding for commit messages (with error tolerance)
  • File changes are included for each commit to provide context
  • The script skips nested git repositories (only scans top-level repos)
  • For projects with many repositories, the scan may take some time

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

33.15%
按下载量换算41

Gemini CLI

21.19%
按下载量换算26

Antigravity

18.72%
按下载量换算23

Claude Code

12.65%
按下载量换算16

Codex

8.35%
按下载量换算10

Cursor

3.38%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills