بنقرة واحدة
pr-create
Create a PR using the current branch. Generates a PR description, commits changes, and pushes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create a PR using the current branch. Generates a PR description, commits changes, and pushes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Evaluate the CI/CD pipeline on the PR, check for failures, and fix any issues.
Analyzes the current branch/PR and adds comprehensive, well-formatted structured logging and spans for observability.
Review PR comments, categorize them into critical/nitpicks, fix user-selected ones, and close resolved comments.
Mandatory rules for general git use in this repository. Follow these constraints before starting work, committing, or pushing.
Feature developer and task runner. Start a new task on a fresh branch, orchestrate worktrees, do the implementation work, and open a PR when done.
Worktree lifecycle protocol — context switching, creating, and cleaning up git worktrees for starbunk-rs.
| name | pr-create |
| description | Create a PR using the current branch. Generates a PR description, commits changes, and pushes. |
When triggered, perform the following steps in order:
git status or the GitHub MCP to confirm there are uncommitted changes on the current branch.git diff and write a comprehensive PR description summarizing the goals, changes, and any technical decisions.feat: ..., fix: ...). You may use run_command with git add . and git commit -m "...".git push origin <branch_name>).create_pull_request tool or run gh pr create --title "..." --body "...".