| 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(./mvnw *) |
Implement GitHub issue #$ARGUMENTS
Follow this workflow for every code change:
Step 1: Read the issue
gh issue view $ARGUMENTS
Step 2: Create a feature branch
git checkout main
git pull
git checkout -b feature/$ARGUMENTS-<short-description>
Step 3: Implement the changes
- Read relevant source files before making modifications
- Follow project coding standards (Java 21, Lombok, tabs)
- Keep changes focused on the issue requirements
Step 4: Run tests
./mvnw test
Fix any failures before proceeding.
Step 5: Commit and push
git add <changed-files>
git commit -m "<descriptive message>
Closes #$ARGUMENTS
Co-Authored-By: Claude <noreply@anthropic.com>"
git push -u origin HEAD
Step 6: Create pull request
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.