用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Marshall-Hallenbeck/dot_files --skill summarize-changes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when asked to work on, implement, or complete a GitHub issue — before writing any code, checks issue state, existing PRs, git history, and codebase to determine what work remains or if the issue is already resolved
Use when starting, checking, or finishing work on a GitHub issue in any repo where multiple agents may work in parallel — posts a session-info claim comment and manages the in-progress label so other agents skip claimed issues
Use when asked to create, open, publish, or submit a pull request from the current branch
基于 SOC 职业分类
正在显示 SKILL.md
| name | summarize-changes |
| description | Summarize git changes for PRs or commits. Does not commit unless explicitly asked. |
| argument-hint | [branch|commits|range] |
Summarizes git changes for PR descriptions, release notes, or branch reviews.
/summarize-changes [branch|commits|range]
/summarize-changes — Summarize uncommitted changes/summarize-changes feature-branch — Summarize branch vs main/summarize-changes HEAD~5..HEAD — Summarize last 5 commits# For uncommitted changes
git diff --stat
git diff --name-only
# For branch comparison
git log main..HEAD --oneline
git diff main...HEAD --stat
## Summary
- 3 features added
- 2 bug fixes
- 15 files changed
### Features
- Added tournament editing UI
- Implemented search functionality
### Bug Fixes
- Fixed caching issue
/commit after summarizing