Help us improve
Share bugs, ideas, or general feedback.
From workmux-status
Generates a PR description from conversation context and git diff, then opens PR creation in browser. Useful for automating the PR drafting workflow.
npx claudepluginhub raine/workmux --plugin workmux-statusHow this skill is triggered — by the user, by Claude, or both
Slash command
/workmux-status:open-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
<!-- This is a starting point. Customize the template and guidelines to match your team's PR conventions. -->
Creates GitHub pull requests from branch changes using git analysis and gh CLI, with conventional commit titles and standardized templated descriptions including summary, changes, testing, and checklists.
Creates GitHub pull requests following Sentry's engineering practices using GitHub CLI. Generates structured descriptions from branch diffs explaining what changed, why, and reviewer context. Use before opening PRs from committed branches.
Creates p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
main or master)git diff <base>...HEADgit log <base>...HEAD --format="%s"git status to check for uncommitted changesUse 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:
Write a short PR title (max 72 characters)
Ensure the branch is pushed:
git push -u origin HEAD
Open PR creation in browser (do NOT create directly):
gh pr create --web --title "<title>" --body "<body>"