feat: Add find symbol tool

* improve other tools for reading context
This commit is contained in:
Petr Mironychev
2025-10-20 12:32:03 +02:00
parent 8a338ecb69
commit fe82b48bef
7 changed files with 876 additions and 70 deletions

View File

@ -25,9 +25,10 @@
#include <QJsonObject>
#include "EditProjectFileTool.hpp"
#include "FindSymbolTool.hpp"
#include "GetIssuesListTool.hpp"
#include "ListProjectFilesTool.hpp"
#include "ReadProjectFileByNameTool.hpp"
#include "ReadFileByPathTool.hpp"
#include "ReadVisibleFilesTool.hpp"
#include "SearchInProjectTool.hpp"
@ -47,6 +48,7 @@ void ToolsFactory::registerTools()
registerTool(new SearchInProjectTool(this));
registerTool(new GetIssuesListTool(this));
registerTool(new EditProjectFileTool(this));
registerTool(new FindSymbolTool(this));
LOG_MESSAGE(QString("Registered %1 tools").arg(m_tools.size()));
}