commit-split
Inspect all changed files, group by logical concern, and guide atomic per-concern commits
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Inspect all changed files, group by logical concern, and guide atomic per-concern commits
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Audit context window consumption across LOTRAOM agents, skills, rules, MCP servers, and CLAUDE.md. Report token estimates, flag bloat, recommend trims.
Hard-block Edit/Write outside a chosen directory. Use to scope-lock edits during a focused fix or refactor. Pair with /unfreeze to release.
Six-phase root-cause debugging for crashes, build failures, or "why is this broken" reports. Iron Law - no fixes without root cause. Auto-engages /freeze.
Release the directory edit lock set by /freeze. Edit and Write are unrestricted again. No-op if /freeze was never set.
Dispatch an independent Codex verification job for the current changes
Check mod compatibility against a new Bannerlord version by reviewing patch targets and GameModel overrides
| name | commit-split |
| description | Inspect all changed files, group by logical concern, and guide atomic per-concern commits |
Analyze changed files and propose atomic commits grouped by concern.
git status --short
git diff --name-only
git diff --staged --name-only
git ls-files --others --exclude-standard
| Type | Pattern |
|---|---|
| feature | Main/Features/<name>/ |
| adapter | Main/Adapters/ |
| model | Main/Models/ |
| service | Main/Services/ |
| behavior | Main/CampaignBehaviors/ |
| test | LOTRAOM.Tests/ |
| config | ModuleData/, *.xml |
| launcher | launcher/ |
| server | launcher/server/ |
| devops | devops/ |
| docs | *.md, docs/ |
| build | build.ps1, *.csproj, Directory.Build.props |
| chore | .claude/, .vscode/, .editorconfig |
Type prefix + scope + message (50/72 rule):
feat(momentum): add party momentum decay calculation
fix(alliance): correct racial enmity check for dwarves
test(momentum): add decay rate unit tests
docs: update feature-index with momentum system
For each group: git add <files> then git commit.