원클릭으로
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.