返回 Skill 列表
extension
分类: 开发与工程无需 API Key

git-workflow-orchestrator

端到端地执行Git操作,包括检查、原子提交、规范的消息以及PR准备。当用户要求从更改到PR的完整Git工作流管理时使用。

person作者: jakexiaohubgithub

Git Workflow Orchestrator

Use this skill to coordinate the full flow. Delegate to specialized skills instead of mixing all logic in one prompt.

Routing Rules

  • "Run checks" -> git-run-checks
  • "Split commits" or "atomic commit" -> git-atomic-commit
  • "Write commit message" or "conventional commit" -> git-conventional-commit
  • "Open/prepare PR" -> git-pr-workflow

Default End-to-End Sequence

  1. Inspect branch + diff.
  2. Run git-run-checks.
  3. Split and create atomic commits (git-atomic-commit).
  4. Apply Conventional Commits (git-conventional-commit).
  5. Rerun checks.
  6. Prepare PR (git-pr-workflow).

Non-Negotiable Rule

Never create a commit before checks pass on the relevant change slice.

Boris-Inspired Guidance

See ./references/boris-best-practices.md and enforce these principles across all delegated skills.

Cross-Agent Notes

  • Base workflow is agent-agnostic.
  • Claude-specific slash commands and hooks are optional overlays, not required primitives.