fix: allow custom skill config bag

Co-authored-by: VACInc <3279061+VACInc@users.noreply.github.com>
This commit is contained in:
Peter Steinberger
2026-01-20 15:56:52 +00:00
parent 74f382f732
commit 76698ed296
5 changed files with 54 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ export type SkillConfig = {
enabled?: boolean;
apiKey?: string;
env?: Record<string, string>;
[key: string]: unknown;
config?: Record<string, unknown>;
};
export type SkillsLoadConfig = {