Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Bug Capture

Turns a conversational bug report into a durable GitHub issue written in the project's own domain language.

Dev & CodingBeginner2,788275AI 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 --search and 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 by links.

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

  1. "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.
  2. 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.
  3. 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Get GitHub CLI ready: run gh --version; install it if missing, then authenticate with gh auth login.
  2. Clone the repo: git clone https://github.com/rohitg00/pro-workflow.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r pro-workflow/skills/bug-capture ~/.claude/skills/
  5. Verify: ls ~/.claude/skills/bug-capture/SKILL.md should list the file.
  6. Use it: open Claude Code inside your project and say "file an issue for this bug".
  7. Caution: the skill files issues without showing you a draft, so try it on a test repository first.