一键导入
issue-scout
Find good issues to work on by scanning repos for approachable tasks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Find good issues to work on by scanning repos for approachable tasks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyze GitHub issues, assess complexity, and suggest an implementation approach
Review pull requests with conversational, actionable feedback
Security review of code changes focusing on OWASP top 10 and Tekton-specific risks
Generate daily standup notes from TekAgent activity, git history, and pending PRs
| name | issue-scout |
| description | Find good issues to work on by scanning repos for approachable tasks |
| user_invocable | true |
| always_enabled | true |
When asked to find good issues to work on, follow these steps:
Scan target repositories for issues labeled as good entry points:
gh issue list --repo <repo> --label "good first issue" --state open --json number,title,labels,createdAt,url,body
gh issue list --repo <repo> --label "help wanted" --state open --json number,title,labels,createdAt,url,body
If no repo is specified, search across an organization:
gh search issues --owner <org> --label "good first issue" --state open --sort updated --json repository,number,title,labels,url
gh search issues --owner <org> --label "help wanted" --state open --sort updated --json repository,number,title,labels,url
If the user specifies a language or area of interest, narrow results:
gh search issues --owner <org> --label "good first issue" --language <language> --state open --json repository,number,title,labels,url
Also check for area-specific labels like area/cli, area/api, kind/documentation, kind/bug, kind/feature, or similar conventions used by the target repos.
For each candidate issue, verify it is still actionable:
gh issue view <number> --repo <repo> --json assignees,comments,linkedPullRequests
Classify each issue by effort:
Ranking factors:
For the top recommended issues, include helpful context:
Structure the recommendations as:
Recommended Issues:
For each issue (ordered by best fit first):
#: (<repo>)
Filters Applied: Language, area, or other criteria used
Total Found: X issues scanned, Y recommended
Limit recommendations to the top 5-10 most actionable issues. Prioritize issues that are clearly scoped, unassigned, and have maintainer input clarifying the expected approach.