smithery.ai

bug-issue

Diagnose and fix a GitHub issue with a reproduction-first workflow.

First seen Mar 27, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,340 B
  • docs SUMMARY.md 84 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Bug Issue

Use this skill to fix bugs or regressions reported in a GitHub issue.

How this differs from feature-issue

  • Focuses on reproducing and diagnosing a problem, not building new functionality.
  • Requires a root-cause analysis and regression tests.

Workflow

  1. Issue analysis

- Require an issue number argument. If missing, ask for it. - gh issue view <issue-number> - Summarize expected vs actual behavior. - If anything is unclear, interview the user for clarification and reproduction details.

  1. Reproduce

- Follow the steps from the issue. - If you cannot reproduce, ask for logs, environment details, or a minimal repro.

  1. Root cause

- Identify the smallest code path that triggers the issue. - Explain the cause in one paragraph before coding the fix.

  1. Fix

- Implement the minimal change that addresses the root cause. - Keep changes tightly scoped.

  1. Tests and validation

- Add or update tests to prevent regression. - Run relevant checks and fix diagnostics before proceeding.

  1. Review-first checkpoint

- Summarize changes, root cause, and test results. - Do not start a commit. The user initiates the commit process when ready.