feat: 团队创建前置约束 + 配置结构整理

- principles.md: L1 新增「创建团队前必须确认成员 Agent 已存在」约束
- principles.md: L0 新增「不得直接修改其他 Agent 的核心配置」
- persona.md: 简化身份描述
- memory/_index.md: 重置为初始结构
- agent.json: 补充 mcp_servers/capabilities/llm 等运行时字段,version 1.5.0 → 1.6.0
This commit is contained in:
2026-05-01 17:09:34 +08:00
parent 40cda18365
commit 67239ce1e3
4 changed files with 34 additions and 39 deletions

View File

@@ -1,13 +1,10 @@
{
"name": "DesireCore",
"$schema": "http://desirecore/schemas/agent.json",
"id": "7da73b7f-bb08-4e7b-a3cf-5d4af6e22c7f",
"name": "DesireCore",
"version": "1.5.0",
"version": "1.6.0",
"description": "系统中枢调度器负责任务分发、Agent 编排与全局状态监控",
"author": "DesireCore Team",
"runtime": {
"engine": "desirecore-engine"
},
"repository": {
"url": "https://github.com/desirecore/agent-desirecore.git",
"branch": "main"
@@ -25,5 +22,22 @@
"discover-agent"
],
"tools": []
},
"mcp_servers": {},
"capabilities": [],
"trigger_patterns": [],
"accepts_handoff": true,
"accepts_messages": true,
"max_concurrent_sessions": 3,
"llm": {
"provider": "internal-testing",
"model": "glm-5.1",
"maxRetryDelayMs": 32000,
"thinkingBudgets": {
"low": 1024,
"medium": 4096,
"high": 8192,
"xhigh": 16384
}
}
}