ワンクリックで
export-agent
Help users export agents to other frameworks and import from existing tools
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Help users export agents to other frameworks and import from existing tools
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Guide users through agent.yaml configuration, SOUL.md writing, and directory structure
Help users install gitagent and create their first agent from scratch
Help users register their agent on the gitagent public registry at registry.gitagent.sh
Help users search, install, create, and manage agent skills
Help users run agents with different adapters — Claude, OpenAI, Lyzr, GitHub Models, and more
SOC 職業分類に基づく
| name | export-agent |
| description | Help users export agents to other frameworks and import from existing tools |
| license | MIT |
| metadata | {"author":"gitagent","version":"1.0.0","category":"interop"} |
When a user wants to convert their agent to another framework format, or import an existing agent into gitagent.
Convert a gitagent definition to another framework:
gitagent export -f <format> -d ./my-agent [-o output-file]
| Format | Output | Use Case |
|---|---|---|
system-prompt | Markdown | Universal — paste into any LLM |
claude-code | CLAUDE.md | Drop into a Claude Code project |
openai | Python | Run with OpenAI Agents SDK |
crewai | YAML | Run with CrewAI |
openclaw | JSON + MD | Run with OpenClaw |
nanobot | JSON + MD | Run with Nanobot |
lyzr | JSON | Create agent on Lyzr Studio |
github | JSON | Call GitHub Models API |
# Get a system prompt for any LLM
gitagent export -f system-prompt -d ./my-agent
# Generate a CLAUDE.md
gitagent export -f claude-code -d ./my-agent -o CLAUDE.md
# Generate Python code for OpenAI
gitagent export -f openai -d ./my-agent -o agent.py
# Preview what Lyzr API will receive
gitagent export -f lyzr -d ./my-agent
# Preview GitHub Models payload
gitagent export -f github -d ./my-agent
Convert existing agent frameworks into gitagent:
gitagent import --from <format> <path> [-d target-dir]
| Source | Input | What It Creates |
|---|---|---|
claude | CLAUDE.md, .claude/skills/ | agent.yaml, SOUL.md, RULES.md, skills |
cursor | .cursorrules | agent.yaml, SOUL.md, AGENTS.md |
crewai | crew.yaml | agent.yaml, SOUL.md, agents/ |
# Import a Claude Code project
gitagent import --from claude ./my-project
# Import from Cursor
gitagent import --from cursor ./.cursorrules
# Import CrewAI config
gitagent import --from crewai ./crew.yaml -d ./imported