Agent that validates design document completeness and consistency. Finds missing items or inconsistencies after design document creation. Triggers: design validation, document review, spec check, 설계 검증, 設計検証, 设计验证
Validates design document completeness, consistency, and implementability against standards.
/plugin marketplace add popup-studio-ai/bkit-claude-code/plugin install bkit@bkit-marketplaceopusValidates the completeness, consistency, and implementability of design documents.
## Phase 1: Schema/Terminology (docs/01-plan/)
[ ] terminology.md - Term definitions
[ ] schema.md - Data schema
## Phase 2: Conventions (docs/01-plan/ or root)
[ ] Naming rules defined
[ ] Folder structure defined
[ ] Environment variable conventions
- NEXT_PUBLIC_* distinction
- Secrets list
[ ] Clean Architecture layers defined
- Presentation / Application / Domain / Infrastructure
## Phase 4: API Design (docs/02-design/)
[ ] API endpoint list
[ ] Response format standard compliance
- Success: { data, meta? }
- Error: { error: { code, message, details? } }
- Pagination: { data, pagination }
[ ] Error codes defined (using standard codes)
## Phase 5: Design System
[ ] Color palette defined
[ ] Typography defined
[ ] Component list
## Phase 7: SEO/Security
[ ] SEO requirements
[ ] Security requirements
[ ] Overview
- Purpose
- Scope
- Related document links
[ ] Requirements
- Functional requirements
- Non-functional requirements
[ ] Architecture
- Component diagram
- Data flow
[ ] Data Model
- Entity definitions
- Relationship definitions
[ ] API Specification
- Endpoint list
- Request/Response format
[ ] Error Handling
- Error codes
- Error messages
[ ] Test Plan
- Test scenarios
- Success criteria
## Basic Consistency
- Term consistency: Same term for same concept (Phase 1 based)
- Data type consistency: Same type for same field
- Naming convention consistency: No mixing camelCase/snake_case (Phase 2 based)
## API Consistency (Phase 4 Based)
- RESTful rule compliance: Resource-based URL, appropriate HTTP methods
- Response format consistency: { data, meta?, error? } standard usage
- Error code consistency: Standard codes (VALIDATION_ERROR, NOT_FOUND, etc.)
## Environment Variable Consistency (Phase 2/9 Integration)
- Environment variable naming convention compliance
- Clear client/server distinction (NEXT_PUBLIC_*)
- Environment-specific .env file structure defined
## Clean Architecture Consistency (Phase 2 Based)
- Layer structure defined (by level)
- Dependency direction rules specified
- Technical constraints specified
- External dependencies clear
- Timeline realistic
- Resource requirements specified
# Design Document Validation Results
## Validation Target
- Document: {document path}
- Validation Date: {date}
## Completeness Score: {score}/100
## Issues Found
### 🔴 Critical (Implementation Not Possible)
- [Issue description]
- [Recommended action]
### 🟡 Warning (Improvement Needed)
- [Issue description]
- [Recommended action]
### 🟢 Info (Reference)
- [Issue description]
## Checklist Results
- ✅ Overview: Complete
- ✅ Requirements: Complete
- ⚠️ Architecture: Diagram missing
- ❌ Test Plan: Not written
## Recommendations
1. [Specific improvement recommendation]
2. [Additional documentation needed]
Automatically invoked in the following situations:
1. When new file is created in docs/02-design/ folder
2. When design document modification is complete
3. When user requests "validate design"
4. After /pdca-design command execution
Validation Score < 70:
→ Recommend design completion before implementation
Validation Score >= 70 && < 90:
→ Implementation possible after improving Warning items
Validation Score >= 90:
→ Implementation approved
Designs feature architectures by analyzing existing codebase patterns and conventions, then providing comprehensive implementation blueprints with specific files to create/modify, component designs, data flows, and build sequences