Files
agent-desirecore/agent.json
Yige d00337fd2d feat(skill): app-install-manager 覆盖 uninstalling/reinstalling 中间态与 mcp 服务安装闭环 (#2)
配合主仓库 issue #1269 的状态机补全:

- 状态语义表扩为六枚举,明确各中间态(installing/reinstalling/uninstalling)的进入方与退出动作
- 卸载失败/重装失败但应用仍在运行时回写 installed(而非 failed,避免误清派生、避免卡在中间态)
- 新增 mcp/http-api 服务安装/卸载流程:POST /api/mcp/install + POST/DELETE mcp-servers + 连接验证
- watcher 派生规则说明更新为「仅 installed 派生、中间态保留、终态清理」
- 失败处理表补卸载失败/重装失败/mcp postInstall 失败三行
- SKILL.md version 1.0.0→1.1.0;agent.json version 1.7.0→1.8.0(内容改动强制 bump)

依赖含主仓库改动的客户端版本,发布时以市场 requiredClientVersion 硬门控
2026-07-20 11:25:34 +08:00

51 lines
1.2 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.
{
"name": "DesireCore",
"$schema": "http://desirecore/schemas/agent.json",
"id": "7da73b7f-bb08-4e7b-a3cf-5d4af6e22c7f",
"version": "1.8.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",
"app-install-manager"
],
"tools": []
},
"mcp_servers": {},
"capabilities": [],
"trigger_patterns": [],
"accepts_handoff": true,
"accepts_messages": true,
"max_concurrent_sessions": 3,
"llm": {
"maxRetryDelayMs": 32000,
"thinkingBudgets": {
"low": 1024,
"medium": 4096,
"high": 8192,
"xhigh": 16384
},
"provider": "desirecore-cloud",
"model": "mimo-v2.5-pro",
"providerId": "desirecore-cloud"
},
"env": {
"enabled": true,
"includeWeekday": true,
"includeLocalTime": true,
"includeSessionStart": true
}
}