fix: update skill resolution to support disabled skills functionality

This commit is contained in:
Muhammad Noor Misyuari
2026-02-01 23:54:32 +07:00
parent 2236a940f8
commit ba2a9a9051
7 changed files with 12 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ interface SessionMessage {
export async function resolveSkillContent(
skills: string[],
options: { gitMasterConfig?: GitMasterConfig; browserProvider?: BrowserAutomationProvider }
options: { gitMasterConfig?: GitMasterConfig; browserProvider?: BrowserAutomationProvider, disabledSkills?: Set<string> }
): Promise<{ content: string | undefined; error: string | null }> {
if (skills.length === 0) {
return { content: undefined, error: null }