원클릭으로
bug
Report, list, or manage bug reports as GitHub issues
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Report, list, or manage bug reports as GitHub issues
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | bug |
| description | Report, list, or manage bug reports as GitHub issues |
Report and manage bugs for Runners 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 (oldest first — they've been waiting longest).— 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 label.P0 / P1 / P2 / P3 — priority, exactly one per issue.Every 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.