/create-pull-request
Auto-generate Pull Request with comprehensive description, test plan, and changelog. Uses gh CLI for creation.
$ npx -y skills add fusengine/agents --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/create-pull-request
Context preview
What this command does when you run it.
Auto-generate Pull Request with comprehensive description, test plan, and changelog. Uses gh CLI for creation.
Command definition
create-pull-request.mddescription: Auto-generate Pull Request with comprehensive description, test plan, and changelog. Uses gh CLI for creation.
disable-model-invocation: false
Create Pull Request
Generate and create a comprehensive Pull Request:
1. **Analyze Branch Changes**:
git log main..HEAD --oneline
git diff main...HEAD --stat
2. **Extract Commit Information**:
- Parse all commit messages since branch diverged from main
- Identify key features/fixes/changes
- Categorize changes (Features, Bug Fixes, Documentation, etc.)
3. **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]
4. **Create PR**:
gh pr create --title "[TITLE]" --body "$(cat <<'EOF'
[GENERATED DESCRIPTION]
EOF
)"
5. **Output PR URL**
**Arguments**:
- $ARGUMENTS will be used as PR title or additional context
**Example Usage**:
- `/create-pull-request Add authentication` โ Creates PR with title
- `/create-pull-request` โ Auto-generates title from commits
Read more
description: Auto-generate Pull Request with comprehensive description, test plan, and changelog. Uses gh CLI for creation. disable-model-invocation: false
Create Pull Request
Generate and create a comprehensive Pull Request:
1. **Analyze Branch Changes**:
git log main..HEAD --oneline git diff main...HEAD --stat
2. **Extract Commit Information**:
- Parse all commit messages since branch diverged from main
- Identify key features/fixes/changes
- Categorize changes (Features, Bug Fixes, Documentation, etc.)
3. **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]
4. **Create PR**:
gh pr create --title "[TITLE]" --body "$(cat <<'EOF' [GENERATED DESCRIPTION] EOF )"
5. **Output PR URL**
**Arguments**:
- $ARGUMENTS will be used as PR title or additional context
**Example Usage**:
- `/create-pull-request Add authentication` โ Creates PR with title
- `/create-pull-request` โ Auto-generates title from commits
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Other commands on fusengine-agents.
- /apex-quick
Quick Flow for simple fixes - Single expert handles explore, code, review, and validate in one pass. Inspired by BMAD Barry.
Open command - /apex
APEX Methodology - The systematic Analyze-Plan-Execute-eLicit-eXamine approach for intelligent development. Reduces hallucination and defect risk through mandatory parallel research, self-review, and validation gates.
Open command - /cleanup-context
Memory optimization - removes duplicates, consolidates knowledge, and cleans memory banks for better performance.
Open command - /deep-code-analysis
Comprehensive codebase investigation using research-expert for documentation, explore-codebase for structure, and deep analysis. Perfect for understanding complex systems.
Open command - /epct
Systematic Explore-Plan-Code-Test methodology for structured development. Ensures comprehensive approach to feature implementation.
Open command - /explain-architecture
Analyze and explain software architecture with ASCII diagrams and pattern detection. Creates visual representations of system design.
Open command

