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 ページを確認してインストールできます。
SOC 職業分類に基づく
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.