ワンクリックで
pr-description-generator
Generate comprehensive PR descriptions from project context and git changes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate comprehensive PR descriptions from project context and git changes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Framework for when to use Skills, Agents, or Patterns for organizing knowledge in the ADLC platform with decision criteria and migration strategies
Generate dbt model boilerplate with tests, documentation, and best practices
Validate documentation completeness and quality before project completion
Initialize new ADLC project with standard directory structure, documentation templates, and git branch
Complete reference for MCP tool integration across specialist and role agents including server inventory, tool recommendations, and security protocols
Cross-Tool Integration Pattern: AWS Infrastructure + Documentation
| name | pr-description-generator |
| description | Generate comprehensive PR descriptions from project context and git changes |
| version | 1.0.0 |
Automatically generates high-quality, consistent PR descriptions based on project documentation and git changes.
Save 5-10 minutes per PR by:
This skill is invoked when creating a PR or when explicitly requested.
Trigger phrases:
Determine project location:
Required files:
README.md - Project overviewspec.md - Requirements and implementationcontext.md - Working state and decisionsExecute Read operations:
Read: projects/active/{project_name}/README.md
Read: projects/active/{project_name}/spec.md
Read: projects/active/{project_name}/context.md
Extract key information:
Execute git commands:
# Get current branch
git branch --show-current
# Get commits since divergence from main
git log main..HEAD --oneline
# Get detailed commit history
git log main..HEAD --format="%h %s%n%b"
# Get file changes summary
git diff main...HEAD --stat
# Get detailed changes
git diff main...HEAD
Analyze:
Format:
## Summary
{1-3 bullet points summarizing what was accomplished}
- Primary change: {brief description}
- Secondary changes: {additional work}
- Impact: {who benefits and how}
Guidelines:
List key files with brief explanation:
## Files Changed
1. **{file_path}** - {brief description of changes}
2. **{file_path}** - {brief description of changes}
Rules:
From context.md and spec.md:
## Test Plan
- [ ] {Test scenario 1}
- [ ] {Test scenario 2}
- [ ] {Test scenario 3}
- [ ] All existing tests passing
- [ ] No new warnings or errors
Sources:
Standard checklist:
## Quality Checklist
- [ ] Code follows project conventions
- [ ] Documentation updated (README, comments, etc.)
- [ ] Tests written and passing
- [ ] No breaking changes (or documented if unavoidable)
- [ ] Ready for review
Customize based on project:
Append:
## Related Issues
{Links to related GitHub issues}
## Agent Consultations
{List specialist agents consulted and their contributions}
---
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Complete PR description structure:
## Summary
{summary section}
## Files Changed
{files section}
## Test Plan
{test plan}
## Quality Checklist
{quality checklist}
## Related Issues
{issues}
## Agent Consultations
{agents}
---
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Display:
✅ PR Description Generated
📋 Description ready for pull request creation.
Use with:
gh pr create --title "{title}" --body "{description}"
Or copy to clipboard for manual PR creation.
Review and edit as needed before submitting.
Check: Project files exist Action: Ask user to specify project or run from project directory
Check: git diff main..HEAD has content
Action: Warn user there are no changes to include in PR
Check: git status shows staged/unstaged changes
Action: Warn that uncommitted changes won't be included
Every PR description must:
User: "Create PR for this project"
→ Invokes pr-description-generator skill
→ Generates description
→ Executes gh pr create with generated description
User: "Generate PR description"
→ Invokes pr-description-generator skill
→ Displays description for review
→ User can edit before using
Time savings: 5-10 minutes per PR Quality: Consistent, comprehensive PR descriptions Adoption: Used for 90%+ of PRs
Version: 1.0.0 Last Updated: 2025-10-21 Maintainer: ADLC Platform Team