ワンクリックで
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]