mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 20:50:34 +00:00
fix(cli): guard experimental skills config lookup
This commit is contained in:
parent
0e769e100b
commit
a47bdc0b06
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ export class BuiltinCommandLoader implements ICommandLoader {
|
|||
quitCommand,
|
||||
restoreCommand(this.config),
|
||||
resumeCommand,
|
||||
...(this.config?.getExperimentalSkills() ? [skillsCommand] : []),
|
||||
...(this.config?.getExperimentalSkills?.() ? [skillsCommand] : []),
|
||||
statsCommand,
|
||||
summaryCommand,
|
||||
themeCommand,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue