원클릭으로
shipping-git
Shipping workflow using standard Git and GitHub CLI. Provides guidance for committing, branching, and creating PRs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Shipping workflow using standard Git and GitHub CLI. Provides guidance for committing, branching, and creating PRs.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a changeset file with a changelog entry for package releases. Use when a PR introduces user-facing changes that should trigger a version bump.
Shipping workflow using Graphite CLI. Provides guidance for committing, branching, and creating PRs with Graphite's single-commit-per-branch model.
Add missing JSDoc docblocks to exported symbols in TypeScript projects. Use when writing new exports or when code is missing documentation.
Guidelines for writing developer-friendly READMEs for TypeScript libraries. Use when creating a new package, changing a public API, or updating documentation.
| name | shipping-git |
| description | Shipping workflow using standard Git and GitHub CLI. Provides guidance for committing, branching, and creating PRs. |
Guidance for shipping code using standard Git and the GitHub CLI (gh). This skill teaches the agent how to create commits, branches, and pull requests following conventional workflows.
git add and git commit workflows. Concise title on the first line, blank line, then description body.gh pr create for pull requests.Follow conventional commit message format:
git add -A
git commit -m "Commit title" -m "Description body explaining what changed and why."
-m sets the commit title (first line). Keep it concise and descriptive.-m sets the commit body. Explain what changed and why.Create a descriptive branch name before committing:
git checkout -b feature/short-description
Common prefixes: feature/, fix/, refactor/, docs/, chore/.
Use the GitHub CLI to create PRs:
gh pr create --title "PR title" --body "Description explaining what changed and why."
.github/PULL_REQUEST_TEMPLATE.md exists, use it as a guide for structuring the PR description. Fill in sections that are relevant and omit sections that don't apply (e.g. don't add "Fixes #" if there's no related issue).Push the branch and set the upstream:
git push -u origin HEAD
Before any git operation, present this review block and wait for approval: