بنقرة واحدة
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.