diff --git a/cecli/commands/__init__.py b/cecli/commands/__init__.py index 8095f367e9e..45aeca16a17 100644 --- a/cecli/commands/__init__.py +++ b/cecli/commands/__init__.py @@ -8,6 +8,7 @@ from .add import AddCommand from .agent import AgentCommand from .agent_model import AgentModelCommand +from .agent_tree import AgentTreeCommand from .architect import ArchitectCommand from .ask import AskCommand from .clear import ClearCommand @@ -92,6 +93,7 @@ # Register commands CommandRegistry.register(AddCommand) +CommandRegistry.register(AgentTreeCommand) CommandRegistry.register(AgentCommand) CommandRegistry.register(AgentModelCommand) CommandRegistry.register(ArchitectCommand) @@ -167,6 +169,7 @@ __all__ = [ "AddCommand", + "AgentTreeCommand", "AgentCommand", "AgentModelCommand", "ArchitectCommand",