SUPEROPTIX AI
Optimization and Quality layer for AI agents
Optimize agents. Connect over A2A. Ship with quality.
Make agents better, callable over A2A, and ready to ship.
What is SuperOptiX?
Agents built on different frameworks cannot call each other. A2A is the protocol that lets them, and SuperOptiX gives an agent an A2A interface without asking you to rewrite it.
Point it at an agent you already run. SuperOptiX reads its structure, works out the skills a calling agent would route on, and writes an Agent Card and a conformant server. Your code is not modified.
super a2a adapt --entrypoint mycrew:crew --framework crewai
uvicorn a2a.a2a_server:app --port 8000
Eight runtimes are supported: DSPy, CrewAI, the OpenAI Agents SDK, Pydantic AI, Google ADK, the Claude Agent SDK, DeepAgents and the Microsoft Agent Framework.
Being reachable is only half the problem. Whether another agent chooses to call yours depends on how its Agent Card describes it, so SuperOptiX measures that and improves it with GEPA. See Routing quality.
The protocol implementation records zero failures against the official A2A Technology Compatibility Kit. Every requirement the TCK exercises against the conformance harness passes, 73 of 73 at MUST. A live agent runs at a2a.superoptix.ai. See A2A conformance.
SuperOptiX also compiles agents from SuperSpec, a declarative YAML format, into native code for any supported runtime.
Core Workflow
# Pull agent
super agent pull developer
# Compile minimal pipeline
super agent compile developer --framework dspy
# Run
super agent run developer --framework dspy --goal "Design a migration plan"
# Optional optimization path
super agent compile developer --framework dspy --optimize
super agent optimize developer --framework dspy --auto light
What It Gives You
Adaptation without a rewrite
|
Verified conformance
|
Measured discoverability
|
Compilation from a specification
|
Local and Cloud Routing
# Local Ollama
super agent run developer --framework dspy --local --provider ollama --model qwen3.5:9b --goal "..."
# Cloud Google
super agent run developer --framework dspy --cloud --provider google-genai --model gemini-3.7-flash --goal "..."