Auto-generate Pull Request with comprehensive description, test plan, and changelog. Uses gh CLI for creation.
Generates and creates comprehensive pull requests with AI-generated descriptions, test plans, and changelogs.
/plugin marketplace add fusengine/agents/plugin install fuse-ai-pilot@fusengine-pluginsGenerate and create a comprehensive Pull Request:
Analyze Branch Changes:
git log main..HEAD --oneline
git diff main...HEAD --stat
Extract Commit Information:
Generate PR Description:
## Summary
[Concise overview of changes]
## Changes
- ✨ Feature: [Description]
- 🐛 Fix: [Description]
- 📚 Docs: [Description]
## Test Plan
- [ ] Unit tests pass (`bun test`)
- [ ] Linters pass (`bun run lint`)
- [ ] Manual testing completed
- [ ] [Specific test scenario]
## Breaking Changes
[None / List any breaking changes]
## Screenshots
[If applicable]
Create PR:
gh pr create --title "[TITLE]" --body "$(cat <<'EOF'
[GENERATED DESCRIPTION]
EOF
)"
Output PR URL
Arguments:
Example Usage:
/create-pull-request Add authentication → Creates PR with title/create-pull-request → Auto-generates title from commits/create-pull-requestGuide for creating pull requests using GitHub CLI with proper templates and conventions