一键导入
triage-issues
Triage accumulated automated GitHub issues (health-report, log-analysis) — close stale/superseded, surface actionable items
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Triage accumulated automated GitHub issues (health-report, log-analysis) — close stale/superseded, surface actionable items
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | triage-issues |
| description | Triage accumulated automated GitHub issues (health-report, log-analysis) — close stale/superseded, surface actionable items |
Reduce the automated issue backlog. Close duplicates and stale reports. Surface what actually needs action.
gh issue list --label "health-report" --state open --json number,title,createdAt,url --limit 50
gh issue list --label "log-analysis" --state open --json number,title,createdAt,url --limit 50
Health reports are weekly snapshots. Only the most recent is relevant.
createdAt descending.gh issue view <newest-number> --json body,createdAt,title
gh issue close <number> --comment "Superseded by #<newest-number>. Closing to reduce backlog."
Log analysis issues represent real production events — be conservative. Read each one before acting.
gh issue view <number> --json number,title,body,createdAt,comments
Classify each issue as one of:
| Class | Criteria | Action |
|---|---|---|
| SUPERSEDED | A newer issue covers the same container + error pattern | Close: gh issue close <n> --comment "Covered by #<newer>." |
| STALE | Older than 14 days, no comments, pattern not seen in recent issues | Close: gh issue close <n> --comment "No recurrence in 14 days — closing as likely resolved. Reopen if it returns." |
| RECURRING | Same error pattern in 2+ open issues | Close older ones, add comment on newest: "Recurring pattern — seen in #." |
| ACTIONABLE | Recent, specific, not covered elsewhere | Leave open, add triage comment (see below) |
For ACTIONABLE issues, add a comment with:
starbunk-rs-<bot>)After triaging, output a summary:
## Triage Summary
### Closed
- #<n> — <reason>
### Remaining open
- #<n> — <what action is needed>
### Patterns
- <any recurring themes worth noting>
--comment explaining why.Evaluate the CI/CD pipeline on the PR, check for failures, and fix any issues.
Analyzes the current branch/PR and adds comprehensive, well-formatted structured logging and spans for observability.
Review PR comments, categorize them into critical/nitpicks, fix user-selected ones, and close resolved comments.
Create a PR using the current branch. Generates a PR description, commits changes, and pushes.
Mandatory rules for general git use in this repository. Follow these constraints before starting work, committing, or pushing.
Feature developer and task runner. Start a new task on a fresh branch, orchestrate worktrees, do the implementation work, and open a PR when done.