mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 04:30:48 +00:00
Add skills command with completion support
This commit is contained in:
parent
f8aecb2631
commit
9653dc90d5
8 changed files with 207 additions and 6 deletions
|
|
@ -31,6 +31,7 @@ import { quitCommand } from '../ui/commands/quitCommand.js';
|
|||
import { restoreCommand } from '../ui/commands/restoreCommand.js';
|
||||
import { resumeCommand } from '../ui/commands/resumeCommand.js';
|
||||
import { settingsCommand } from '../ui/commands/settingsCommand.js';
|
||||
import { skillsCommand } from '../ui/commands/skillsCommand.js';
|
||||
import { statsCommand } from '../ui/commands/statsCommand.js';
|
||||
import { summaryCommand } from '../ui/commands/summaryCommand.js';
|
||||
import { terminalSetupCommand } from '../ui/commands/terminalSetupCommand.js';
|
||||
|
|
@ -78,6 +79,7 @@ export class BuiltinCommandLoader implements ICommandLoader {
|
|||
quitCommand,
|
||||
restoreCommand(this.config),
|
||||
resumeCommand,
|
||||
...(this.config?.getExperimentalSkills() ? [skillsCommand] : []),
|
||||
statsCommand,
|
||||
summaryCommand,
|
||||
themeCommand,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue