with one click
bug
Report, list, or manage bug reports as GitHub issues
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Report, list, or manage bug reports as GitHub issues
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | bug |
| description | Report, list, or manage bug reports as GitHub issues |
Report and manage bugs for Quill via GitHub Issues with the bug label.
/bug <action> [args]
newReport a new bug.
bug and the chosen P0/P1/P2/P3:
Title: bug: <short description>
Body using this template:
## Description
<what's wrong>
## Expected behavior
<what should happen>
## Steps to reproduce
<if known>
## Relevant code
<file paths and brief pointers to the affected area>
## Environment
- OS: <if relevant>
- Version: <app version from `src-tauri/tauri.conf.json`>
Command shape: gh issue create --label bug --label P1 --title "…" --body "…"
listShow all bugs, sorted by priority.
gh issue list --label bug --state open --limit 50 --json number,title,labels,createdAt,assigneesP0 first, then P1, P2, P3, then unlabeled-by-priority last). Within a priority bucket, sort by createdAt ascending.— in the priority column and a callout asking the user to triage them.--state all and add a State column.close <issue-number>Mark a bug as fixed.
gh issue close <number>prioritize <issue-number> <P0|P1|P2|P3>Set or change the priority of an existing bug.
gh issue edit <number> --remove-label P0 --remove-label P1 --remove-label P2 --remove-label P3 --add-label <priority> (Removing all four is safe — gh ignores remove-label for labels not present.)view <issue-number>Show details of a specific bug report.
gh issue view <number>bug — all bug issues use this labelP0 / P1 / P2 / P3 — priority, exactly one per issueEvery bug gets exactly one priority label. Rubric:
When in doubt between two levels, pick the lower-urgency one and say why; over-labeling P0/P1 dilutes the signal.
src-tauri/tauri.conf.json when populating the Environment section.