name: agentpearl-exporter version: 1.0.0 description: Export the agent core from supported framework repositories into a small source-only zip for AI migration or cross-framework analysis. Use when the user wants to detect supported agent repos, extract only agent-defining files, produce a portability pack, or study identity, instruction, runtime, capability, multi-agent, and prompt-composition layers. metadata: license: MIT author: moshiwei homepage: https://github.com/moshiwei/AgentPearl tags: - agents - portability - migration - export - prompt-engineering openclaw: emoji: shell bins: zip: Optional but recommended for building export archives.
Use this skill to build a pure agent-core export from one or more supported repositories.
Use this skill when the user wants to:
7w4.net小葱技能站,你的AI助手技能库。
The bundled exporter detects these framework signatures:
nanoclaw-ts-bootstrapnanobot-py-templatesnullclaw-zig-bootstrapzeroclaw-rs-config-promptopenfang-rs-manifestscodex-rs-builtinsscripts/export-agent-core-pack.sh.README.txt, and MANIFEST.txt.references/AGENT_CORE.md to map the exported files into agent-core layers.Export the default supported repositories under ~/Documents/GitHub:
./scripts/export-agent-core-pack.sh
Export a subset of repositories:
./scripts/export-agent-core-pack.sh --repos nanobot,openfang
Choose a base directory, output directory, and archive name:
./scripts/export-agent-core-pack.sh \
--base-dir ~/Documents/GitHub \
--output-dir ./out \
--name agent-core-snapshot \
--repos codex,nullclaw
references/AGENT_CORE.md when you need the layer model for interpreting exported files.这个 Skill 质量不错,主要优点是文档清晰、使用简单,能自动识别不同框架并提取关键文件。脚本逻辑完整,支持批量导出和多参数配置。不足之处是依赖外部 zip 工具且提示不够明确,Windows 用户使用起来可能不太方便。