一键导入
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 页面并帮你完成安装。
基于 SOC 职业分类
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.
| 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"}]
}