بنقرة واحدة
implement-issue
Implement a GitHub issue with branch and pull request workflow
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Implement a GitHub issue with branch and pull request workflow
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Project coding standards and conventions for Java 17 with Lombok, spring-javaformat, checkstyle, and PMD
Create or update a GitHub issue for tracking work
Check JaCoCo code coverage
Save a learning to project memory. Invoke automatically (without user asking) whenever a task required more than one fix cycle to resolve — e.g. a test failed and needed a second attempt, a compile error required a correction, an API behaved unexpectedly, or an assumption proved wrong mid-task. Also invoke when the user explicitly asks to remember something. Do NOT invoke for routine single-pass work.
Build the project with Maven
Plan the implementation of a GitHub issue
| name | implement-issue |
| description | Implement a GitHub issue with branch and pull request workflow |
| disable-model-invocation | true |
| argument-hint | ["issue-number"] |
| allowed-tools | Bash(gh *), Bash(git *), Bash(bash *) |
Follow this workflow for every code change:
gh issue view $ARGUMENTS
git checkout main
git pull
git checkout -b feature/$ARGUMENTS-<short-description>
bash "/Users/alex.mondshain/Library/Application Support/JetBrains/IntelliJIdea2025.3/plugins/maven/lib/maven3/bin/mvn" test -f pom.xml
Fix any failures before proceeding.
git add <changed-files>
git commit -m "<descriptive message>
Closes #$ARGUMENTS
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>"
git push -u origin HEAD
gh pr create --title "<concise title>" --body "## Summary
<bullet points>
## Test plan
<how to verify>
Closes #$ARGUMENTS
🤖 Generated with [Claude Code](https://claude.com/claude-code)"
Report the PR URL when done.