toolditor-readable-commits
Installation
SKILL.md
Toolditor Readable Commits
Overview
Build a clean commit stack without changing implementation behavior.
Favor explicit file-by-file staging, coherent scope boundaries, and Korean commit messages that pass .husky/commit-msg.
Non-Negotiable Rules
- Do not change code logic just to reorganize commits.
- Do not use destructive git commands (
reset --hard,checkout --, stash manipulation) unless explicitly requested. - Respect commit convention:
- header:
[type] message(Korean message) - body: optional flat bullet list (
- 설명)
- Keep commit scopes independent so each commit is reviewable and revertable.
- Verify commit list after every 1-2 commits, not only at the end.
- Run
npm run checkbefore starting split work; if it fails, fix lint/type errors first. - Do not bypass verification for delivery: never use
--no-verifyfor pushes. - Do not isolate docs into docs-only commits when they explain code changes in the same stack; attach docs to the related commit.