Feat: Add Claude tools support to plugin (#231)

* feat: Add settings for handle using tools in chat
* feat: Add Claude tools support
* fix: Add ai ignore to read project files list tool
* fix: Add ai ignore to read project file by name tool
* fix: Add ai ignore to read current opened files tool
This commit is contained in:
Petr Mironychev
2025-09-30 23:19:46 +02:00
committed by GitHub
parent 8aa37c5c8c
commit 10b924d78a
23 changed files with 948 additions and 84 deletions

View File

@ -19,7 +19,8 @@
#pragma once
#include "llmcore/BaseTool.hpp"
#include <context/IgnoreManager.hpp>
#include <llmcore/BaseTool.hpp>
namespace QodeAssist::Tools {
@ -37,6 +38,7 @@ public:
private:
QString findFileInProject(const QString &fileName) const;
QString readFileContent(const QString &filePath) const;
Context::IgnoreManager *m_ignoreManager;
};
} // namespace QodeAssist::Tools