원클릭으로
architecture-refactor
Parallel-path refactor workflow for clean boundary cutovers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Parallel-path refactor workflow for clean boundary cutovers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | architecture-refactor |
| description | Parallel-path refactor workflow for clean boundary cutovers |
| user-invocable | true |
Use this skill when incremental edits are making structure worse, coupling is spreading, or compatibility glue is piling up.
feature_adapter_* patterns without a clear deletion path).docs/.Define target architecture
Choose migration seams
Build the new path in parallel
Port behavior via contracts
Cut over callers
Delete old path and shims
Capture durable decisions
docs/.make test after code changes.make smoke for faster runtime feedback during the cutover.make check before opening or updating a PR.make cover only when you need focused standalone coverage output while
debugging a refactor; otherwise rely on make check.For web and web style transitions, prefer a clean module path in parallel,
migrate route/service slices to that path, then delete old slice-by-slice
handlers and adapters once each cutover is validated.
PR review triage, scoped fixes, verification, and merge workflow
Web transport boundaries and feature-layer conventions
Workflow and checks for adding a new game system
Meaningful testing strategy and coverage guardrails
Structured domain and transport errors with i18n-friendly messages
Go conventions for architecture-first, maintainable code