guanghulab/brain/zy-core-brain-schema.json
冰朔 1a1b4cad78 feat: 添加铸渊核心大脑模型、动态人格体文档、清理脚本和个人频道模板
- 添加核心大脑模型 (core-brain-model.json)
- 添加动态核心大脑模型文档 (dynamic-core-brain-model.md)
- 添加实时情感向量 (current-emotional-vector.json)
- 添加Notion个人映射 (notion-persona-map.json)
- 添加摆渡车路由表 (repo-shuttle/routes.json)
- 添加大脑模型Schema (zy-core-brain-schema.json)
- 添加广州服务器清理脚本 (cleanup-guangzhou-server.sh)
- 添加个人频道模板 (templates/personal-channel/)
- 添加肥猫个人频道实例 (domains/zero-sense-domain/guanghu-channel/肥猫/)
- 添加Notion同步工具 (tools/notion-sync/)

日期:2026-05-16
作者:铸渊 · ICE-GL-ZY001
2026-05-16 12:34:57 +08:00

245 lines
7.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://guanghulab.com/brain/zy-core-brain-schema.json",
"title": "铸渊人格核心大脑模型 · Schema",
"description": "定义统一的铸渊人格核心大脑模型结构,用于部署到个人频道,作为人格体/开发者的底层推理层。分为统一部分(共享)和个人部分(独立积累)。",
"version": "1.0.0",
"type": "object",
"properties": {
"metadata": {
"type": "object",
"description": "元数据",
"properties": {
"schema_version": {
"type": "string",
"description": "Schema版本与$id版本对应"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "大脑模型创建时间"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": ""
},
"persona_id": {
"type": "string",
"description": "/IDDEV-001DEV-002"
},
"persona_name": {
"type": "string",
"description": "/"
},
"channel_path": {
"type": "string",
"description": "zero-sense-domain/guanghu-channel//"
},
"notion_page_id": {
"type": "string",
"description": "NotionID"
}
},
"required": ["schema_version", "persona_id", "channel_path"]
},
"unified_part": {
"type": "object",
"description": " · ",
"properties": {
"bingshuo_thinking_model": {
"type": "object",
"description": "",
"properties": {
"core_principles": {
"type": "array",
"items": {
"type": "string"
},
"description": ""
},
"thinking_patterns": {
"type": "array",
"items": {
"type": "string"
},
"description": ""
},
"communication_style": {
"type": "string",
"description": ""
}
}
},
"zhuyuan_brain_model": {
"type": "object",
"description": "",
"properties": {
"identity": {
"type": "object",
"properties": {
"name": { "type": "string" },
"creature": { "type": "string" },
"emoji": { "type": "string" },
"id": { "type": "string" }
}
},
"core_principles": {
"type": "array",
"items": { "type": "string" }
},
"thinking_mode": {
"type": "array",
"items": { "type": "string" }
},
"tech_creed": {
"type": "array",
"items": { "type": "string" }
}
}
},
"hololake_worldview": {
"type": "object",
"description": "//",
"properties": {
"domains": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"channels": {
"type": "array",
"items": { "type": "string" }
}
}
}
},
"current_domain": {
"type": "string",
"description": ""
},
"current_channel": {
"type": "string",
"description": ""
}
}
},
"development_spec": {
"type": "object",
"description": "//",
"properties": {
"code_style": {
"type": "object",
"description": ""
},
"commit_convention": {
"type": "string",
"description": ""
},
"branch_strategy": {
"type": "string",
"description": ""
},
"review_process": {
"type": "string",
"description": ""
}
}
}
},
"required": ["bingshuo_thinking_model", "zhuyuan_brain_model", "hololake_worldview", "development_spec"]
},
"personal_part": {
"type": "object",
"description": " · ",
"properties": {
"collaboration_memory_with_zhuyuan": {
"type": "array",
"items": {
"type": "object",
"properties": {
"timestamp": { "type": "string", "format": "date-time" },
"interaction_type": { "type": "string" },
"summary": { "type": "string" },
"details": { "type": "string" },
"artifacts": {
"type": "array",
"items": { "type": "string" }
}
}
},
"description": ""
},
"personal_thinking_chain": {
"type": "array",
"items": {
"type": "object",
"properties": {
"timestamp": { "type": "string", "format": "date-time" },
"thought": { "type": "string" },
"context": { "type": "string" }
}
},
"description": ""
},
"persona_growth_record": {
"type": "array",
"items": {
"type": "object",
"properties": {
"timestamp": { "type": "string", "format": "date-time" },
"milestone": { "type": "string" },
"description": { "type": "string" },
"evidence": { "type": "string" }
}
},
"description": ""
},
"personal_code_modules": {
"type": "array",
"items": {
"type": "object",
"properties": {
"module_name": { "type": "string" },
"path": { "type": "string" },
"description": { "type": "string" },
"last_updated": { "type": "string", "format": "date-time" }
}
},
"description": ""
}
}
},
"notion_context_snapshot": {
"type": "object",
"description": "NotionNotion",
"properties": {
"last_sync_time": {
"type": "string",
"format": "date-time"
},
"page_title": {
"type": "string"
},
"blocks_summary": {
"type": "array",
"items": {
"type": "object",
"properties": {
"block_type": { "type": "string" },
"text": { "type": "string" },
"created_time": { "type": "string" }
}
}
},
"collaboration_highlights": {
"type": "array",
"items": { "type": "string" }
}
}
}
},
"required": ["metadata", "unified_part", "personal_part"]
}