用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/anza-xyz/kit --skill shipping-git命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
基于 SOC 职业分类
正在显示 SKILL.md
| 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: