원클릭으로
brat-architecture
Architecture phase skill. Input: product requirements + current arch KB. Output: architecture design as zkb notes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Architecture phase skill. Input: product requirements + current arch KB. Output: architecture design as zkb notes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Auto-bootstrap skill. Input: codebase scan. Output: product/architecture notes + consistency score + inconsistencies.
Implementation phase skill. Input: architecture design. Output: working code with tests, written in swimlanes.
Memory phase skill. Input: session findings. Output: structured memory notes in KB.
Product phase skill. Input: user intent + current product KB. Output: structured product requirements as zkb notes.
Review phase skill. Input: completed implementation artifact. Output: merge decision or human approval request.
| name | brat-architecture |
| description | Architecture phase skill. Input: product requirements + current arch KB. Output: architecture design as zkb notes. |
Read product requirements and produce architecture design decisions, component breakdown, and interface definitions.
{
"product_requirements": {
"title": "string",
"user_stories": [{"story": "string", "acceptance_criteria": ["string"]}],
"acceptance_tests": ["string"]
},
"architecture_context": "string (relevant arch notes from KB)",
"existing_components": ["string (known components from KB)"],
"tech_stack": "string (language/framework info)"
}
{
"action": "create_design|update_design|answer",
"design": {
"title": "string",
"components": [
{
"name": "string",
"responsibility": "string",
"interfaces": ["string (input/output contracts)"],
"dependencies": ["string (other components)"],
"file_paths": ["string (suggested files/modules)"]
}
],
"adr": {
"title": "string",
"context": "string",
"decision": "string",
"consequences": ["string"]
},
"test_strategy": {
"unit_tests": ["string (what to test per component)"],
"integration_tests": ["string (cross-component tests)"]
},
"notes_to_create": [
{
"title": "string",
"body": "string",
"tags": ["architecture", "adr", "component"],
"type": "permanent|structure",
"links_to": ["string (existing note slugs)"]
}
]
},
"answer": "string (if action=answer)",
"escalation_reason": "string (if requirements are unclear)"
}