agentsclimarketplace

Export agent

Skill open-gitagent/opengap/examples/gitagent-helper/skills/export-agent

A framework-agnostic, git-native standard for defining AI agents

Install
npx -y skills add open-gitagent/opengap --skill export-agent

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

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.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.3 KB, as published. Nobody here has run it

Export & Import Agents

Verify Export

After exporting, check the output matches expectations:

# Verify export file was created and contains agent name
opengap export -f system-prompt -d ./my-agent | head -5

Export

Convert a gitagent definition to another framework:

opengap export -f <format> -d ./my-agent [-o output-file]

Formats

FormatOutputUse Case
system-promptMarkdownUniversal — paste into any LLM
claude-codeCLAUDE.mdDrop into a Claude Code project
openaiPythonRun with OpenAI Agents SDK
crewaiYAMLRun with CrewAI
openclawJSON + MDRun with OpenClaw
nanobotJSON + MDRun with Nanobot
lyzrJSONCreate agent on Lyzr Studio
githubJSONCall GitHub Models API

Examples

# Get a system prompt for any LLM
opengap export -f system-prompt -d ./my-agent

# Generate a CLAUDE.md
opengap export -f claude-code -d ./my-agent -o CLAUDE.md

# Generate Python code for OpenAI
opengap export -f openai -d ./my-agent -o agent.py

# Preview what Lyzr API will receive
opengap export -f lyzr -d ./my-agent

# Preview GitHub Models payload
opengap export -f github -d ./my-agent

Import

Convert existing agent frameworks into gitagent:

opengap import --from <format> <path> [-d target-dir]

Sources

SourceInputWhat It Creates
claudeCLAUDE.md, .claude/skills/agent.yaml, SOUL.md, RULES.md, skills
cursor.cursorrulesagent.yaml, SOUL.md, AGENTS.md
crewaicrew.yamlagent.yaml, SOUL.md, agents/

Examples

# Import a Claude Code project
opengap import --from claude ./my-project

# Import from Cursor
opengap import --from cursor ./.cursorrules

# Import CrewAI config
opengap import --from crewai ./crew.yaml -d ./imported

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.