Implement Issue

Implement a GitHub issue with branch and pull request workflow

majiayu000 Updated 567 repo stars

File contents

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, 4-space indent)
  • 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 Sonnet 4.5 <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.

majiayu000/claude-skill-registry-data/tree/main/development/implement-issue-alexmond-jhelm commit b8f76db6ff

Frequently asked questions

npx skillmds@latest add majiayu000/implement-issue-3