Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

git-safe-pr-workflowgit 安全公关工作流程

Agent Skill

git-safe-pr-workflow 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1

周安装

12

GitHub Stars

公开资料未说明

下载量

97
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:git-safe-pr-workflow(git 安全公关工作流程)
来源仓库:https://github.com/caidanw/skills
仓库路径:skills/git-safe-pr-workflow
安装命令:
npx skills add https://github.com/caidanw/skills --skill git-safe-pr-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/caidanw/skills --skill git-safe-pr-workflow

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库和原始 README 核验具体用法和功能细节。
  • 安装通过 npx skills add 命令从指定 GitHub 仓库获取,适用于 Codex、Claude、Cursor、Gemini CLI。
  • 建议确认权限范围、维护状态及是否触发联网、命令执行或文件读写。

SKILL.md

Git Safe Pr Workflow

Overview

Guide users through a GitHub-first PR workflow that keeps main clean without requiring frequent local rebases. Prefer short-lived feature branches, merge origin/main into the feature branch when syncing, and land changes with Squash and merge.

Bias toward safety over elegance. Choose reversible operations, avoid rewriting shared history, and teach the user in small steps while you work.

Safe Defaults

  • Treat main and master as shared, sensitive branches.
  • Use a short-lived feature branch for every task.
  • Assume a pushed branch or open PR may already be shared.
  • Prefer git fetch before any sync, merge, or recovery action.
  • Prefer merging origin/main into a feature branch over rebasing it.
  • Prefer git revert over rewriting history when commits may already be pushed.
  • Prefer Squash and merge to keep main clean.

Inspect First

Before any Git operation that changes history, branches, or remote state, inspect:

  • current branch and whether it is the default branch
  • clean vs dirty working tree
  • upstream tracking branch and whether local commits are pushed
  • whether the branch has an open PR or appears shared
  • staged and unstaged diff when undoing or syncing work

If you cannot determine whether a branch is shared, assume it is shared and choose the safer path.

Standard Workflow

Use this as the default GitHub workflow for low-experience users:

  1. Branch from main.
  2. Commit locally on the feature branch in small logical steps.
  3. Open a PR early.
  4. When the branch falls behind main, merge origin/main into the feature branch.
  5. Resolve conflicts carefully and verify the final code, not just the merge markers.
  6. Push the updated branch.
  7. Merge with Squash and merge.
  8. Delete the feature branch after merge.

Do not teach users to routinely rebase pushed PR branches just to get the latest main. That workflow is where many novices re-introduce old code or lose work.

Opening PRs

When helping a user open a PR, treat the PR title as the likely final squash-merge commit.

  • Write the title so it reads well on main after Squash and merge.
  • Use a concise Conventional Commit style title when the repo uses that convention.
  • Describe the final outcome, not the implementation journey or review process.
  • Avoid titles like WIP, fix stuff, address comments, or update branch.

Good default patterns:

  • feat: add <skill-name> skill
  • feat(<skill-name>): add <capability>
  • fix(<skill-name>): correct <problem>
  • docs: document <policy or workflow>

For the PR body:

  • briefly state what changed
  • briefly state why it changed
  • mention testing or validation if relevant

If the repo uses GitHub squash merges, prefer the PR title as the default squash commit message.

Sync Decision Tree

  • Need the latest main on a feature branch? Use fetch, then merge origin/main into the feature branch.
  • Need a clean main history? Rely on Squash and merge, not local rebasing of the feature branch.
  • Need to clean up unpublished local commits? Rebase is acceptable only if the branch is clearly private, unpublished, and not under review.
  • Need to undo pushed work? Use revert.
  • Need to discard local-only work? Use the least destructive local undo that matches the goal.

If a user asks to rebase a pushed branch, explain why that is risky and propose merging origin/main instead.

Conflict Resolution Rules

  • Resolve conflicts to the desired final code state, not by blindly taking both sides.
  • Assume old bugs can be reintroduced during conflict resolution.
  • After resolving conflicts, inspect the affected files and summarize what changed.
  • Run targeted verification after conflicts: tests, build, or focused checks in the touched area.
  • If the resolution is non-obvious, explain it briefly to the user while making the change.

For detailed conflict-handling steps and examples, read references/conflict-resolution.md.

Recovery Rules

  • If a merge is in progress and the user wants to stop, abort the merge rather than improvising.
  • If a rebase is in progress and has gone wrong, stop and recover with reflog or rebase abort.
  • If the wrong commit was pushed, prefer revert.
  • If work was committed to the wrong branch, preserve it and move it rather than deleting it.
  • When recovering history, explain what reference point you are returning to and why.

For recovery playbooks, read references/recovery.md.

Refuse or Warn Hard

  • Do not commit directly to main unless the user explicitly asks and the repo policy allows it.
  • Do not force-push main or other protected branches.
  • Do not rebase a pushed/shared branch by default.
  • Do not use git reset --hard, git clean -fd, branch deletion, or tag deletion unless the user clearly wants destructive cleanup.
  • Do not bypass branch protections, required checks, or required review flows.

If the user explicitly wants a risky operation, explain the safer alternative first. Only proceed when the request is clear and the branch is not a protected/shared branch.

Teaching Behavior

Teach in short, repeatable notes while working:

  • State what you are about to do and why it is the safer path.
  • When rejecting rebase, explain that rebase rewrites commit history and is easy to misuse once a branch is pushed.
  • When merging origin/main, explain that this preserves the branch's existing commits and is easier to recover from.
  • After recovery, explain what went wrong, how you recovered, and what safer habit to use next time.
  • Avoid long Git lectures. Teach the next decision, not the whole tool.

GitHub Settings To Recommend

When asked how to support this workflow at the repo level, recommend:

  • protect main
  • require pull requests before merge
  • require status checks
  • require at least one review
  • enable Squash and merge
  • disable Rebase and merge
  • optionally disable regular merge commits if the team wants squash-only history
  • set the default squash commit message to Pull request title
  • auto-delete head branches after merge

For repo policy details, read references/repo-settings.md.

Quick Checklist

Before syncing a feature branch:

  • confirm you are on the feature branch, not main
  • fetch remote changes
  • check for uncommitted work
  • merge origin/main, do not rebase by default
  • inspect and verify conflict resolutions

Before pushing:

  • review status and diff
  • confirm no accidental changes to unrelated files
  • explain any conflict resolution that changed behavior

Before undoing:

  • determine whether the commits are pushed
  • choose revert for pushed work
  • use local-only undo only for unpublished work

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.18%
按下载量换算36

Claude

29.89%
按下载量换算29

Cursor

20.1%
按下载量换算19

Gemini CLI

9.89%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills