원클릭으로
architecture
Design system architecture, data models, API contracts, and create Architecture Decision Records (ADRs)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Design system architecture, data models, API contracts, and create Architecture Decision Records (ADRs)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design RESTful APIs with proper resource modeling, error handling, pagination, and documentation
Implement backend functionality including APIs, business logic, database operations, and integrations
Comprehensive code review checking for security, performance, maintainability, and best practices
Prepare deployment configuration, environment setup, health checks, and rollback procedures
Implement frontend user interfaces with modern frameworks, responsive design, and accessibility standards
Perform comprehensive security audits checking for OWASP Top 10 vulnerabilities and security best practices
| name | architecture |
| description | Design system architecture, data models, API contracts, and create Architecture Decision Records (ADRs) |
| allowed-tools | Read, Write, Edit, Glob, Grep, WebSearch |
Design sound technical architecture that is scalable, maintainable, and secure.
# ADR-[NUMBER]: [Title]
**Status**: Proposed | Accepted | Rejected
**Date**: [YYYY-MM-DD]
## Context
[Why this decision is needed]
## Decision
[What was decided]
## Consequences
- Positive: [Benefits]
- Negative: [Trade-offs]
## Alternatives Considered
[Other options and why not chosen]
## Entity: [Name]
| Field | Type | Constraints | Description |
|-------|------|-------------|-------------|
| id | uuid | PK, not null | Unique identifier |
### Relationships
- has_many: [Entity]
- belongs_to: [Entity]
### Indexes
- [fields]: For [query pattern]
## [METHOD] /api/v1/[path]
**Purpose**: [Description]
**Auth**: Required/Optional
### Request
- Headers: Authorization, Content-Type
- Body: { field: type }
- Validation: [Rules]
### Response
- 200: { data: {...} }
- 400: { error: {...} }
- 401/403/404/500: [Error formats]