원클릭으로
analyze-issue
Analyze GitHub issues, assess complexity, and suggest an implementation approach
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze GitHub issues, assess complexity, and suggest an implementation approach
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Review pull requests with conversational, actionable feedback
Security review of code changes focusing on OWASP top 10 and Tekton-specific risks
Find good issues to work on by scanning repos for approachable tasks
Generate daily standup notes from TekAgent activity, git history, and pending PRs
| name | analyze-issue |
| description | Analyze GitHub issues, assess complexity, and suggest an implementation approach |
| user_invocable | true |
| always_enabled | true |
When asked to analyze a GitHub issue, follow these steps:
Use gh_cli to retrieve the issue and its context:
gh issue view <number> --repo <repo> --json title,body,author,labels,comments,assignees,milestone,url
Read through the issue description, any linked discussions, and all comments to understand the full scope.
Search for related work that may overlap or provide context:
gh issue list --repo <repo> --search "<keywords from issue>" --json number,title,state,labels
gh pr list --repo <repo> --search "<keywords from issue>" --json number,title,state,labels
Note any duplicates, dependencies, or prior attempts to solve the same problem. If a PR was previously attempted and abandoned, summarize why it stalled.
Assess the issue and assign a size with effort score:
Base complexity on:
Trace the impact of the proposed change:
Use repo search to verify:
gh api search/code -f q="<function_or_type> repo:<owner>/<repo>" --jq '.items[].path'
Identify the specific files or directories most likely to require modification. Use the repo structure and any stack traces, error messages, or code references in the issue to narrow down the scope.
List files grouped by:
If the issue touches input handling, auth, or data storage:
Provide a brief, actionable plan:
Structure the analysis as:
Issue: # -
Complexity: S / M / L / XL (effort: N/5, estimated: ~X hours)
Related:
Impact Analysis:
Files to Change:
path/to/file.go - reason for changepath/to/file_test.go - add test coverage for XSuggested Approach:
Alternative Approaches (if applicable):
Open Questions:
Risks:
Keep the analysis focused and actionable. The goal is to give someone enough context to start working on the issue immediately.