raine/workmux

open-pr

Write a PR description using conversation context and open PR creation in browser.

First seen Mar 2, 2026

Installation

$ npx skills add raine/workmux --skill open-pr

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from raine/workmux.

npx skills add raine/workmux

Browse all from raine/workmux

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2.4K
License LICENSE
Default branch main
Open issues 30
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Bash, Glob, Grep

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,415 B
  • docs SUMMARY.md 97 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 30 installs

SKILL.md

<!-- This is a starting point. Customize the template and guidelines to match your team's PR conventions. -->

Gather context

  1. Get the base branch (usually main or master)
  2. Get the diff: git diff <base>...HEAD
  3. Get commit messages: git log <base>...HEAD --format="%s"
  4. Read changed files to understand the broader context

Commit uncommitted changes

  1. Run git status to check for uncommitted changes
  2. If changes exist, commit them before proceeding

Write PR description

Use this template:

## Summary

[1-2 sentences: what this PR does and why]

## Changes

- [Key change 1]
- [Key change 2]
- [Key change 3]

## Testing

[How you verified it works]

Guidelines:

  • Lead with a concise summary of what the PR does
  • Explain the "why" before the "how"
  • Use the conversation context to inform the description
  • Include before/after comparisons for UI or performance changes
  • Be direct and to the point

Create the PR

  1. Write a short PR title (max 72 characters)
  1. Ensure the branch is pushed:

``bash git push -u origin HEAD ``

  1. Open PR creation in browser (do NOT create directly):

``bash gh pr create --web --title "<title>" --body "<body>" ``