generate-pr-description
星标10
分支0
更新时间2026年2月3日 05:23
Generate PR title and description
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
Generate PR title and description
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Explain how code, a feature, or system works
Generate a commit message for staged changes
Generate database diagram for a feature
Generate sequence diagram for a feature
Get a general understanding of the codebase (stack, key files, structure, etc) and/or specific feature
Update the changelog based on commits in the current git branch
| name | generate-pr-description |
| description | Generate PR title and description |
| argument-hint | ["parent-branch"] |
Analyze the git diff between the parent branch and the current branch and create a pull request title and description.
Parent branch: Use "$1" if provided, otherwise default to "main"
git diff <parent-branch>...HEAD and git log <parent-branch>..HEAD to analyze changesPrint the title and description in code blocks so they can be easily copied:
PR title:
Add user notification preferences
PR description:
## Summary
Users can now configure how and when they receive notifications.
## Changes
- Added notification preferences model and API endpoints
- Created settings UI for managing preferences
- Implemented email digest options (immediate, daily, weekly)
## Notes
- Requires database migration