Bug Capture
Turns a conversational bug report into a durable GitHub issue written in the project's own domain language.
Dev & CodingBeginner★ 2,788⑂ 275AI score 8/10Last updated: Aug 17, 2026
What it does
- Converts a spoken/typed bug report into a GitHub issue filed directly with
gh issue create. - Searches for duplicates first via
gh issue list --searchand offers to comment on an existing issue instead of opening a new one. - Explores the codebase in parallel to absorb project vocabulary (reads GLOSSARY.md / UBIQUITOUS_LANGUAGE.md / docs/domain.md if present) and writes the issue in those terms.
- Bans file paths, line numbers, and function names from issue bodies so the issue survives a major refactor.
- Splits a report into parent/child issues when it contains two or more independent failure modes, filing in dependency order with honest
Blocked bylinks.
Who it's for
- Dev teams and open-source maintainers who track bugs on GitHub
- Anyone tired of hand-writing issues after a QA pass
- Teams standardizing issue quality (repro steps, expected vs. actual)
Examples
- "Uploading multiple files silently fails after the first one" → at most two clarifying questions, then one issue filed with repro steps and its URL returned.
- After a QA session you say "log this as a bug" → the duplicate search surfaces a similar issue closed three weeks ago and asks whether to comment instead.
- A single report mixing a broken login redirect and a missing session-expiry banner → filed as one parent plus two child issues so two contributors can work in parallel.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/rohitg00/pro-workflow/HEAD/skills/bug-capture/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/bug-capture folder from the GitHub repo rohitg00/pro-workflow into my ~/.claude/skills/bug-capture/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/rohitg00/pro-workflow.git && mkdir -p ~/.claude/skills && cp -r pro-workflow/skills/bug-capture ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Get GitHub CLI ready: run
gh --version; install it if missing, then authenticate withgh auth login. - Clone the repo:
git clone https://github.com/rohitg00/pro-workflow.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r pro-workflow/skills/bug-capture ~/.claude/skills/ - Verify:
ls ~/.claude/skills/bug-capture/SKILL.mdshould list the file. - Use it: open Claude Code inside your project and say "file an issue for this bug".
- Caution: the skill files issues without showing you a draft, so try it on a test repository first.