원클릭으로
plan-review
Architecture review before implementation. Walk through design, failure modes, scope, and test strategy before writing code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Architecture review before implementation. Walk through design, failure modes, scope, and test strategy before writing code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
End-to-end pipeline to augment any repository for AI-assisted development. Installs opinionated engineering workflows, generates documentation, and configures Claude Code or Cursor.
Destructive command safety guardrails. Warns before dangerous operations in production and shared environments.
Transform a knowledge graph into a human-readable /docs folder with markdown documentation that both humans and agentic workflows can reference.
Systematic root-cause debugging and incident investigation. No fixes without understanding the problem first.
Engineering retrospective and velocity analytics from git history. Generates weekly insights on team productivity, code quality, and contribution patterns.
Structured code and infrastructure PR review with evidence-based findings, auto-fix classification, and scope drift detection.
| name | plan-review |
| version | 1.0.0 |
| description | Architecture review before implementation. Walk through design, failure modes, scope, and test strategy before writing code. |
| author | iscmga |
| tags | ["architecture","design-review","planning","eng-review","pre-implementation"] |
| triggers | {"globs":[],"keywords":["plan review","architecture review","design review","eng review","review the plan","before we build"]} |
Engineering manager-mode architecture review. Locks in execution plans before implementation by walking through architecture, failure modes, scope, and test strategy. One issue per question — never batch. Inspired by gstack's plan-eng-review methodology.
Walk through the proposed design:
System Design
Dependency Analysis
Failure Scenarios For each component, answer:
Present findings. Stop and ask: "Any concerns with the architecture before I continue to scope?"
Scope Assessment
Narrowest Wedge
NOT in Scope Define explicitly what this change does NOT include, and why:
NOT IN SCOPE:
- Migration of existing data (Phase 2)
- Multi-region support (not needed for current scale)
- UI changes (handled by separate ticket)
Present findings. Stop and ask: "Agree with the scope boundary?"
Resource Design
Network Design
Cost Impact
State Management
Present findings. Stop and ask: "Any concerns with the infrastructure design?"
What to Test
How to Test
terraform plan, unit tests, integration testsAcceptance Criteria Define clear, verifiable criteria:
ACCEPTANCE:
- [ ] terraform plan shows only expected changes
- [ ] Health checks pass within 5 minutes of deploy
- [ ] Monitoring dashboard shows no error spike
- [ ] Rollback procedure tested in staging
Present findings. Stop and ask: "Agree with the test strategy?"
Produce a design document:
## Design: <title>
### Decision
<One-paragraph summary of what will be built and why>
### Architecture
<ASCII diagram of component interactions>
### Scope
- IN: <what's included>
- OUT: <what's excluded and why>
### Failure Modes
| Component | Failure | Impact | Mitigation |
|-----------|---------|--------|------------|
| ... | ... | ... | ... |
### Test Plan
- Pre-deploy: ...
- Post-deploy: ...
- Rollback: ...
### Risks
| Risk | Likelihood | Impact | Mitigation |
|------|-----------|--------|------------|
| ... | ... | ... | ... |
### Cost
- Estimated monthly: $X
- Cost optimization: ...
### Timeline
- Phase 1: <scope> — <estimate>
- Phase 2: <scope> — <estimate>
review skillPlan review happens BEFORE implementation. Code review (review skill) happens AFTER.
ship skillThe design document from plan review should be referenced in the PR created by ship.
investigate skillFailure modes identified in plan review inform the investigation playbook when things go wrong.