From deck
Create a GitHub pull request — pushes the current branch and opens a PR with auto-generated title and description. Use for any PR creation, branch submission, or code review request.
How this skill is triggered — by the user, by Claude, or both
Slash command
/deck:prThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
/pr # Create GitHub PR from current branch
Run git branch --show-current. If on main, tell the user they cannot create a PR from the main branch and stop.
Run git log main..HEAD --oneline to check for commits ahead of main. If there are no commits AND the working directory is clean, tell the user there is nothing to create a PR for and stop.
Run git status to check if the working directory is clean.
/ci, then stop and let the user run it.git push -u origin HEAD to push the branch.git log main..HEAD to analyze all commits on this branch. Generate a succinct, self-explanatory PR description from them.gh pr create with a title following Conventional Commits pattern. Base branch is main.After the PR is created, automatically request code review from available review agents:
gh pr edit --add-reviewer @copilot to request Copilot code review.Display the PR URL to the user, along with the review request status.
feat:, fix:, refactor:).npx claudepluginhub darknight/cc-deck --plugin deckCreates or updates GitHub pull requests for the current branch. Handles push, title/description generation from commits, and CI verification.