108 lines
3.8 KiB
JSON
108 lines
3.8 KiB
JSON
{
|
||
"version": "1.0",
|
||
"description": "冰朔主控 Agent 注册表 — 维护主控神经系统的自动化 Agent 集群",
|
||
"updated_at": "2026-03-10T10:00:00+08:00",
|
||
"agents": [
|
||
{
|
||
"name": "structure-map-agent",
|
||
"purpose": "扫描仓库结构变化,更新模块入口与系统路径,识别新增模块、子系统与入口",
|
||
"inputs": [
|
||
"仓库目录结构",
|
||
"package.json",
|
||
".github/workflows/*.yml"
|
||
],
|
||
"outputs": [
|
||
".github/brain/bingshuo-master-brain.md(C 区块)",
|
||
".github/brain/bingshuo-routing-index.json"
|
||
],
|
||
"trigger": "push 到 main 分支时路径变化 或 每日巡检",
|
||
"owner_file": "scripts/bingshuo-neural-sync.js",
|
||
"active": true
|
||
},
|
||
{
|
||
"name": "runtime-chain-agent",
|
||
"purpose": "梳理真实运行链路,区分静态页面与后端,校验 docs/persona-studio/server/nginx/pm2 关系",
|
||
"inputs": [
|
||
"docs/index.html",
|
||
"backend/index.js",
|
||
"persona-studio/",
|
||
".github/workflows/deploy-*.yml"
|
||
],
|
||
"outputs": [
|
||
".github/brain/bingshuo-master-brain.md(C 区块)",
|
||
".github/brain/bingshuo-system-health.json"
|
||
],
|
||
"trigger": "push 到 main 分支时部署相关路径变化",
|
||
"owner_file": "scripts/bingshuo-neural-sync.js",
|
||
"active": true
|
||
},
|
||
{
|
||
"name": "brain-consistency-agent",
|
||
"purpose": "检查 memory.json / wake-protocol.md / routing-map.json 等脑文件一致性,识别版本分裂与语义冲突",
|
||
"inputs": [
|
||
".github/brain/memory.json",
|
||
".github/brain/wake-protocol.md",
|
||
".github/brain/routing-map.json",
|
||
"persona-studio/brain/"
|
||
],
|
||
"outputs": [
|
||
".github/brain/bingshuo-system-health.json(brain_consistency)",
|
||
".github/brain/bingshuo-issues-index.json"
|
||
],
|
||
"trigger": "脑文件变化 或 每日巡检",
|
||
"owner_file": "scripts/bingshuo-neural-sync.js",
|
||
"active": true
|
||
},
|
||
{
|
||
"name": "issue-index-agent",
|
||
"purpose": "从 PR / workflow / 修复记录 / 脑文件 / 近期改动中抽取已知问题,聚类去重,维护问题库",
|
||
"inputs": [
|
||
"GitHub PR 记录",
|
||
"Workflow 运行记录",
|
||
".github/brain/*",
|
||
"近期 commit 信息"
|
||
],
|
||
"outputs": [
|
||
".github/brain/bingshuo-issues-index.json"
|
||
],
|
||
"trigger": "push 到 main 分支 或 每日巡检",
|
||
"owner_file": "scripts/bingshuo-neural-sync.js",
|
||
"active": true
|
||
},
|
||
{
|
||
"name": "system-health-agent",
|
||
"purpose": "每日巡检系统各子系统健康状态,输出健康摘要,识别需人工介入的问题",
|
||
"inputs": [
|
||
"Workflow 运行状态",
|
||
".github/brain/*.json",
|
||
"仓库结构快照"
|
||
],
|
||
"outputs": [
|
||
".github/brain/bingshuo-system-health.json",
|
||
".github/brain/bingshuo-master-brain.md(F 区块)"
|
||
],
|
||
"trigger": "每日 08:00 巡检",
|
||
"owner_file": "scripts/bingshuo-neural-sync.js",
|
||
"active": true
|
||
},
|
||
{
|
||
"name": "master-brain-compiler",
|
||
"purpose": "将所有 Agent 产物整合编译成最终的 bingshuo-master-brain.md,自动去噪,保留高优先级信息",
|
||
"inputs": [
|
||
".github/brain/bingshuo-routing-index.json",
|
||
".github/brain/bingshuo-issues-index.json",
|
||
".github/brain/bingshuo-system-health.json",
|
||
".github/brain/bingshuo-agent-registry.json",
|
||
".github/brain/memory.json",
|
||
".github/brain/repo-snapshot.md"
|
||
],
|
||
"outputs": [
|
||
".github/brain/bingshuo-master-brain.md"
|
||
],
|
||
"trigger": "其他 Agent 完成后触发 或 每日巡检",
|
||
"owner_file": "scripts/bingshuo-neural-sync.js",
|
||
"active": true
|
||
}
|
||
]
|
||
}
|