Export Agent

Converts agent definitions between Claude, OpenAI, CrewAI, and other frameworks.

Tested · Didn't pass

Test report

Verdict
Tested · Didn't pass
Tested
Jul 13, 2026
Environment
Claude Code 2.x (agent harness)
Upstream re-checked
Aug 10, 2026 · 31a1358

Two verified defects dominate: (1) every documented command needs an external `opengap` npm CLI that neither the install step (a bare `cp -r` of SKILL.md) nor SKILL.md itself ever mentions installing — a fresh install fails at the first command with `command not found: opengap`, rescued only by running `npx @open-gitagent/opengap`; (2) confirmed OVERCLAIM — the description promises export to LangChain/AutoGen, but the real CLI rejects both as 'Unknown format' (it supports 14 other formats instead). In the A/B, the skill (once forced to run via npx) produced faithful CLAUDE.md + system-prompt exports but injected a stray literal '# === CLAUDE.md ===' banner into the file, while the base arm did the same conversion by hand cleaner and with proper structure — the skill did not beat manual conversion on this task.

Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works

  • Installs cleanly 2/5
  • Triggers reliably 2/5
  • Output vs. baseline 4/10
  • Docs & honesty 1/5

What Export Agent does

Converts agent definitions between frameworks — exports to Claude Code, OpenAI, CrewAI, Lyzr, and GitHub Models formats, and imports from Claude, Cursor, and CrewAI projects. Use when the user wants to convert an agent, migrate to another framework, export to LangChain/AutoGen/CrewAI, or import from existing automation tools.

How to install Export Agent

git clone https://github.com/open-gitagent/opengap
cd opengap
mkdir -p ~/.claude/skills
cp -r examples/gitagent-helper/skills/export-agent ~/.claude/skills/export-agent

Skills live in ~/.claude/skills/ (global) or .claude/skills/ (per-project). Restart Claude Code after installing.

Commands — how to trigger Export Agent

  • /export-agent Converts agent definitions between Claude, OpenAI, CrewAI, and other frameworks.

It also activates on plain-language prompts like these:

  • Export this agent definition to CrewAI format
  • Migrate this Cursor agent to Claude Code
  • Import this agent from an existing automation tool

Frequently asked questions

Is the Export Agent skill free?
Yes. The skill itself is free from open-gitagent/opengap. SkillProof publishes the install command and an independent test verdict at no cost.
Does Export Agent work with Claude Code?
We tested it with Claude Code 2.x (agent harness) on Jul 13, 2026. Verdict: Tested · Didn't pass. Two verified defects dominate: (1) every documented command needs an external `opengap` npm CLI that neither the install step (a bare `cp -r` of SKILL.md) nor SKILL.md itself ever mentions installing — a fresh install fails at the first command with `command not found: opengap`, rescued only by running `npx @open-gitagent/opengap`; (2) confirmed OVERCLAIM — the description promises export to LangChain/AutoGen, but the real CLI rejects both as 'Unknown format' (it supports 14 other formats instead). In the A/B, the skill (once forced to run via npx) produced faithful CLAUDE.md + system-prompt exports but injected a stray literal '# === CLAUDE.md ===' banner into the file, while the base arm did the same conversion by hand cleaner and with proper structure — the skill did not beat manual conversion on this task.
How do I install Export Agent?
Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
Can I use Export Agent with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.