with one click
issue
Read a GitHub issue, summarize it, and create a branch for it
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Read a GitHub issue, summarize it, and create a branch for it
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| 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