一键导入
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: