From b7e9ff1f210f8d45676f2a44b33d5e6c4bc1cd9e Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 12 Oct 2025 02:01:46 -0400 Subject: [PATCH] feat(cli): add general commands handler to agent - Introduced a new source file for general commands in the agent's command handling structure. - This addition enhances the command management capabilities of the CLI, allowing for more comprehensive command processing. Benefits: - Improved modularity and extensibility of command handling within the agent, facilitating future feature additions. --- src/cli/agent.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/agent.cmake b/src/cli/agent.cmake index b2365c4c..8804470e 100644 --- a/src/cli/agent.cmake +++ b/src/cli/agent.cmake @@ -35,6 +35,7 @@ set(YAZE_AGENT_SOURCES cli/handlers/agent.cc cli/handlers/command_handlers.cc cli/handlers/agent/simple_chat_command.cc + cli/handlers/agent/general_commands.cc cli/handlers/game/overworld_inspect.cc cli/handlers/game/message.cc cli/handlers/rom/mock_rom.cc