find-similar-issues
Identify similar GitHub issues by comparing new issue descriptions to existing ones, helping prioritize and resolve problems efficiently within a repository.
Instructions
Find GitHub issues similar to a new issue description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueDescription | Yes | Description of the issue to find similar ones for | |
maxResults | No | Maximum number of similar issues to return | |
owner | Yes | GitHub repository owner/organization | |
repo | Yes | GitHub repository name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issueDescription": {
"description": "Description of the issue to find similar ones for",
"type": "string"
},
"maxResults": {
"default": 5,
"description": "Maximum number of similar issues to return",
"maximum": 20,
"minimum": 1,
"type": "integer"
},
"owner": {
"description": "GitHub repository owner/organization",
"type": "string"
},
"repo": {
"description": "GitHub repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"issueDescription"
],
"type": "object"
}