بنقرة واحدة
pr-submit
Create and submit a GitHub PR from the current branch
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create and submit a GitHub PR from the current branch
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Update documentation pages to match source code changes on the current branch
Review, refactor, document, and validate code changes in the current branch
Reorganize messy branch commits into a small set of logical, meaningful commits without changing any content. Drops merge-from-main commits. Safe: creates a backup branch first.
Create changelog files for important commits in a PR
Automated code review for pull requests using multiple specialized agents
Document a Python module and its classes using Google style
| name | pr-submit |
| description | Create and submit a GitHub PR from the current branch |
Submit the current changes as a GitHub pull request.
Check the current state of the repository:
git status to see staged, unstaged, and untracked changesgit diff to see current changesgit log --oneline -10 to see recent commitsIf there are uncommitted changes relevant to the PR:
alice/, fix/, feat/)Push the branch and create the PR:
-u flag to set upstream trackinggh pr createAfter the PR is created:
/changelog <pr_number> to generate changelog files, then commit and push them/pr-description <pr_number> to update the PR descriptionReturn the PR URL to the user.