From samocode
Generates concise branch summaries for PR descriptions by analyzing git diffs and commit history.
How this skill is triggered — by the user, by Claude, or both
Slash command
/samocode:summaryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate concise summaries of changes made on the current branch for PR descriptions.
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
Verify branch context:
git branch --show-currentGet changes:
git diff main...HEAD to see all changes since divergencegit log main..HEAD --oneline to see commit historyAnalyze changes:
Generate summary:
Format for PR:
## 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]
npx claudepluginhub yuvasee/samocodeGenerate a concise and structured PR description from commit history with minimal token usage
Writes PR descriptions grounded in the actual diff by reading branch changes via the GitHub connector. Useful when drafting pull request bodies or documenting changes in Cowork.
Generates pull request descriptions from git branch changes with automatic title generation, change-type detection, and smart analysis. Uses branch-only scope to avoid full history analysis.