Help us improve
Share bugs, ideas, or general feedback.
From samocode
Generates concise branch summaries for PR descriptions by analyzing git diffs and commit history.
npx claudepluginhub yuvasee/samocodeHow 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.
Generates structured PR descriptions from git commit history by grouping changes by domain, filtering noise like lints, and inspecting diffs only when needed. Use for consistent, token-efficient PR summaries.
Drafts conventional commit PR titles and Shopware 5-section descriptions for core PRs targeting trunk. Analyzes branch against trunk, uses session context, asks for missing info.
Generates a PR description from conversation context and git diff, then opens PR creation in browser. Useful for automating the PR drafting workflow.
Share bugs, ideas, or general feedback.
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]