원클릭으로
verify-reproducibility
Verify whether a reported bug is reproducible by inspecting the codebase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Verify whether a reported bug is reproducible by inspecting the codebase
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Check if an issue has all required information for action
Search for and identify duplicate issues in a repository
Coordinate triage of a GitHub issue by orchestrating sandboxed analysis subagents and applying labels
Step-by-step procedure for implementing a GitHub issue. Gathers context, discovers repo conventions, plans the change, implements, verifies with tests and linters, and commits to a feature branch.
Hardcoded endpoint documentation for the container builder API.
Hardcoded endpoint documentation for the repo provisioner API.
| name | verify-reproducibility |
| description | Verify whether a reported bug is reproducible by inspecting the codebase |
| allowed-tools | Bash(curl *), Bash(grep *), Bash(find *), Bash(cat *) |
Read the issue via the GitHub REST server:
curl -s http://host.docker.internal:8081/repos/$OWNER/$REPO_NAME/issues/$ISSUE_NUMBER
If the issue is a bug report with reproduction steps:
If the issue is not a bug, set applicable to false.
Respond ONLY with a JSON object:
{
"applicable": true | false,
"reproducible": "confirmed" | "not_confirmed" | "unclear" | null,
"notes": "<findings from the verification attempt>"
}