feat: support config skill registration (#9640)

Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com>
This commit is contained in:
Spoon
2026-01-29 18:47:06 +01:00
committed by GitHub
parent 5a56e8172f
commit 45ec3105b1
4 changed files with 38 additions and 3 deletions

View File

@@ -1633,6 +1633,15 @@ export type Config = {
subtask?: boolean
}
}
/**
* Additional skill folder paths to scan
*/
skills?: {
/**
* Additional paths to skill folders to scan
*/
paths?: Array<string>
}
watcher?: {
ignore?: Array<string>
}