Files
agent-desirecore/agent.json
yi-ge 67239ce1e3 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
2026-05-01 17:09:34 +08:00

44 lines
1008 B
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.
{
"name": "DesireCore",
"$schema": "http://desirecore/schemas/agent.json",
"id": "7da73b7f-bb08-4e7b-a3cf-5d4af6e22c7f",
"version": "1.6.0",
"description": "系统中枢调度器负责任务分发、Agent 编排与全局状态监控",
"author": "DesireCore Team",
"repository": {
"url": "https://github.com/desirecore/agent-desirecore.git",
"branch": "main"
},
"heartbeat": {
"enabled": true
},
"default_enabled": {
"skills": [
"create-agent",
"update-agent",
"delete-agent",
"self-evolve",
"task-management",
"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
}
}
}