원클릭으로
issue
Read a GitHub issue, summarize it, and create a branch for it
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read a GitHub issue, summarize it, and create a branch for it
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | issue |
| description | Read a GitHub issue, summarize it, and create a branch for it |
| allowed-tools | Bash(gh *), Bash(git *) |
Read a GitHub issue by number or URL, summarize it, then create a working branch.
alamenai/terrae — https://github.com/alamenai/terrae/issues
The user provides either:
42)https://github.com/alamenai/terrae/issues/42)If a URL is provided, extract the issue number from it.
Fetch the Issue
gh issue view <number> --repo alamenai/terrae to read the issueSummarize the Issue
Determine Branch Name
bug label or bug description → fix/enhancement or feature label → feat/documentation label → docs/feat/type/issue-number-short-descriptionfeat/42-add-heatmap-componentfix/17-marker-memory-leakdocs/8-update-installation-guideCreate the Branch
main and up to date: git checkout main && git pullgit checkout -b <branch-name>Report
Commit, push, and open a pull request on GitHub
Verify all outputs exist after creating a new component and fix any issues
Create standardized git commits following Terrae's conventions
Generate or update documentation for Terrae components
Systematically fix issues found by /review or reported by the user
Run linting and type checking across the Terrae codebase