-
Notifications
You must be signed in to change notification settings - Fork 98
Add explain-issue skill #1441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add explain-issue skill #1441
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,30 @@ | ||||||||||||||||
| --- | ||||||||||||||||
| name: explain-issue | ||||||||||||||||
| description: "Explain a GitHub issue: the background problem and the proposed solution" | ||||||||||||||||
| targets: | ||||||||||||||||
| - "*" | ||||||||||||||||
| --- | ||||||||||||||||
|
|
||||||||||||||||
| target_issue = $ARGUMENTS | ||||||||||||||||
|
|
||||||||||||||||
| If target_issue is not provided, ask the user which issue to explain. | ||||||||||||||||
|
|
||||||||||||||||
| ## Step 1: Gather Issue Information | ||||||||||||||||
|
|
||||||||||||||||
| Run the following in parallel: | ||||||||||||||||
|
|
||||||||||||||||
| - Get the issue description and metadata: `gh issue view <issue_number>` | ||||||||||||||||
| - Get the issue comments: `gh issue view <issue_number> --comments` | ||||||||||||||||
|
Comment on lines
+14
to
+17
|
||||||||||||||||
| Run the following in parallel: | |
| - Get the issue description and metadata: `gh issue view <issue_number>` | |
| - Get the issue comments: `gh issue view <issue_number> --comments` | |
| Run the following command: | |
| - Get the issue description, metadata, and comments: `gh issue view <issue_number> --comments` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR description mentions documenting a maintainer preference for Japanese responses in
.github/copilot-instructions.md, but that change doesn’t appear to be included in this PR. Either add the corresponding update to.github/copilot-instructions.mdor adjust the PR description to match the actual changes.