mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 02:49:12 -04:00
feat: Add skills feature for tool and chat calling (#351)
This commit is contained in:
25
settings/SkillsSettings.hpp
Normal file
25
settings/SkillsSettings.hpp
Normal file
@@ -0,0 +1,25 @@
|
||||
// Copyright (C) 2026 Petr Mironychev
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <utils/aspects.h>
|
||||
|
||||
namespace QodeAssist::Settings {
|
||||
|
||||
class SkillsSettings : public Utils::AspectContainer
|
||||
{
|
||||
public:
|
||||
SkillsSettings();
|
||||
|
||||
Utils::BoolAspect enableSkills{this};
|
||||
|
||||
Utils::StringAspect globalSkillRoots{this};
|
||||
|
||||
static QStringList splitLines(const QString &value);
|
||||
static QStringList splitPaths(const QString &value);
|
||||
};
|
||||
|
||||
SkillsSettings &skillsSettings();
|
||||
|
||||
} // namespace QodeAssist::Settings
|
||||
Reference in New Issue
Block a user