with one click
handle-issue
Analyze a GitHub issue and develop an implementation plan
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Analyze a GitHub issue and develop an implementation plan
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Create and check out a feature branch when currently on master
Create a git commit with a short, lowercase commit message
Evaluate review comments from the conversation and determine which are valid
Review unstaged git changes for bugs, logic errors, and security problems
Clean up worktrees for branches that have been merged and deleted
Create a new worktree and branch from a GitHub issue
| name | handle-issue |
| description | Analyze a GitHub issue and develop an implementation plan |
| disable-model-invocation | true |
The user wants to work on a GitHub issue. The issue number (e.g. #47 or 47) is provided as the argument: $ARGUMENTS.
If no issue number argument was provided, ask the user which issue they want to work on.
Follow these steps:
Fetch the GitHub issue using gh issue view <number> to get the issue title, body, and any comments.
Summarize the issue clearly and concisely for the user. Explain what it says we should do.
Evaluate whether the issue contains a fully formed plan:
If it IS a fully formed plan (clear steps, well-defined scope, actionable):
If it is NOT a fully formed plan (vague, high-level, or missing details):
Explore the codebase to understand the relevant parts and get a better understanding of how to address the issue. Read related files, understand existing patterns, and think about what the best approach would be.
Ask clarifying questions. Do not hesitate to ask the user questions that might be relevant to make sure you understand the goals correctly. Ask too many clarifying questions rather than too few.
Present your thoughts. When you have a complete understanding, share your final thoughts on how we should proceed with addressing the issue.
Enter plan mode. When the user agrees with the approach, enter plan mode and write a detailed implementation plan. Continue to examine the codebase in detail within plan mode to make the plan as specific and actionable as possible.