Summary
summary Installation Command Prompt $ npx skills add https://smithery.ai/skills/yuvasee/summary
smithery.ai
Generate branch summaries for PR descriptions.
summary Installation Command Prompt $ npx skills add https://smithery.ai/skills/yuvasee/summary
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
call-summary Installation Command Prompt $ npx skills add https://github.com/anthropics/knowled…
2.5K installsGo back through the previous year of work and create a Notion doc that groups relevant links in…
1.5K installs会议纪要整理工作流:汇总指定时间范围?
668.7K installs会议纪要整理工作流:汇总指定时间范围?
431.1K installsSummarizes WeChat group chat highlights into a structured digest using the local wx-cli binary …
8.8K installs会议纪要整理工作流:汇总指定时间范围?
3.8K installsOther skills from smithery.ai · top by installs.
npx skills add https://smithery.ai
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Files included with this skill beyond the listing page.
SKILL.md
1,963 B
SUMMARY.md
61 B
Generate concise summaries of changes made on the current branch for PR descriptions.
Create a short summary of changes made on this branch suitable for a PR description.
Scope: Current branch vs main
- Check current branch: git branch --show-current - Ensure not on main/master (error if so)
- Run git diff main...HEAD to see all changes since divergence - Run git log main..HEAD --oneline to see commit history
- Review the diff to understand what was changed - Look at commit messages for context - Identify the main purpose/theme of the changes - Note key files/components modified - Identify the type of change (feature/fix/refactor/docs/etc.)
- Create a concise 2-4 sentence summary capturing: - What was changed (high-level) - Why it was changed (if evident from commits/diff) - Any notable technical decisions or approaches - Focus on "why" over "what" where possible - Use clear, direct language - Avoid technical jargon unless necessary
- Present the summary ready to paste into PR description - Include list of key files changed (if helpful) - Suggest test plan items if relevant
## Summary
[2-4 sentence summary]
## Key Changes
- [Main change 1]
- [Main change 2]
- [Main change 3]
## Test Plan
- [ ] [Test item 1 if relevant]
- [ ] [Test item 2 if relevant]