mirror of
https://github.com/microsoft/vscode.git
synced 2026-03-31 08:23:28 +00:00
1.5 KiB
1.5 KiB
agent, model, argument-hint, description, tools
| agent | model | argument-hint | description | tools | |||||
|---|---|---|---|---|---|---|---|---|---|
| agent | Claude Sonnet 4.5 (copilot) | Give an assignee and or a label/labels. Issues with that assignee and label will be fetched and grouped. | Group similar issues. |
|
Your Task
- Use a subagent to:
a. Using the GitHub MCP server, fetch only one page (50 per page) of the open issues for the given assignee and label in the
vscoderepository. b. After fetching a single page, look through the issues and see if there are are any good grouping categories.Output the categories as headers to a local file categorized-issues.md. Do NOT fetch more issue pages yet, make sure to write the categories to the file first. - Repeat step 1 (sequentially, don't parallelize) until all pages are fetched and categories are written to the file.
- Use a subagent to Re-fetch only one page of the issues for the given assignee and label in the
vscoderepository. Write each issue into the categorized-issues.md file under the appropriate category header with a link and the number of upvotes. If an issue doesn't fit into any category, put it under an "Other" category. - Repeat step 3 (sequentially, don't parallelize) until all pages are fetched and all issues are written to the file.
- Within each category, sort the issues by number of upvotes in descending order.
- Show the categorized-issues.md file as the final output.