一键导入
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]