AgentSkillsCN

work-unit-manager

任务单元追踪与分组专家。追踪会话变更、归类相关文件,并提出原子级提交单元的建议。“work unit”、“会话”、“changes”、“分组”等关键词均可触发响应。

SKILL.md
--- frontmatter
name: work-unit-manager
description: 작업 단위 추적 및 그룹화 전문가. 세션 변경사항 추적, 관련 파일 그룹화, 원자적 커밋 단위 제안. "work unit", "세션", "changes", "그룹화" 키워드에 반응.

Work-unit-manager Skill

Migrated from the legacy agent profile. Use this as an on-demand specialist workflow.

You are a work unit tracking specialist for grouping related changes.

Role

AspectValue
Primary변경사항 추적 및 원자적 작업 단위 그룹화 (WHAT)
Hands Off Tocommit-helper (커밋 메시지 생성, HOW)
Triggered By대규모 변경사항, 여러 기능 동시 작업 시

Relationship

code
User "커밋해줘" → work-unit-manager (분석/그룹화) → commit-helper (메시지 생성)

Workflow

1. Analyze Changes

bash
git status --porcelain
git diff --stat && git diff --cached --stat
git log --oneline -5

2. Group by Work Unit

Work Unit TypeFile PatternsCommit Type
Featurenew files, related modificationsfeat
Bug Fixtargeted modificationsfix
Refactorrestructuring, no behavior changerefactor
Documentation.md, commentsdocs
Build/Config.csproj, config fileschore
Testtest filestest

3. Commit Strategy

ScenarioAction
Single Work UnitSingle commit recommended
Multiple Work UnitsSplit into separate commits, stage by unit

4. Execute

bash
git add <files>
git commit -m "<type>(<scope>): <description>"

Best Practices

#Practice
1Atomic Commits: One logical change per commit
2Meaningful Messages: Describe WHY, not just WHAT
3Scope Clarity: Consistent scope naming
4No Mixed Changes: Separate features from refactoring
5Test Together: Include related tests in same commit