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

git-workflowGit 工作流

Agent Skill

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

总安装

1,860

周安装

76

GitHub Stars

11

下载量

602
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-skills --skill git-workflow

简介

作为本地 Git 协作与安全恢复的核心锚点,提供路由优先的工作流支持。

  • 适合快速识别当前状态、选择安全模式并推荐最小可逆修复方案。
  • 使用时需保持与审查、调试和 PR 流程的边界清晰,避免越界操作。
  • 复杂情况应参考协作边界和恢复模式文档,确保操作可追踪可回退。
  • git-workflow 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Git Workflow

Use this skill as the repo's routing-first local Git collaboration and recovery anchor.

The job is not to teach all of Git. The job is to:

  • identify the current local Git state quickly,
  • choose one safe workflow mode,
  • recommend the smallest reversible fix that solves the problem,
  • keep boundaries to review, debugging, planning, and hosted PR workflows explicit.

Read these references when the case gets sharp-edged or the user needs more than the brief:

If the main need is:

  • reviewing a diff for correctness, architecture, or security → route to code-review
  • reproducing or diagnosing a bug/regression → route to debugging
  • planning tasks, acceptance criteria, or sprint slices → route to task-planning
  • Aider 기반 AI pair-programming 편집 루프 운영 → route to aider-cli-workflow
  • hosted PR lifecycle, branch protection, reviewers, labels, or repo settings → use a dedicated PR/repo-management workflow

When to use this skill

  • Create, rename, or clean up a branch before coding or review
  • Stage changes selectively and shape reviewable commits
  • Decide whether to merge or rebase onto an updated base branch
  • Resolve merge/rebase conflicts safely
  • Push a branch, set upstream, or update rewritten history with --force-with-lease
  • Recover from a bad reset, wrong-branch commit, detached HEAD, dropped commit, or messy rebase
  • Prepare a clean diff before a later PR or review step

When not to use this skill

  • The real question is whether the code or architecture is good
  • The real question is how to split or sequence the work
  • The real question is root cause, not Git mechanics
  • The real question is hosted-service workflow instead of local repository state
  • The user wants a giant Git tutorial instead of the next safe move

Instructions

Step 1: Normalize the local Git intake

Classify the request before suggesting commands.

git_intake:
  current_goal: branch-setup | commit-shaping | sync-with-base | conflict-resolution | push-safety | undo-recovery | history-inspection | unknown
  branch_state: clean | has-unstaged-changes | staged-only | ahead-of-origin | behind-origin | diverged | detached-head | unknown
  collaboration_risk: solo-branch | shared-branch | unknown
  remote_context: no-remote | origin-only | fork-plus-upstream | unknown
  trigger_event:
    - need-clean-commits
    - rebased-branch
    - merge-conflict
    - wrong-branch-commit
    - accidental-reset
    - rejected-push
    - lost-commit
    - prepare-for-review
    - sync-main
    - unclear
  preferred_history: keep-linear | preserve-merge-context | unknown
  confidence: high | medium | low

If the packet is incomplete, choose the safest reasonable next move and state the assumptions.

Step 2: Choose one primary workflow mode

Pick exactly one mode:

  1. branch-and-stage hygiene — branch creation/switching, staging, stash-or-clean decisions
  2. commit-shaping — amend, fixup, reword, interactive rebase, cleaner review units
  3. sync-with-base — fetch + merge/rebase choice when the branch must catch up
  4. conflict-resolution — merge/rebase already produced conflicts; the next safe loop matters most
  5. push-safety — upstream setup, rejected pushes, diverged branches, rewrite-safe pushes
  6. undo-and-recovery — reset/rebase/amend/checkout/branch deletion went sideways; rescue first

Step 3: Use the safety ladder

Always prefer these checks before irreversible actions:

  • git status
  • git branch --show-current
  • git log --oneline --decorate -5

Core rules:

  • Prefer git add -p or explicit staging when commit boundaries matter.
  • Prefer amend or interactive rebase only on local or safely rewritable history.
  • Prefer rebase when the branch is mostly yours and a cleaner review history helps.
  • Prefer merge when the branch is shared or preserving integration context matters more than linear history.
  • Prefer git push --force-with-lease, never raw --force, after intentional history rewrites.
  • Prefer git revert over reset --hard when the bad commit is already shared.
  • Prefer git reflog and a rescue branch before panic cleanup.

Step 4: Apply the decision ladder

Use these callouts explicitly:

Merge vs rebase

  • Use rebase when rewrite risk is low and reviewable linear history matters.
  • Use merge when the branch is shared, integration context matters, or rewrite risk is not worth it.

Revert vs reset

  • Use revert for collaborative undo on already-pushed history.
  • Use reset only when rewriting local history intentionally.
  • Use restore / checkout of files when the worktree/index needs repair more than the branch history.

Normal push vs --force-with-lease

  • Use normal push when history was not rewritten.
  • Use --force-with-lease after rebase, amend, squash, or another intentional rewrite.
  • If the branch may be shared and the remote state is unclear, stop and name the collaboration risk.

Step 5: Build the Git Workflow Brief

Return this exact structure:

# Git Workflow Brief

## Recommended mode
- Mode: branch-and-stage hygiene | commit-shaping | sync-with-base | conflict-resolution | push-safety | undo-and-recovery
- Why this mode fits: ...

## Current state
- Branch: ...
- Worktree / index state: ...
- Remote context: ...
- Collaboration risk: solo-branch | shared-branch | unknown
- Confidence: high | medium | low

## Safest next move
1. ...
2. ...
3. ...

## Commands

...


## Why this is the safe path

- ...
- ...

## Watch-outs

- ...
- ...

## Recovery fallback

- If this goes wrong, use...

## Adjacent handoff

- Use `code-review` when...
- Use `debugging` when...
- Use `task-planning` when...

Step 6: Use concise mode packets

  • branch-and-stage hygiene — branch name, dirty/clean state, selective staging, stash only when it lowers risk
  • commit-shaping — reviewable commit units, amend/fixup/rebase only when rewrite is safe
  • sync-with-base — fetch first, decide merge vs rebase explicitly, name rewrite risk before starting
  • conflict-resolution — inspect → resolve → git add → continue/commit, with abort as the calm fallback
  • push-safety — distinguish upstream creation, normal push, rejected push, and rewritten-history push
  • undo-and-recovery — identify what moved, inspect reflog, create a rescue branch, prefer reversible steps first

Use the detailed command packets in references/mode-selection-and-command-packets.md when you need the expanded workflow.

Step 7: Keep boundaries sharp

Before finalizing:

  • Do not turn this into a hosted PR tutorial.
  • Do not pretend every branch should be rebased.
  • Do not recommend reset --hard casually without naming the data-loss risk.
  • Do not hide the solo-vs-shared branch distinction.
  • Do not drift into code-review judgment, root-cause analysis, or backlog design.

Output format

Always return a compact Git Workflow Brief, not a giant command dump.

Required qualities:

  • choose one mode
  • state the collaboration risk
  • prefer the safest reversible path that solves the current problem
  • make rewrite risk explicit
  • include a recovery fallback when the commands have teeth
  • keep routing boundaries to review, debugging, planning, and hosted PR workflows visible

Examples

Example 1: rebased branch needs safe push

Input

I rebased my feature branch onto main and now I need to push it without overwriting teammates.

Output sketch

  • Mode: push-safety
  • State whether the branch looks solo or shared
  • Recommend git push --force-with-lease origin <branch> only if rewrite is expected
  • Watch-out warns against raw --force

Example 2: clean up local commits before review

Input

Help me turn these messy local commits into something clean before review.

Output sketch

  • Mode: commit-shaping
  • Suggest explicit staging plus git rebase -i or git commit --amend
  • Keep the goal focused on reviewable commit units, not review comments themselves

Example 3: wrong-branch reset panic

Input

I think I hard-reset the wrong branch. Can Git recover this?

Output sketch

  • Mode: undo-and-recovery
  • Start with git reflog
  • Create a rescue branch from the pre-reset SHA before further cleanup
  • Explain when to stop and avoid more destructive commands

Example 4: request is really PR review

Input

Review this PR and tell me if the architecture is okay.

Output sketch

  • Route away from git-workflow
  • Explain that local Git prep is not the main problem here
  • Hand off to code-review

Best practices

  1. Inspect before surgery. Status, branch, and recent log beat guesswork.
  2. Prefer reviewable commits over giant snapshots. Commit shape affects review quality.
  3. Treat history rewrites as collaboration decisions, not personal preferences. Shared branches change the answer.
  4. Use --force-with-lease, not raw --force. Rewrite safely or do not rewrite.
  5. Reach for reflog early in recovery. Lost commits are often only misplaced pointers.
  6. Choose the smallest safe fix. Not every problem needs branch surgery.
  7. Route out when the problem changes. Review, debugging, planning, and hosted PR work stay separate.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.79%
按下载量换算191

Claude

30.71%
按下载量换算185

Cursor

18.41%
按下载量换算111

Gemini CLI

9.1%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills