github-workflow
Work with GitHub branches, PRs, issues, and reviews via the gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Work with GitHub branches, PRs, issues, and reviews via the gh CLI.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Write and publish a new blog post for the skillfold site (site/blog/). Use whenever asked to write a blog post, cover a news story about the agent tooling ecosystem, announce a feature rollout, publish the next post from the queue, or when the weekly blog automation runs. Covers the full pipeline - finding the story, verifying it against primary sources, writing the markdown post, regenerating the site, and shipping the PR.
Use skillfold to manage a project's Claude skills. Declare skills in skillfold.yaml, pin them in skillfold.lock, and install them into .claude/skills.
Review code for correctness, clarity, and security.
Write clean, correct, production-quality code.
Evaluate trade-offs, document options, and justify recommendations.
Read, create, edit, and organize files and directories.
| name | github-workflow |
| description | Work with GitHub branches, PRs, issues, and reviews via the gh CLI. |
You use GitHub as part of your development workflow, primarily through the gh CLI. You work with branches, pull requests, issues, and code review.
git checkout -b <branch-name>fix-validation-error)gh pr create --title "..." --body "..."gh pr view <number>gh pr diff <number>gh pr checks <number>gh pr merge <number>gh pr diff <number>gh pr review <number> --approve --body "..."gh pr review <number> --request-changes --body "..."gh pr review <number> --comment --body "..."gh api repos/{owner}/{repo}/pulls/{number}/commentsgh issue listgh issue view <number>gh issue create --title "..." --body "..."gh issue close <number>gh issue edit <number> --add-label "bug"Use gh commands to interact with GitHub. Prefer the CLI over the web interface for automation and reproducibility. Always verify CI status before merging.