""" Agent Registry Module. Provides a central registry system for all available agents. Optimized for the standardized task processing pattern. """ from .agentBase import AgentBase from .agentRegistry import AgentRegistry, getAgentRegistry __all__ = ['AgentBase', 'AgentRegistry', 'getAgentRegistry']