一键导入
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 职业分类
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
| 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