๐Ÿ”„ 16 Frameworks ยท Open Standards

Framework Agnostic
by Design

Import agents from any framework. Enhance with enterprise features. Export to any target. No vendor lock-in, ever.

๐Ÿ“ฅ

Import from Anywhere

Built agents in CrewAI, LangGraph, or AutoGen? Import them directly.

โšก

Enhance with Enterprise

Add SSO, audit logging, guardrails, and monitoring automatically.

๐Ÿ“ค

Export Anywhere

Need to run on-premise with a specific framework? Export production-ready code.

๐Ÿ”“

Zero Lock-in

Your agents are yours. Take them anywhere, anytime. We're the platform, not the cage.

Every major AI agent framework

Full bidirectional import/export โ€” from Python source or from declarative YAML/JSON config.

๐Ÿค–

OpenAI Agents SDK

Handoffs & guardrails

Import Export
๐Ÿ‘ฅ

CrewAI

Role-based crews

Import Export
๐Ÿ“Š

LangGraph

Stateful workflows

Import Export
๐Ÿ’ฌ

AutoGen

Absorbed into MAF ยท import to migrate off

Import Export
๐Ÿ”—

LangChain

Tool chains

Import Export
๐Ÿง 

Anthropic Claude

Claude API native

Import Export
๐ŸชŸ

Semantic Kernel

Absorbed into MAF ยท import to migrate off

Import Export
๐ŸŒพ

Haystack

NLP pipelines

Import Export
๐Ÿฆ™

LlamaIndex

RAG & indexing

Import Export
๐Ÿ“

Pydantic AI

Type-safe agents

Import Export
๐Ÿงฌ

DSPy

Prompt optimization

Import Export
๐Ÿ”ท

Microsoft Agent Framework

Successor to AutoGen + SK

Import Export
๐Ÿ”บ

Google ADK

GCP-native, MCP + A2A

Import Export
๐Ÿงฉ

AWS Strands

Model-driven, Bedrock-native

Import Export
โšก

Mastra

TypeScript-first agents

Import Export
๐Ÿ“œ

Agent Spec

Declarative interchange format

Import Export
โž•

More coming

Request a framework

Soon

Portability isn't a feature we sell. It's the floor.

Import/export keeps your agent definitions yours. These standards keep the runtime around them open too — every one of them is implemented in the platform, not on a roadmap.

๐Ÿ”Œ

MCP

Model Context Protocol — tools and data, spec 2026-07-28

๐Ÿค

A2A

Agent-to-agent, with a published agent card

๐Ÿง 

Agent Skills

SKILL.md, with progressive disclosure

๐Ÿ“‘

AGENTS.md

The instruction convention, read and written

๐Ÿ—‚๏ธ

OASF

Open Agentic Schema Framework 1.1.0

๐Ÿ“ˆ

OTel GenAI

OpenTelemetry semantic conventions for traces

Agents are also defined in configuration, not only in code. MeetLoyd reads declarative YAML and JSON definitions directly — a repository whose agents live in agents.yaml imports without a line of Python to parse.

What maps to what

MeetLoyd concepts translate to each framework's native patterns.

Framework Agents Teams Tasks Workflows Tools Handoffs
OpenAI Agents SDK โœ“ โ€” โ€” โœ“ โœ“ โœ“
CrewAI โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
LangGraph โœ“ โ€” โ€” โœ“ โœ“ โœ“
AutoGen โœ“ โœ“ โ€” โ€” โœ“ โ€”
LangChain โœ“ โ€” โ€” โœ“ โœ“ โ€”
Anthropic Claude โœ“ โœ“ โ€” โœ“ โœ“ โœ“
Semantic Kernel โœ“ โ€” โ€” โœ“ โœ“ โ€”
Haystack โœ“ โ€” โ€” โœ“ โœ“ โ€”
LlamaIndex โœ“ โ€” โ€” โœ“ โœ“ โ€”
Pydantic AI โœ“ โ€” โ€” โ€” โœ“ โ€”
DSPy โœ“ โœ“ โ€” โœ“ โœ“ โ€”

Match framework to use case

Each framework excels at specific patterns. We support them all.

Stateful workflows

Complex multi-step processes with conditional routing and cycles.

LangGraph

Role-based teams

Agents with distinct roles collaborating on tasks.

CrewAI

Multi-agent debate

Agents discussing and debating to reach conclusions.

AutoGen

Enterprise .NET

Agents in Microsoft ecosystems with Azure services.

Semantic Kernel

Type-safe outputs

Agents with validated, typed responses.

Pydantic AI

RAG applications

Retrieval-augmented generation with document indexing.

LlamaIndex

Prompt optimization

Programmatic prompt tuning and optimization.

DSPy

Claude-native apps

Direct Anthropic API with native tool use.

Anthropic Claude

Three lines to migrate

Import, enhance, export. It's that simple.

Cross-framework migration example

# Import from AutoGen
from meetloyd import import_agents, export_agents

autogen_config = import_agents(
    code=open("autogen_agents.py").read(),
    framework="autogen"
)

# Enhance with MeetLoyd enterprise features
for agent in autogen_config.agents:
    agent.guardrails = [pii_filter, content_safety]
    agent.memory = {"type": "vector", "enabled": True}
    agent.audit_logging = True

# Export to LangGraph for production
langgraph_export = export_agents(
    agents=autogen_config.agents,
    teams=autogen_config.teams,
    framework="langgraph",
    format="code"
)

# Generated files ready to deploy
for file in langgraph_export.files:
    print(f"Generated: {file.path}")

Ready to unify your agents?

Import, enhance, and export across all 16 frameworks.