원클릭으로
architecture-review
Architecture compliance checklist for code review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Architecture compliance checklist for code review
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Structured brainstorming for exploring new features or solving complex problems
Scope, architect, and plan new tasks
Multi-angle code review before merging
Summarize the day's work and put it in context
Wrap up work — atomic commits and push to origin
Full end-to-end (E2E) testing skill utilizing the browser. Make sure to use this skill whenever the user asks to "test the app", "run end to end tests", "verify the UI", "check if the app works", or wants you to use the browser to interact with and test the application flow. This skill orchestrates creating a test plan, getting user approval, navigating the application using the browser, independently fixing obstacles, and generating a progressive test report.
| name | architecture-review |
| description | Architecture compliance checklist for code review |
Verify changes comply with the project's architectural patterns. Use during the architecture pass of /review.
__invoke() method per Action classroutes/api/v1.php/api/v1/orders, not /api/v1/getOrders)base/ for primitives, feature components grouped by domaincomposables/, not duplicated across componentsuseState for SSR-safe reactive stateserver/api/ routes — no direct backend URLs in client codeshared/: Shared types live in shared/types/ — accessible to both client and serverBaseButton, BaseInput, etc. used — no raw HTML for common patternsControllers → Actions → Models
↓ ↓
Requests Services (external)
↓
Resources (output)
20_stack.md20_stack.md layouts)tests/Feature/ and tests/Unit/