用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dlt-hub/dlt --skill review-issues-severity命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Create or reuse a git worktree for a pull request or branch so reviews and work happen in isolation
Triage, plan, and implement a fix or feature for a GitHub issue end-to-end
Create a git worktree with a new branch for implementing a fix or feature for a GitHub issue
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-issues-severity |
| description | Find and prioritize open GitHub issues by severity, community impact, and maintainer abandonment |
| argument-hint | ["-- <optional filters or focus areas>"] |
Parse $ARGUMENTS for optional filters:
question, bug)Run the following GitHub API queries in parallel to surface issues matching different severity signals:
gh api 'repos/dlt-hub/dlt/issues?state=open&per_page=100&sort=comments&direction=desc&page=1' \
--jq '.[] | "\(.number)\t\(.comments)\t\(.updated_at | split("T")[0])\t\(.created_at | split("T")[0])\t\([.labels[].name] | join(","))\t\(.title)"'
gh api 'repos/dlt-hub/dlt/issues?state=open&labels=LABEL&per_page=100&sort=comments&direction=desc' \
--jq '.[] | "\(.number)\t\(.comments)\t\(.updated_at | split("T")[0])\t\(.created_at | split("T")[0])\t\([.labels[].name] | join(","))\t\(.title)"'
Look for issues where updated_at is old relative to the current date but had prior maintainer engagement.
For the top 10-15 most promising candidates, fetch full details using a subagent or parallel gh issue view calls:
gh issue view -R dlt-hub/dlt NUMBER --json title,body,comments,labels,createdAt,updatedAt,author,assignees
For each issue, extract:
Apply these criteria to each issue:
| Signal | What to look for |
|---|---|
| Serious problem | Data corruption, silent data loss, hard crashes, cascading failures, security issues |
| Long discussion | 5+ comments, especially with multiple community reporters hitting the same issue |
| Maintainer abandoned | Maintainer commented but last maintainer response is 2+ months old, no linked PR, reporter follow-ups unanswered |
| Question label | Issue has question label — these often represent real bugs initially miscategorized |
| Community effort | Reporter provided detailed repro scripts, root-cause analysis, or proposed fixes that went unacknowledged |
Assign priority tiers:
Within each tier, rank by:
Present results as:
For each issue:
A table with columns: Priority | Issue # | Type | Production Impact | Community Effort | Maintainer Status
Note any clusters of related issues (e.g., multiple issues sharing a root cause) or systemic patterns in maintainer response.