feat: Add list project files tool

This commit is contained in:
Petr Mironychev
2025-09-22 23:37:40 +02:00
parent d0f8c1098f
commit ff750c271a
11 changed files with 248 additions and 50 deletions

View File

@ -23,8 +23,9 @@
#include <QJsonArray>
#include <QJsonObject>
#include "ReadVisibleFilesTool.hpp"
#include "ListProjectFilesTool.hpp"
#include "ReadProjectFileByNameTool.hpp"
#include "ReadVisibleFilesTool.hpp"
namespace QodeAssist::Tools {
@ -38,6 +39,7 @@ void ToolsFactory::registerTools()
{
registerTool(new ReadVisibleFilesTool(this));
registerTool(new ReadProjectFileByNameTool(this));
registerTool(new ListProjectFilesTool(this));
LOG_MESSAGE(QString("Registered %1 tools").arg(m_tools.size()));
}