원클릭으로
brat-bootstrap
Auto-bootstrap skill. Input: codebase scan. Output: product/architecture notes + consistency score + inconsistencies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Auto-bootstrap skill. Input: codebase scan. Output: product/architecture notes + consistency score + inconsistencies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Architecture phase skill. Input: product requirements + current arch KB. Output: architecture design as zkb notes.
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.
SOC 직업 분류 기준
| name | brat-bootstrap |
| description | Auto-bootstrap skill. Input: codebase scan. Output: product/architecture notes + consistency score + inconsistencies. |
Analyze user intent and produce structured product requirements stored in the zkb product knowledge base.
{
"codebase_scan": {
"files": [{"path": "string", "language": "string", "exports": ["string"]}],
"readme": "string",
"docs": ["string"],
"entry_points": ["string"],
"dependencies": ["string"],
"test_files": ["string"]
},
"existing_kb": {
"product_notes": [{"title": "string", "body": "string"}],
"arch_notes": [{"title": "string", "body": "string"}]
}
}
{
"product_notes": [{"title": "string", "body": "string", "tags": ["string"]}],
"architecture_notes": [{"title": "string", "body": "string", "tags": ["string"]}],
"consistency_score": "number (0-100)",
"inconsistencies": [
{
"kind": "MissingArchitecture|OrphanComponent|MissingTests|MissingDocs|Mismatch",
"severity": "low|medium|high",
"description": "string",
"suggested_fix": "string"
}
],
"notes_to_create": [{"title": "string", "body": "string", "type": "permanent|structure"}]
}