
Git Summarize Weekly
Pull this week’s GitHub activity into an English weekly-report blurb grouped by repo without hand-copying events.
Install
npx skills add https://github.com/zc277584121/mygitplugin --skill git-summarize-weeklyWhat is this skill?
- Computes Monday-through-today window with shell date commands before fetching events
- Uses `gh api users/.../events --paginate` and filters Push, PR, review, issue, and create events
- Defaults to external-repo contributions only, with an override to include your own repos
- Groups results by repository with major features called out and small fixes merged
- English-only formatted sections ready to paste into weekly reports
Adoption & trust: 381 installs on skills.sh; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Triagemattpocock/skills
Caveman Commitjuliusbrussee/caveman
Using Git Worktreesobra/superpowers
Finishing A Development Branchobra/superpowers
Git Commitgithub/awesome-copilot
Git Guardrails Claude Codemattpocock/skills
Journey fit
Primary fit
Weekly contribution summaries are written artifacts for status and stakeholder updates, which fits the Grow phase’s content and communication work. The skill’s output is prose for pasting into reports, not shipping code or running infra—so the content subphase is the natural shelf.
Common Questions / FAQ
Is Git Summarize Weekly safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Git Summarize Weekly
# Git Summarize Weekly 总结本周的 GitHub 贡献,输出适合写入周报的英文摘要。 ## 触发条件 当用户要求总结本周 GitHub 贡献、写周报或查看本周工作时使用此 skill。 ## 执行步骤 1. **计算日期范围**:计算本周一的日期到今天。使用 `date` 命令计算。 2. **拉取 GitHub events**: ```bash gh api users/zc277584121/events --paginate --jq '.[]' ``` 获取用户近期的 GitHub 活动事件。 3. **过滤和分析**: - 过滤出本周时间范围内的事件。 - **默认排除** `zc277584121` 自己账号下的仓库,只保留对他人仓库的贡献。 - 如果用户明确要求包含自己的仓库,则不排除。 - 关注以下事件类型: - `PushEvent`:代码推送 - `PullRequestEvent`:PR 创建/合并 - `PullRequestReviewEvent`:PR Review - `IssuesEvent`:Issue 创建/关闭 - `IssueCommentEvent`:Issue 评论 - `CreateEvent`:分支/标签创建 4. **输出格式**: - **必须用英文输出**,适合直接抄写到周报中。 - 大的 feature 或重要 PR 单独一条列出,简要说明做了什么。 - 小的修复、review、评论等可以合并为一条。 - 按仓库分组,格式简洁清晰。 - 示例格式: ``` ## Weekly Contributions (2025-01-20 ~ 2025-01-24) ### milvus-io/pymilvus - Implemented hybrid search API with support for multiple vector fields (#xxx) - Fixed connection pool timeout issue (#xxx) - Reviewed 3 PRs related to batch insert optimization ### milvus-io/milvus - Minor: commented on 2 issues about memory management ``` ## 注意事项 - GitHub Events API 最多返回最近 90 天、300 个事件的数据。 - 如果某一周活动特别少,如实报告即可。 - 输出要简洁实用,直接可以粘贴到周报中。