一键导入
triage
Query and inspect GitHub issues with natural language. Use when user says "show my issues", "what's assigned to me", "list open bugs", "summarize issue
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query and inspect GitHub issues with natural language. Use when user says "show my issues", "what's assigned to me", "list open bugs", "summarize issue
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Iterate a feature branch to a clean Copilot review — stage/commit/push, open or update the PR, request a GitHub Copilot code review, wait for the review to land, address each comment with a code fix, push, re-request, and loop until Copilot returns no new comments. Use when user says "copilot review loop", "iterate with copilot", "copilot loop", "merge with copilot", "ship with copilot review", "auto-fix copilot comments", "loop until copilot is happy", or wants automated PR iteration driven by Copilot's feedback.
Analyzes a git-managed Obsidian vault and configures 7-dimension quality methodology including hooks, quality gate, CLAUDE.md, and GitHub Actions workflows. Use when user says "set up vault quality", "configure obsidian", "vault setup", "obsidian quality", or wants to apply quality standards to an Obsidian vault.
Bridge GitHub issues to development workflow — create branches, start work, check status. Use when user says "start working on issue
Analyzes a .NET/C# project and configures 9-dimension quality methodology including hooks, CI, and tool configs. Use when user says "set up quality tools", "configure analyzers", "add CI pipeline", "dotnet quality", or wants to apply coding standards to a .NET project.
Analyzes a Neovim Lua plugin and configures 9-dimension quality methodology including hooks, CI, and tool configs. Use when user says "set up quality tools", "configure linting", "add CI pipeline", "neovim lua quality", or wants to apply coding standards to a Neovim Lua plugin.
Analyzes a Python project and configures 9-dimension quality methodology including hooks, CI, and tool configs. Use when user says "set up quality tools", "configure linting", "add CI pipeline", "python quality", or wants to apply coding standards to a Python project.
| name | triage |
| description | Query and inspect GitHub issues with natural language. Use when user says "show my issues", "what's assigned to me", "list open bugs", "summarize issue |
Read-only — does not create or modify issues.
skills/shared/references/cross-cutting.md--json flags for structured data, then present human-readable summariesgh is available before running any commandsgh auth status
If this fails, tell the user to run gh auth login first.
Translate natural language queries into gh issue list flags.
Query translation examples:
| User says | Command |
|---|---|
| "show my issues" | gh issue list --assignee @me --json number,title,state,labels,updatedAt |
| "list open bugs" | gh issue list --label "bug" --state open --json number,title,assignees,updatedAt |
| "what needs triage" | gh issue list --search "no:label" --state open --json number,title,createdAt,author |
| "issues updated this week" | gh issue list --search "updated:>YYYY-MM-DD" --json number,title,state,updatedAt |
| "unassigned issues" | gh issue list --search "no:assignee" --state open --json number,title,labels,createdAt |
| "issues mentioning auth" | gh issue list --search "auth" --json number,title,state,labels |
| "closed issues this month" | gh issue list --state closed --search "closed:>YYYY-MM-01" --json number,title,closedAt |
Common flags:
gh issue list \
--state open|closed|all \
--assignee @me|USERNAME \
--label "label-name" \
--search "QUERY" \
--limit 30 \
--json number,title,state,labels,assignees,createdAt,updatedAt,closedAt,author,milestone
Output format: Present as a readable table or list. Include issue number, title, state, labels, and assignee. Add relative timestamps (e.g., "3 days ago").
Show comprehensive issue information with context.
# Get full issue data
gh issue view NUMBER --json number,title,state,body,labels,assignees,author,createdAt,updatedAt,closedAt,comments,milestone,projectItems
# Get linked branches and PRs
gh issue develop NUMBER --list 2>/dev/null
Present:
gh issue list --search "keyword1 keyword2" --state all --json number,title,state --limit 10
Present any issues that look related.Overview of the current issue landscape.
# Issues assigned to me
gh issue status --json assigned,created,mentioned
# Open issue counts by label
gh issue list --state open --json labels --limit 100
Present:
Add a comment to provide context or ask questions.
gh issue comment NUMBER --body "Comment text"
When the user asks to comment on an issue, compose the comment and confirm with the user before posting.
gh command with --json outputgh not found:
brew install gh (macOS) or see https://cli.github.comNot in a git repository:
--repo owner/name.No issues found:
gh repo view --json hasIssuesEnabledRate limiting: