بنقرة واحدة
push
Create/update GitHub issue, branch, commit, PR, then continue implementing
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create/update GitHub issue, branch, commit, PR, then continue implementing
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Check and fix Checkstyle and PMD violations
Implement a GitHub issue with branch and pull request workflow
Post a status comment on a GitHub issue (starting work, plan update, completed)
Check JaCoCo code coverage
Format, validate checkstyle/PMD, and run tests before committing
Scan code for security vulnerabilities (OWASP patterns, path traversal, injection risks)
| name | push |
| description | Create/update GitHub issue, branch, commit, PR, then continue implementing |
| argument-hint | ["issue-number or description"] |
| allowed-tools | Bash(gh *), Bash(git *) |
Argument $ARGUMENTS is either:
42) -- update it and wire up the branch/PRadd retry logic) -- create a new issue firstIf $ARGUMENTS is a number -- view the existing issue:
gh issue view $ARGUMENTS
If $ARGUMENTS is a description -- create a new issue:
gh issue create \
--title "$ARGUMENTS" \
--body "## Context
<fill in context from current conversation>
## Acceptance criteria
- [ ] <criterion 1>
- [ ] <criterion 2>"
Capture the new issue number from the output.
If the only changed files are under .claude/ (skill updates, no source code changes):
git diff --stat
If all changed files are .claude/**:
main:
git add .claude/
git commit -m "<imperative summary>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>"
git push
git checkout main && git pull
git checkout -b feature/<issue-number>-<short-slug>
git add <changed-files>
git commit -m "<imperative summary>
Closes #<issue-number>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>"
git push -u origin HEAD
gh pr create \
--title "<concise title>" \
--body "## Summary
- <bullet 1>
- <bullet 2>
## Test plan
- [ ] Run \`./mvnw test\`
- [ ] Verify <key behavior>
Closes #<issue-number>
Generated with [Claude Code](https://claude.com/claude-code)"
Report the PR URL to the user.
Implement the work described in the issue. Run ./mvnw test after each meaningful change.