docs(prompt-library): add github-issue-labeler intermediate prompt (#5374)

Signed-off-by: Mohammed Thaha <mohammedthahacse@gmail.com>
This commit is contained in:
Mohammed Thaha
2025-10-28 01:27:26 +05:30
committed by GitHub
parent 32dafb54e8
commit 2bd352a7b6
@@ -0,0 +1,30 @@
{
"id": "github-open-issues-analyzer",
"title": "GitHub Open Issues Analyzer",
"description": "Analyze a GitHub repository and summarize all open issues with labels, titles, assignees, and short main problems.",
"category": "technical",
"job": "software-engineering",
"example_prompt": "Analyze the GitHub repository at [REPO_URL] and list all open issues.\n\nFor each issue, provide:\n- Labels\n- Title\n- Assignees\n- Short main problem (36 words summary)\n- URL and issue number\n\nOutput formats:\n1. Markdown table with columns: Label | Title | Assignees | Main Problem\n2. JSON\n\nInclude total number of open issues. Keep summaries short, clear, and readable.",
"example_result": "## Open Issues\n\nTotal open issues: 1\n\n### Markdown Table\n\n| Label | Title | Assignees | Main Problem |\n|------------|---------|------------|---------------------|\n| enhancement | Button | Unassigned | Button not showing |",
"extensions": [
{
"name": "GitHub",
"command": "goose session --with-streamable-http-extension \"https://api.githubcopilot.com/mcp/\"",
"is_builtin": false,
"link": "https://block.github.io/goose/docs/mcp/github-mcp",
"environmentVariables": [
{
"name": "GITHUB_PERSONAL_ACCESS_TOKEN",
"description": "GitHub personal access token with repo access",
"required": true
}
]
},
{
"name": "Developer",
"command": "developer",
"is_builtin": true,
"environmentVariables": []
}
]
}