git-workflow
仓库创建 2026年7月2日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由
确保代理产生可追溯、可合并的提交和一致的分支管理实践。
这个 Skill 做什么
定义仓库的分支策略、提交规范与 PR 工作流,规范代理提交行为。
把分支策略、提交规范和 PR 流程都定好,规定 agent 提交的可追溯署名(比如末尾必须有 Co-Authored-By trailer)。任何 git 操作(commit/branch/push/PR)都按这个标准走,不要随意改 user.name 或 user.email,主分支受保护并有固定合并流程。这样能保证提交可审计、合并规范且便于追责。
▸ 展开 SKILL.md 英文原文
Git branching strategy, commit standards, and PR workflow for the wafflestack project. Use when performing any git operations (commits, branches, pushes, PRs).
0
Stars
0
Forks
35
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/dustinkeeton/wafflestack/main/.claude/skills/git-workflow/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/dustinkeeton/wafflestack/main/.claude/skills/git-workflow/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Git Workflow Standards ## Identity Use the project's standard git config — do not override `user.name` / `user.email` unless the project explicitly defines a bot identity. What makes agent commits traceable is the attribution trailer, which every agent-made commit must end with: ``` Co-Authored-By: Claude <noreply@anthropic.com> ``` ## Branch Strategy ### Main is protected - **NEVER push directly to `main`.** - All work happens on feature branches. - Changes reach `main` only through pull requests. ### Branch naming - `feat/<short-description>` — new features - `fix/<short-description>` — bug fixes - `refactor/<short-description>` — restructuring without behavior change - `chore/<s
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有