bug-triage
8
总安装量
4
周安装量
#35599
全站排名
安装命令
npx skills add https://github.com/nymbo/skills --skill bug-triage
Agent 安装分布
openclaw
2
opencode
2
codex
2
antigravity
2
moltbot
1
Skill 文档
Bug triage
Goal
Turn an ambiguous bug report into:
- a reliable repro (or a clear âcannot reproduce yetâ with next info to collect)
- a root-cause explanation
- a minimal, reviewed fix
- verification steps (commands + manual checks)
First checks
- Read any repo-specific guidance (
AGENTS.md,CONTRIBUTING.md, README). - Clarify impact: severity, who is affected, and whether itâs a regression.
If info is missing, ask for it
- Exact steps to reproduce (starting state + inputs).
- Expected vs actual behavior.
- Error text / stack trace / logs (full, unedited if possible).
- Environment: OS, runtime versions (Node/Bun), browser, commit hash/tag.
- Frequency: always / sometimes / only certain data.
- âLast known goodâ version or approximate date when it started.
Workflow (checklist)
- Reproduce locally
- Prefer the simplest, fastest repro.
- If itâs flaky, try to reduce nondeterminism (seed, fixed time, retries).
- Localize the failure
- Narrow to a file/function/component/config.
- Use
rgto find relevant code paths and error strings.
- Identify root cause
- Form a hypothesis, confirm with logs/breakpoints, then refine.
- If itâs a regression and git history exists, consider
git bisect.
- Implement the minimal fix
- Fix the cause, not the symptom.
- Avoid drive-by refactors and formatting churn.
- Verify
- Run the projectâs standard checks (lint/tests/build).
- Re-run the repro steps and confirm the fix.
Repo-aware command hints
Use what the repo actually uses:
- If
bun.lockexists: preferbun ...(e.g.bun lint,bun build,bun dev). - Otherwise: use the projectâs documented commands (
npm,pnpm,yarn, etc.).
Deliverable (paste this in the chat / PR / issue)
Use this format:
- Summary: …
- Repro: …
- Root cause: …
- Fix: …
- Verification: …
- Risk/notes: …
If you need a bug-report structure to ask the user for, use references/bug-report-template.md.