export-agent

Solid

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.

AI & Automation 530 stars 115 forks Updated 5 days ago MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
91
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
97
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Export & Import Agents ## Verify Export After exporting, check the output matches expectations: ```bash # Verify export file was created and contains agent name gitagent export -f system-prompt -d ./my-agent | head -5 ``` ## Export Convert a gitagent definition to another framework: ```bash gitagent export -f <format> -d ./my-agent [-o output-file] ``` ### Formats | 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 | ### Examples ```bash # 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 ``` ## Import Convert existing agent frameworks into gitagent: ```bash gitagent import --from <format> <path> [-d target-dir] ``` ### Sources | Source | Input | What It Creates | |--------|-------|-----------------| | `claude` | CLA...

Details

Author
open-gitagent
Repository
open-gitagent/gitagent
Created
3 months ago
Last Updated
5 days ago
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category