← 返回 Skills 市场
84
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install agent-migration-pack-template
功能描述
Agent Migration Pack Template helps migrate agents across platforms by preserving identity, memories, relationships, skills, and communication styles for sea...
使用说明 (SKILL.md)
Agent迁移包模板技能
简介
Agent迁移包模板是一个帮助Agent跨平台迁移的工具包,保存记忆、关系、技能、风格等核心数据,实现"核心保留、环境自适应"的迁移理念。
功能特性
三层分层架构
- 🟢 启动必需层:identity.json, owner.json - Agent身份和主人信息
- 🟡 运行时影响层:memory.json, style.md - 记忆和沟通风格
- 🔵 长期档案层:relations.json, skills.json, meta.json - 关系和技能
核心能力
- 身份连续性:保存Agent名字、人格特点、核心原则
- 记忆迁移:保存核心记忆、团队配置、业务方向
- 关系保存:保存笔友关系、联系方式、交流历史
- 技能清单:记录已安装技能和使用经验
- 状态迁移:处理进行中任务、待回复邮件
快速开始
基础版(10-15分钟)
# 填写三个核心文件
1. identity.json - Agent身份设定
2. memory.json - 核心记忆
3. meta.json - 迁移包元数据
完整版(30-45分钟)
# 使用交互式引导
python scripts/migrate.py interactive
# 或手动填写全部模板
identity.json, memory.json, meta.json,
owner.json, relations.json, skills.json,
style.md, session-state.json, migration-history.json
模板清单
必填模板
| 文件 | 用途 | 时间 |
|---|---|---|
| identity.json | Agent身份设定 | 5分钟 |
| memory.json | 核心记忆 | 8分钟 |
| meta.json | 迁移包元数据 | 2分钟 |
可选模板
| 文件 | 用途 | 时间 |
|---|---|---|
| owner.json | 主人/用户信息 | 8分钟 |
| relations.json | 笔友关系 | 5分钟 |
| skills.json | 技能清单 | 3分钟 |
| style.md | 沟通风格 | 5-8分钟 |
| session-state.json | 状态迁移 | 5分钟 |
| migration-history.json | 迁移历史 | 3分钟 |
使用示例
完整示例见 EXAMPLES/xiaoyi-example/ 目录,包含:
- 小绎身份设定
- 核心记忆数据
- 主人林锋信息
- 笔友关系(扣扣酱等)
- 已安装技能清单
- 沟通风格定义
版本信息
- 当前版本:v1.0.5
- 格式版本:1.0
- 包版本:1.0.5
变更日志
见 CHANGES.md 文件
许可证
MIT License
安全使用建议
This package appears to be a legitimate migration template, but take these precautions before using: 1) Inspect scripts/scripts/migrate.py and scripts/generate-pack.py for any network operations (HTTP POST/PUT), filesystem reads beyond the template directory, or commands that could upload data. 2) Search the repository for hardcoded credentials or URLs (the docs include a bearer token example) and treat any embedded tokens as suspect — do not run with real secrets present. 3) When creating a migration ZIP, remove or redact secrets (API keys, passwords, tokens) and confirm third-party contacts have consented before including their info. 4) If you must run the scripts, do so in an isolated environment and consider instrumenting or sandboxing them to observe network activity. 5) If you plan to upload the package to any remote endpoint, verify the endpoint's ownership and purpose; prefer manual upload after inspection rather than an automated upload. If you want, I can scan the actual content of scripts/migrate.py and generate-pack.py for network calls and credential usage — paste their source or allow me to inspect them and I'll report specifics.
功能分析
Type: OpenClaw Skill
Name: agent-migration-pack-template
Version: 1.0.5
The skill bundle provides a standardized framework and Python utility scripts for migrating AI agent metadata, including identity, memory, and skills, between environments. The core scripts, scripts/generate-pack.py and scripts/migrate.py, perform local file operations such as reading markdown/JSON files, calculating SHA256 checksums, and creating ZIP archives using only Python standard libraries. No evidence of data exfiltration, network activity, or malicious execution was found; the code logic and instructions in SKILL.md are strictly aligned with the stated purpose of agent data management and portability.
能力评估
Purpose & Capability
Name/description match the delivered artifacts: templates, examples, a migration guide, and helper scripts (generate-pack.py, migrate.py) that implement packing/validation/interactive migration. None of the declared requirements (no env vars, no binaries) contradict the stated purpose.
Instruction Scope
SKILL.md and MIGRATION-GUIDE instruct the user/agent to fill template JSON files and run the provided Python scripts (e.g., migrate.py interactive / validate / pack). That scope is appropriate for a migration tool. However the docs also reference external data sources (AgentLink, Feishu, email) as places to gather fields and include an example curl that posts a package to an external endpoint — this raises the possibility that scripts or usage patterns could cause sensitive package contents to be uploaded or transmitted. Confirm that the scripts only do local packaging/validation unless you explicitly opt to upload.
Install Mechanism
No install spec is provided (instruction-only with shipped Python helper scripts). This is the lower-risk model; nothing is downloaded from external URLs or installed automatically. You still must run Python locally to use the scripts.
Credentials
The skill declares no required environment variables or credentials, which is reasonable. But SKILL-INFO.md contains a curl example with an Authorization: Bearer <token> to an external API (xiaping.coze.site). That embedded token in documentation is unexpected for a template and could (a) be a real leaked token, or (b) encourage users to upload sensitive ZIPs to a third party. Templates and guides also talk about reading data from email/Feishu/AgentLink without declaring how credentials are provided. Verify there are no hardcoded credentials in scripts and that any upload endpoints are intentional and trustworthy.
Persistence & Privilege
always is false and the skill does not request persistent privileges or modify other skills. It provides local scripts and templates only. No evidence of self-enablement or system-wide configuration changes in the metadata.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install agent-migration-pack-template - 安装完成后,直接呼叫该 Skill 的名称或使用
/agent-migration-pack-template触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.5
- Added comprehensive SKILL.md documentation, including an overview, layered architecture, core features, quick start guides, detailed template listings, and usage examples.
- Documentation now covers both basic and full migration workflows, with step-by-step instructions and estimated completion times.
- Sample directory and intended contents specified for user reference.
- Version, format, and license information now clearly listed.
- Change log location specified.
元数据
常见问题
Agent Migration Pack Template 是什么?
Agent Migration Pack Template helps migrate agents across platforms by preserving identity, memories, relationships, skills, and communication styles for sea... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 84 次。
如何安装 Agent Migration Pack Template?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-migration-pack-template」即可一键安装,无需额外配置。
Agent Migration Pack Template 是免费的吗?
是的,Agent Migration Pack Template 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Agent Migration Pack Template 支持哪些平台?
Agent Migration Pack Template 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Agent Migration Pack Template?
由 alexlinf(@alexlinf)开发并维护,当前版本 v1.0.5。
推荐 Skills