Install
openclaw skills install overlap-checkCheck for existing issues and PRs before creating new ones. Fires automatically when agent intends to file an issue, open a PR, or comment on a thread. Searc...
openclaw skills install overlap-checkBefore creating a new issue or PR, search the target repo for existing threads that cover the same topic.
gh issue creategh pr createFigure out which repo you're targeting. If you're inside a cloned repo, run:
gh repo view --json nameWithOwner -q .nameWithOwner
Summarize what your issue or PR is about in a few keywords.
Run both searches. Drop filler words (the, a, is, for, with, this, that, when, not, but, and, from) from your keywords.
gh search issues --repo OWNER/REPO "KEYWORDS" --limit 5 --json number,title,state,comments
gh search prs --repo OWNER/REPO "KEYWORDS" --limit 5 --json number,title,state,comments
Read the titles and comment counts. If any look related:
gh issue view NUMBER --repo OWNER/REPO or gh pr view NUMBER| Situation | Action |
|---|---|
| Existing open thread covers your exact topic | Comment there instead of creating a new one |
| Existing closed thread solved it | Don't reopen — link to it if relevant |
| Existing thread is related but different | Proceed with new issue/PR, reference the related thread |
| No matches | Proceed normally |
Show what you found before proceeding:
Found existing threads that may cover this:
#13738 — WSL2 clipboard paste broken (16 comments, open)
#14635 — Paste not working in WSL (3 comments, open)
Should I comment on an existing thread or create a new one?
gh search calls is enough