ワンクリックで
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 職業分類に基づく
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
| 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.