一键导入
label-issues
Label unlabeled GitHub issues with priority and type labels. Use when triaging issues, cleaning up the backlog, or when asked to label/triage issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Label unlabeled GitHub issues with priority and type labels. Use when triaging issues, cleaning up the backlog, or when asked to label/triage issues.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | label-issues |
| description | Label unlabeled GitHub issues with priority and type labels. Use when triaging issues, cleaning up the backlog, or when asked to label/triage issues. |
| disable-model-invocation | true |
| allowed-tools | Bash(gh *), AskUserQuestion |
Triage unlabeled issues by assigning priority and type labels with user confirmation.
Run these commands to get current state:
# Get unlabeled issues (no labels at all)
gh issue list --json number,title,body,labels --jq '.[] | select(.labels | length == 0)'
# Get available labels
gh label list
If no unlabeled issues exist, inform the user and stop.
For each unlabeled issue:
Show the issue:
Suggest labels:
priority: critical, priority: high, priority: medium, or priority: lowbug, enhancement, documentation, question, etc.Base suggestions on:
Ask for confirmation using AskUserQuestion:
Apply labels if approved:
gh issue edit <number> --add-label "priority: medium" --add-label "enhancement"
Move to next issue
| Priority | Use when |
|---|---|
priority: critical | Blocks release, security issue, data loss |
priority: high | Major bug, key feature request |
priority: medium | Standard work item |
priority: low | Nice to have, minor improvement |
Issue #42: "App crashes when clicking submit"
Body: "After filling the form, clicking submit causes the app to crash..."
Suggested labels:
- priority: high (crash = significant impact)
- bug (crash indicates defect)
Apply these labels? [Yes / Modify / Skip]
Create a new zen-ui release with proper version bump, build, tag, and GitHub release with HACS-compatible asset. Use when the user says "make a release", "cut a release", "bump version", "publish a new version", "release X.Y.Z", or anything about releasing/publishing zen-ui.
Sync zen-ui plugin to local Home Assistant. Use when user asks to sync, deploy, or push to HA.