Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计未展示

git-week-summarygit 周总结

Agent Skill

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

总安装

656

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add rijieli/skills --skill "git-week-summary"

简介

发现并安装 AI 代理技能,生成周期性工作报告。

  • 适用于周报撰写和项目里程碑总结场景。git-week-summary 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 自动聚合本周内所有相关提交和 Issue 变动。
  • 需过滤非工作时间提交,聚焦有效开发产出。
  • 建议导出为 Markdown 格式便于嵌入文档系统。

SKILL.md

Git Week Summary

Generates a weekly git change summary for the current repository: commits in the current week (Mon–Sun), filtered by author and by file extensions (e.g. .swift, .py). Output is JSON only (no terminal output): a summary file and one fragment file per commit.

When to Use

  • User wants a weekly git summary or week in review of their commits
  • User asks for standup or report content based on git activity
  • User wants to see what changed this week in a repo, filtered by author or file type

How to Run

Run from the repository root of the repo you want to summarize (the directory that contains .git). The script is at scripts/git_weeksummary.py in this skill.

python3 <skill-root>/scripts/git_weeksummary.py --author EMAIL --suffix EXT [EXT ...] --output-dir DIR
OptionDefaultDescription
--author— (required)Restrict commits to this author email
--suffix— (required)Include only files whose name ends with one of these (e.g. .swift.py).
--output-dir— (required)Temporary directory for storing the JSON output. Provide a system temporary directory or a secure temporary sandbox. If you prefer not to provide one explicitly, use the magic string $SYSTEMTEMP$. See note below.

Your git email (for --author): From the repo root, run git config user.email for the effective value (repo-specific, or global if unset). Use git config --global user.email to see only the global setting.

Choosing --suffix: Pick extensions by project type (e.g. .py for Python, .swift for Swift, .ts .tsx for TypeScript). A leading dot is optional (e.g. py and .py are equivalent). It is common to exclude resources and binary files (e.g. .png, .jpg, .pdf, .woff, .mp4) and focus on source code so the summary stays relevant and smaller.

--output-dir (required): Temporary directory for storing the JSON output. Provide a system temporary directory or a secure temporary sandbox (e.g. /tmp/weeksummary, ./reports). If you prefer not to provide one explicitly, use the magic string $SYSTEMTEMP$ (resolves to e.g. $TMPDIR/weeksummary on Unix). Prefer temp or sandbox paths to avoid writing into the repo or other sensitive locations.

Week is always Mon–Sun (first workday Monday).

Invocation by platform

  • macOS: Use python3; python is often absent or Python 2.
  • Linux: Prefer python3; on some distros python points to Python 3.
  • Windows: Use python (python.org or Microsoft Store) or py -3 (Python launcher). In Git Bash or WSL, python3 is often available.
  • uv: From a uv-managed project (or the skill repo): uv run <skill-root>/scripts/git_weeksummary.py [options]. The script needs only the stdlib, so no extra deps.

Examples

# Use system temp ($SYSTEMTEMP$ → TMPDIR/weeksummary or equivalent)
python3 scripts/git_weeksummary.py --author "you@example.com" --suffix .swift --output-dir '$SYSTEMTEMP$'

# Swift and Python, sandbox path
python3 scripts/git_weeksummary.py --author "you@example.com" --suffix .swift .py --output-dir /tmp/weeksummary

# Python only, custom output base
python3 scripts/git_weeksummary.py --author "you@example.com" --suffix .py --output-dir ./reports

# With uv (from a uv project or the skill repo)
uv run python scripts/git_weeksummary.py --author "you@example.com" --suffix .py --output-dir '$SYSTEMTEMP$'

Agent note: Run from the target repo’s root. Use the full path to scripts/git_weeksummary.py (e.g. from the skill’s install directory) when the working directory is the repo to summarize.

Output

The script prints nothing to stdout. On error (e.g. not a git repository) it writes to stderr and exits non‑zero.

JSON (under --output-dir):

<output-dir>/<repo_name>/git_summary_<YYYYMM>_<DD>/

Overwrite: If that directory already exists (e.g. from a previous run for the same week), the script removes it and recreates it. Each run overwrites that week’s output.

  1. 0_git_summary_<YYYYMM>_<DD>.json — summary: {"_meta": {"all_in_one_size": <bytes>, "fragment_sizes": {"<sha>": <bytes>,...}}, "<sha>": {"date", "message", "filechanged", "changes"},...}. all_in_one_size is the sum of all fragment file sizes (UTF‑8 bytes). fragment_sizes is the byte size of each N_<sha>.json file.
  2. 1_<sha>.json, 2_<sha>.json,... — one fragment per commit (chronological order): {"date", "message", "filechanged", "changes"}. date is YYYY-MM-DD. filechanged is a list of repo-relative paths. changes is a map from repo-relative path to that file’s unified-diff hunk content. Commits with no matching files after the suffix filter are omitted.

For callers: Check _meta.all_in_one_size and _meta.fragment_sizes first. If all_in_one_size is within your context limit, read 0_git_summary_*.json to get the full index and all commit data. If it is too large, read the fragment files (1_<sha>.json, 2_<sha>.json, …) one by one as needed; use fragment_sizes to decide which to load or in what order.

Script

scripts/git_weeksummary.py. Dependencies: Python 3 standard library only.

Packaging (e.g. for Claude)

  1. Use the git-week-summary folder as the Skill root.
  2. ZIP the folder so the root of the archive is git-week-summary/ (not the files directly).
  3. Correct: git-week-summary.zipgit-week-summary/SKILL.md, git-week-summary/scripts/git_weeksummary.py.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenCode

28.46%
按下载量换算18

Cursor

24.07%
按下载量换算16

Codex

17.22%
按下载量换算11

Claude Code

12.31%
按下载量换算8

Antigravity

8.86%
按下载量换算6

Gemini CLI

3.93%
按下载量换算3

安全审计

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

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add rijieli/skills --skill "git-week-summary" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills