do-issues
Installation
SKILL.md
Work on GitHub issues systematically with proper development workflow: $ARGUMENTS
Follow these steps:
-
Review available GitHub issues:
- Use
gh issue listto see all open issues - Choose a small, manageable task to complete
- If $ARGUMENTS specifies an issue number, work on that specific issue
- Use
-
Plan your approach:
- Use
gh issue viewto get detailed issue information - Understand the problem and requirements thoroughly
- Post your implementation plan as a comment on the issue using
gh issue comment
- Use
-
Create a development branch:
- Create a new branch with descriptive name:
git checkout -b fix/issue-{number}-{description} - Ensure branch is based on the latest main branch
- Create a new branch with descriptive name: