跳到主要内容
知仓学习社ZHICANG

work-unit-commits

Plan commits as reviewable work units. Trigger: implementation, commit splitting, chained PRs, or keeping tests and docs with code.

不碰外部(只输出文字)无严重或高危命中Gentleman-Programming/gentle-ai

它会碰到什么

扫了多少1 个文本文件,4 KB
它会碰到什么不碰外部(只输出文字)
命中总数0 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

When to Use

Load this skill when deciding what belongs in each commit or PR.

Use it for:

  • Splitting a feature into reviewable work.
  • Preparing commits before opening a PR.
  • Turning a large change into chained or stacked PRs.
  • Keeping reviewer cognitive load healthy.
  • Applying SDD tasks without accidentally producing a PR above 400 changed lines.

Critical Rules

| Rule | Requirement |

|------|-------------|

| Commit by work unit | A commit represents a deliverable behavior, fix, migration, or docs unit. |

| Do not commit by file type | Avoid models, then services, then tests if none works alone. |

| Keep tests with code | Tests belong in the same commit as the behavior they verify. |

| Keep docs with the user-visible change | Docs belong with the feature or workflow they explain. |

| Tell a story | A reviewer should understand why each commit exists from its diff and message. |

| Future PR-ready | Each commit should be a candidate chained PR when the change grows. |

| SDD workload guard | If SDD tasks forecast a >400-line change, group commits into chained PR slices before implementation. |

| Budget is not code-golf | Never shrink a diff by deleting comments, blank lines, docs, or tests, or by compressing code, to fit the review budget (400 by default, or the session review_budget_lines). Slice by work unit or report the overage. |

Work Unit Checklist

Before committing, confirm:

  • [ ] The commit has one clear purpose.
  • [ ] The repo still makes sense after applying only this commit.
  • [ ] Tests or docs for this unit are included when relevant.
  • [ ] Rollback is reasonable without reverting unrelated work.
  • [ ] Focused test command and exact result are recorded.
  • [ ] Runtime harness command/scenario and exact result are recorded, or explicit N/A explains why no runtime boundary exists.
  • [ ] Rollback boundary names the exact files/behavior removable without unrelated work.
  • [ ] The commit message explains the outcome, not the file list.

Split Examples

| Weak split | Better work-unit split |

|------------|------------------------|

| add models | feat(auth): add token validation domain model and tests |

| add services | feat(auth): wire token validation into login flow |

| add tests | Tests included with each behavior commit |

| update docs | Docs included with the user-facing change they explain |

PR Relationship

Use work-unit commits as the foundation for chained PRs:

  1. Build the smallest independent work unit.
  2. Include verification for that unit.
  3. Commit it with a Conventional Commit message.
  4. If the PR approaches 400 changed lines, promote commits or groups of commits into chained PRs.

SDD Relationship

When sdd-tasks produces a Review Workload Forecast:

  • Low risk: keep work-unit commits inside one PR.
  • Medium risk: commit by work unit and monitor changed lines before PR creation.
  • High risk: follow SDD delivery_strategy — ask on ask-on-risk, auto-slice on auto-chain, require size:exception on over-budget single-pr, or record accepted size:exception on exception-ok.
  • Count authored additions plus deletions for the >400 threshold. Exclude generated goldens from that authored count, but include every generated file in complete snapshot identity and receipt validation.
  • Splitting is bounded: after one honest slicing pass, if no cohesive work-unit split fits the budget, stop and report the smallest honest count with a size:exception recommendation. Do not iterate shrinking the code to reach the number.

Each SDD work unit should map cleanly to a commit or PR with:

  • clear start state,
  • clear finished state,
  • verification in the same unit,
  • rollback that does not remove unrelated work.

Its implementation evidence MUST include:

  • Focused test command and exact result.
  • Runtime harness command/scenario and exact result, or explicit N/A with reason.
  • Rollback boundary stated independently of commit creation; uncommitted work units still require it.
  • When fixing a bounded review ledger, group atomic work units inside the single correction transaction; work-unit count never creates another fix budget.

Commands

# Review the story before committing
git diff --stat
git diff --cached --stat

# Check recent commit style
git log --oneline -5

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

它属于哪个仓库

星标★ 6,884
本站分层T1
该仓技能数37
原文件路径internal/assets/skills/work-unit-commits/SKILL.md

同一个仓库里的其他技能

看这个仓库的全部 37 个技能

同名技能的其他版本

有 2 个不同仓库或目录里都有叫 work-unit-commits 的技能。它们内容并不相同,别混用: