with one click
detect-duplicates
Search for and identify duplicate issues in a repository
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
Search for and identify duplicate issues in a repository
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
Check if an issue has all required information for action
Coordinate triage of a GitHub issue by orchestrating sandboxed analysis subagents and applying labels
Verify whether a reported bug is reproducible by inspecting the codebase
Step-by-step procedure for implementing a GitHub issue. Gathers context, discovers repo conventions, plans the change, implements, verifies with tests and linters, and commits to a feature branch.
Hardcoded endpoint documentation for the container builder API.
Hardcoded endpoint documentation for the repo provisioner API.
| name | detect-duplicates |
| description | Search for and identify duplicate issues in a repository |
| allowed-tools | Bash(curl *) |
Search for issues with similar titles and keywords to the current issue using the GitHub REST server on the host.
Read the current issue:
curl -s http://host.docker.internal:8081/repos/$OWNER/$REPO_NAME/issues/$ISSUE_NUMBER
List all issues:
curl -s http://host.docker.internal:8081/repos/$OWNER/$REPO_NAME/issues
Search for similar issues:
curl -s "http://host.docker.internal:8081/search/issues?q=KEYWORDS"
Respond ONLY with a JSON object:
{
"duplicate_of": <issue number or null>,
"confidence": "high" | "medium" | "low",
"reason": "<brief explanation>"
}