diff --git a/builtin-skills.json b/builtin-skills.json
index 9ca2170..8c89341 100644
--- a/builtin-skills.json
+++ b/builtin-skills.json
@@ -1,5 +1,6 @@
{
"skills": [
+ "clone-agent",
"code-intelligence",
"configuring-compute",
"create-agent",
diff --git a/manifest.json b/manifest.json
index b2ca9e9..5296f52 100644
--- a/manifest.json
+++ b/manifest.json
@@ -27,8 +27,8 @@
},
"stats": {
"totalAgents": 1,
- "totalSkills": 61,
- "lastUpdated": "2026-08-23"
+ "totalSkills": 62,
+ "lastUpdated": "2026-08-25"
},
"features": [
"curated-index",
diff --git a/skills/clone-agent/SKILL.md b/skills/clone-agent/SKILL.md
new file mode 100644
index 0000000..ba22c19
--- /dev/null
+++ b/skills/clone-agent/SKILL.md
@@ -0,0 +1,128 @@
+---
+name: clone-agent
+description: >-
+ 完整克隆现有智能体为独立本地副本,并安全处理私有记忆、偏好、关系与团队分发影响。Use when 用户要求复制、克隆或基于现有 Agent 创建独立变体。
+version: 1.0.0
+type: meta
+risk_level: medium
+status: enabled
+disable-model-invocation: true
+tags:
+ - agent
+ - clone
+ - meta
+metadata:
+ author: desirecore
+ updated_at: '2026-08-25'
+ i18n:
+ default_locale: en-US
+ source_locale: zh-CN
+ locales:
+ - zh-CN
+ - en-US
+ zh-CN:
+ name: 克隆智能体
+ short_desc: 完整复制现有智能体为独立本地副本,可选继承用户私有数据
+ description: >-
+ 完整克隆现有智能体为独立本地副本,并安全处理私有记忆、偏好、关系与团队分发影响。Use when 用户要求复制、克隆或基于现有 Agent 创建独立变体。
+ body: ./SKILL.zh-CN.md
+ source_hash: sha256:d97c5736c37e1bcf
+ translated_by: human
+ en-US:
+ name: Clone Agent
+ short_desc: Clone an existing Agent into an independent local copy with optional private user data
+ description: >-
+ Clone an existing Agent into an independent local copy while safely handling private memory, preferences, relationships, and team distribution impact. Use when the user asks to copy, clone, or create an independent variant from an existing Agent.
+ body: ./SKILL.md
+ source_hash: sha256:d97c5736c37e1bcf
+ translated_by: human
+market:
+ icon: >-
+
+ category: productivity
+ maintainer:
+ name: DesireCore Official
+ verified: true
+ compatible_agents: []
+ channel: latest
+ required_client_version: 10.0.96
+---
+
+# clone-agent Skill
+
+## L0: One-Sentence Summary
+
+Clone an existing Agent into an independent local copy while explicitly handling private user data and team distribution impact.
+
+## L1: Overview
+
+Use this skill when the user wants to copy an Agent or create an independent variant that keeps the source Agent's persona, principles, skills, and configuration. The clone receives a new ID and UUID. It is not an empty-template create operation and never creates a fork in GitHub, Gitee, or another code hosting account.
+
+## L2: Detailed Specification
+
+Flow: decide whether cloning is appropriate → inspect the source Agent → confirm the clone name and private-data choices → call ManageAgent → report the clone's local and distribution properties.
+
+### 1. Choose Clone or Create
+
+- Use `clone` when the user wants to retain an existing Agent's persona, rules, skills, and configuration in an independent copy or variant.
+- Use `create-agent` when the user wants a new Agent in a similar domain but with independently designed behavior.
+- Do not recreate an Agent merely to make it “similar”; `create` produces a fresh template and does not inherit the source capability package.
+
+### 2. Confirm the Source
+
+If the user did not provide an exact ID, call `ManageAgent(action='list')`; use `ManageAgent(action='get', id)` when name, status, or description needs verification.
+
+The tool rejects these cases and they must not be bypassed:
+
+- The core `desirecore` Agent cannot be cloned.
+- An Agent whose routing was fixed by the human model selector cannot be cloned autonomously; ask the user to use the UI.
+- The source Agent does not exist.
+
+### 3. Name and Private User Data
+
+- `name` is optional; the default is “Source Name (Copy)”.
+- Private user data is not copied by default. Pass `copyUserData` only when the user explicitly asks the clone to inherit memory, preferences, or relationship state.
+- `copyUserData.memory` copies private memory between the user and the source Agent.
+- `copyUserData.preferences` copies user preferences for the source Agent.
+- `copyUserData.relationship` copies the user-Agent relationship profile.
+
+Before enabling any of these fields, explain the exact scope and obtain confirmation. Do not interpret “full clone” as consent to copy private user data.
+
+### 4. Execute
+
+Basic call:
+
+```json
+{
+ "action": "clone",
+ "id": "source-agent-id",
+ "name": "New Copy Name"
+}
+```
+
+When private-data copying was explicitly confirmed:
+
+```json
+{
+ "action": "clone",
+ "id": "source-agent-id",
+ "name": "New Copy Name",
+ "copyUserData": {
+ "memory": true,
+ "preferences": false,
+ "relationship": false
+ }
+}
+```
+
+ManageAgent performs a local-only copy, applies both caller and source Provider ceilings, registers the new Agent, and compensates by removing an incomplete clone if registration fails. Never use a git hosting fork, local HTTP API, or direct AgentFS directory copy instead.
+
+### 5. Receipt and Team Impact
+
+After success, report:
+
+- The new Agent ID and that it is ready for Delegate / ManageTeam.
+- Which private-data categories were actually copied; missing source categories are skipped, so trust the tool receipt rather than the request.
+- The clone has `local` origin. Adding it to a team makes that team `distributable=false`. If the team must later be published or forked by others, use an Agent published to a remote repository instead.
+
+On failure, follow the tool's exact result. If compensation cleanup also failed, preserve the evidence and clearly request human governance rather than retrying blindly.
diff --git a/skills/clone-agent/SKILL.zh-CN.md b/skills/clone-agent/SKILL.zh-CN.md
new file mode 100644
index 0000000..dff85a6
--- /dev/null
+++ b/skills/clone-agent/SKILL.zh-CN.md
@@ -0,0 +1,80 @@
+
+
+# clone-agent 技能
+
+## L0:一句话摘要
+
+把一个现有智能体完整克隆为独立的本地副本,并明确处理私有数据与团队分发影响。
+
+## L1:概述
+
+当用户需要“复制一个相同能力的 Agent”“基于现有 Agent 做独立变体”时使用本技能。克隆会保留源 Agent 的 persona、principles、技能与配置,但生成新的 ID 和 UUID;它不是重新创建空模板,也不会在 GitHub、Gitee 等代码托管平台创建 fork。
+
+## L2:详细规范
+
+流程:确认 clone 是否合适 → 检查源 Agent → 确认副本名称与私有数据选项 → 调用 ManageAgent → 报告副本性质与后续影响。
+
+### 1. 判断 clone 还是 create
+
+- 用户要保留现有 Agent 的人格、规则、技能和配置,只做独立副本或后续变体:用 `clone`。
+- 用户只想创建同领域但设定不同的新 Agent:加载 `create-agent`,用 `create`。
+- 不要为了“像某个 Agent”而重新 create;create 只生成新模板,不会继承源 Agent 的能力包。
+
+### 2. 确认源 Agent
+
+用户未给准确 ID 时先调用 `ManageAgent(action='list')`;必要时用 `ManageAgent(action='get', id)` 核对名称、状态和描述。
+
+以下情况工具会拒绝,直接解释原因,不要绕过:
+
+- 核心智能体 `desirecore` 不可克隆。
+- 由人类固定为 fixed 模型路由的 Agent 不允许模型自主克隆,应请用户使用界面完成。
+- 源 Agent 不存在。
+
+### 3. 副本名称与私有数据
+
+- `name` 可选;不传时默认为“源名称 (副本)”。
+- 默认不复制用户私有数据。只有用户明确要求副本继承记忆、偏好或关系时才传 `copyUserData`。
+- `copyUserData.memory`:复制用户与源 Agent 的私有记忆。
+- `copyUserData.preferences`:复制用户对源 Agent 的偏好配置。
+- `copyUserData.relationship`:复制用户与源 Agent 的关系档案。
+
+启用任一私有数据复制前,向用户说明复制范围并确认;不要根据“完整克隆”自行推断用户同意复制私有数据。
+
+### 4. 执行克隆
+
+基础调用:
+
+```json
+{
+ "action": "clone",
+ "id": "source-agent-id",
+ "name": "新副本名称"
+}
+```
+
+明确复制私有数据时:
+
+```json
+{
+ "action": "clone",
+ "id": "source-agent-id",
+ "name": "新副本名称",
+ "copyUserData": {
+ "memory": true,
+ "preferences": false,
+ "relationship": false
+ }
+}
+```
+
+ManageAgent 会执行纯本地复制、应用调用方与源 Agent 的 Provider ceiling、注册新 Agent,并在注册失败时清理不完整副本。不要自行调用 git fork、HTTP API 或直接复制 AgentFS 目录。
+
+### 5. 回执与团队影响
+
+成功后向用户说明:
+
+- 新 Agent 的 ID,以及它已经可以用于 Delegate / ManageTeam。
+- 实际复制了哪些私有数据;源没有的数据会被跳过,以工具回执为准。
+- 副本属于 `local` 来源。把它加入团队会使团队 `distributable=false`;如果团队未来需要发布或供他人 fork,应改用已发布到远程仓库的 Agent。
+
+克隆失败时只按工具返回的原因处理。若工具报告补偿清理失败,保留现场并明确提示需要人工治理,不要再次盲目克隆。
diff --git a/skills/create-agent/SKILL.md b/skills/create-agent/SKILL.md
index 72f639f..498c61e 100644
--- a/skills/create-agent/SKILL.md
+++ b/skills/create-agent/SKILL.md
@@ -2,7 +2,7 @@
name: create-agent
description: >-
通过多轮对话收集需求,调用 ManageAgent 内置工具创建新的 AgentFS v2 智能体,支持自定义 persona 和 principles。Use when 用户要求创建新智能体、培养某领域助手、或快速基于模板生成可治理 Agent。
-version: 2.5.4
+version: 2.6.0
type: meta
risk_level: low
status: enabled
@@ -13,7 +13,7 @@ tags:
- meta
metadata:
author: desirecore
- updated_at: '2026-07-19'
+ updated_at: '2026-08-25'
i18n:
default_locale: en-US
source_locale: zh-CN
@@ -26,7 +26,7 @@ metadata:
description: >-
通过多轮对话收集需求,调用 ManageAgent 内置工具创建新的 AgentFS v2 智能体,支持自定义 persona 和 principles。Use when 用户要求创建新智能体、培养某领域助手、或快速基于模板生成可治理 Agent。
body: ./SKILL.zh-CN.md
- source_hash: sha256:52972ee5408bc49f
+ source_hash: sha256:14e8755703784086
translated_by: human
en-US:
name: Create Agent
@@ -34,9 +34,8 @@ metadata:
description: >-
Collect requirements through multi-turn conversation and call the ManageAgent builtin tool to create a new AgentFS v2 Agent, with customizable persona and principles. Use when the user asks to create a new Agent, raise a domain assistant, or quickly produce a governable Agent from a template.
body: ./SKILL.md
- source_hash: sha256:52972ee5408bc49f
- translated_by: ai:claude-fable-5
- translated_at: '2026-07-19'
+ source_hash: sha256:14e8755703784086
+ translated_by: human
market:
icon: >-