From c44c4143d1a58b1d5d98cf757a90eaaff3873977 Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 14 Jul 2026 13:14:17 -0700 Subject: [PATCH] fixed --- cecli/commands/__init__.py | 3 +++ 1 file changed, 3 insertions(+) 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",