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