mit einem Klick
write-pr
Write PR
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Write PR
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| name | write-pr |
| description | Write PR |
| allowed-tools | ["Bash(gh pr create *)","Bash(git diff *)","Bash(git log *)","Bash(git push *)","Bash(git status *)"] |
Create a draft PR for the current branch with a title and description.
gh pr create --draft --head <branch> --title <title> --body <body>
Format: [TICKET-ID] Short imperative title
[MTS2-2300] Remove cobalt::time module entirely.[NOJIRA].!`cat .github/pull_request_template.md 2>/dev/null || cat <<'DEFAULTTEMPLATE'
## Summary
<!-- One short paragraph explaining why this PR exists and what it does. -->
DEFAULTTEMPLATE`
Use the template above as the structure for the PR body. Fill in or replace placeholder sections with content derived from the actual changes. Preserve any checklists from the template as-is (don't check boxes unless you're confident the item is satisfied). Add a summary section at the top if the template doesn't already include one.
Plan and execute a task end-to-end with atomic commits and a draft PR. Breaks work into phases, creates a branch, implements each phase with verification, and opens a PR. Use when the user describes a task they want fully implemented, says "do this", "build this", "make this happen", or wants the full git lifecycle for a change.
Create and switch to a new git branch with the format eli/<short-description>. Use when the user asks to "make a branch", "create a branch", "new branch", "start working on", or wants to begin work on a new task.
Verify, commit, and push changes. Runs cargo check and clippy, then creates a conventional commit. Use when the user says "commit", "commit and push", "save my work", or after completing an implementation phase.