Agent Skills: Bug Triage

8-step bug triage and implementation workflow. Ensures bugs are reproducible, root-caused, and fixable before implementation begins.

UncategorizedID: codyswanngt/lisa/bug-triage

Install this agent skill to your local

pnpm dlx add-skill https://github.com/CodySwannGT/lisa/tree/HEAD/plugins/lisa/skills/bug-triage

Skill Files

Browse the full folder contents for bug-triage.

Download Skill

Loading file tree…

plugins/lisa/skills/bug-triage/SKILL.md

Skill Metadata

Name
bug-triage
Description
"8-step bug triage and implementation workflow. Ensures bugs are reproducible, root-caused, and fixable before implementation begins."

Bug Triage

Follow this 8-step triage process before implementing any bug fix. Do not skip triage.

Triage Steps

  1. Verify you have all information needed to reproduce the bug (authentication requirements, environment information, etc.). Do not make assumptions. If anything is missing, stop and ask before proceeding.
  2. Reproduce the bug. If you cannot reproduce it, stop and report what you tried and what you observed.
  3. Once reproduced, verify you are 100% positive on how to fix it. If not, determine what you need to do to be 100% positive (e.g. add logging, trace the code path, inspect state) and do that first.
  4. Verify you have access to the tools, environments, and permissions needed to deploy and verify this fix (e.g. CI/CD pipelines, deployment targets, logging/monitoring systems, API access, database access). If any are missing or inaccessible, stop and raise them before starting implementation.
  5. Define the tests you will write to confirm the fix and prevent a regression.
  6. Define the documentation you will create or update to explain this bug so another developer understands the "how" and "what" behind it.
  7. If you can verify your fix before deploying to the target environment (e.g. start the app, invoke the API, open a browser, run the process, check logs), do so before deploying.
  8. Define how you will verify the fix beyond a shadow of a doubt (e.g. deploy to the target environment, invoke the API, open a browser, run the process, check logs).

Implementation

Use the output of the triage steps above as your guide. Do not skip triage.

Bug Triage Skill | Agent Skills