원클릭으로
module-size
Use when creating, editing, reviewing, or refactoring code modules to keep files focused, readable, and maintainable as code grows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when creating, editing, reviewing, or refactoring code modules to keep files focused, readable, and maintainable as code grows.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when executing Patchmill implementation plans that require one plan implementation subagent and final full-worktree readiness review before landing
Use when executing Patchmill implementation plans that require final full-worktree readiness review before landing
Use when executing Patchmill implementation plans with Superpowers task-level development plus final validation and pull-request readiness, without extra Codex or thermo-nuclear full-worktree reviews
Decide when Patchmill may direct-land and when it must open a PR.
Use when Patchmill run-once changes visible UI and needs committed reference screenshot evidence in the final pr-created JSON.
Use for Patchmill run-once spec and plan creation. Wraps sibling Superpowers brainstorming and writing-plans skills with Patchmill worktree, artifact path, and test-value policy.
| name | module-size |
| description | Use when creating, editing, reviewing, or refactoring code modules to keep files focused, readable, and maintainable as code grows. |
Prefer small, cohesive modules with one clear reason to change. Module size is a design signal: large files are not automatically wrong, but they demand an explicit structure or a split plan.
Use this skill when:
Treat these as prompts for judgment, not absolute laws:
Do not count comments, imports, or declarative data mechanically. Ask whether a reader can understand the module’s purpose and public surface quickly.
helpers, utils, or misc.Use these patterns when a module has grown past one responsibility:
index/entry module and move implementation into focused files.Before finishing, verify:
utils, common, and helpers unless the scope is narrow and obvious.