Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cecli/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -92,6 +93,7 @@

# Register commands
CommandRegistry.register(AddCommand)
CommandRegistry.register(AgentTreeCommand)
CommandRegistry.register(AgentCommand)
CommandRegistry.register(AgentModelCommand)
CommandRegistry.register(ArchitectCommand)
Expand Down Expand Up @@ -167,6 +169,7 @@

__all__ = [
"AddCommand",
"AgentTreeCommand",
"AgentCommand",
"AgentModelCommand",
"ArchitectCommand",
Expand Down
Loading