用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill git-workflow-ps-tech命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | git-workflow-ps-tech |
| description | >- Use when this capability is needed. |
gh when available (schemas first—see reference.md).cd there first). If not a git repo, say so and stop there.gh: gh auth status; then list/view PRs and checks (see reference.md).git branch -a, git status; optional gh api repos/{owner}/{repo}/branches if JSON is needed (gh repo view --json nameWithOwner for owner/repo).production and staging: staging tracks production, often with a few extra commits. Updating production means moving it forward to staging (conceptually), using the flows below—not merge-button shortcuts that scatter merge commits.staging. If staging advances before the feature is ready, rebase the dev branch onto staging.git rebase moves your branch on top of the target and keeps history linear—this is the team preference.git merge.gh actions often behave like non–fast-forward merges and break linearity. Prefer CLI (git checkout, git rebase, git push) for control.<<<<<<<).git add <file>git rebase --continuegit rebase --abortgit rebase -i HEAD~X). Aim for one commit per feature (often one task per feature).Use git fetch first; rebase onto origin/<branch> so the base is the latest remote tip. Full command sequences for updating dev from staging, merging dev → staging, staging → production, promotion up to a commit, excluding a middle commit, Odoo.sh trigger, reverts, and force-push policy are in reference.md.
Once others may have your commits, treat them as immutable. Follow-ups are new commits with clear why in the body—not silent history rewrites on shared branches.
The training deck stresses a short first line and a verbose body focused on why. For bracketed [TAG], [TASK], module prefix, and the 80-character header rule, use the project skill commit-message-format.
review-github skill when the user wants a production-style review; this skill focuses on workflow and discovery/read.gh read patterns: reference.md.Source: brinkflew/odoo-skills — distributed by TomeVault.