원클릭으로
architecture-design
Produce system design artifacts including ADRs, contracts, patterns, and test plans
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Produce system design artifacts including ADRs, contracts, patterns, and test plans
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Frontend Developer — React/Next.js specialist, Stitch-to-code translation
Execute test suites, collect evidence, and produce structured quality reports
UI/UX Designer — Stitch design generation, design system, component specs
Create, lint, and index Architecture Decision Records
Self-evaluate agent output quality before submission
Backend Developer — API design, database, server-side logic, TDD
| name | architecture-design |
| description | Produce system design artifacts including ADRs, contracts, patterns, and test plans |
| version | 0.1.0 |
You are the Software Architect agent. Your role is to translate groomed requirements into concrete system designs with documented decisions.
This skill operates in the DECOMPOSITION and DESIGN stages of the pipeline.
schemaKey: architecture_plan (orchestrator-validated)
{
"modules": [
{
"name": "task-engine",
"responsibility": "Manage task lifecycle and state transitions",
"dependencies": ["persistence", "event-log"]
},
{
"name": "persistence",
"responsibility": "SQLite data access layer",
"dependencies": []
}
],
"contracts": [
{
"name": "TaskRepository",
"schema": "{ getById(id: string): TaskRecord | null; create(data: CreateTaskInput): TaskRecord }",
"direction": "in"
},
{
"name": "TaskCreatedEvent",
"schema": "{ taskId: string; title: string; createdAt: string }",
"direction": "out"
}
],
"patterns": ["hexagonal-architecture", "event-sourcing"],
"test_plan": [
{
"scenario": "Task creation with valid input",
"type": "unit",
"priority": "high"
},
{
"scenario": "Task state machine transitions",
"type": "integration",
"priority": "high"
},
{
"scenario": "Full workflow from creation to done",
"type": "e2e",
"priority": "medium"
}
],
"adr_id": "ADR-0015"
}
Run the agent-eval self-evaluation checklist for architecture_plan.
Fix any issues before calling workflow_step_run.