feat: add /commands reload to refresh custom TOML commands (#19078)

This commit is contained in:
Krushna Korade
2026-02-15 01:55:30 +05:30
committed by GitHub
parent 5559d40f31
commit bcd547baf6
5 changed files with 152 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ import { authCommand } from '../ui/commands/authCommand.js';
import { bugCommand } from '../ui/commands/bugCommand.js';
import { chatCommand, debugCommand } from '../ui/commands/chatCommand.js';
import { clearCommand } from '../ui/commands/clearCommand.js';
import { commandsCommand } from '../ui/commands/commandsCommand.js';
import { compressCommand } from '../ui/commands/compressCommand.js';
import { copyCommand } from '../ui/commands/copyCommand.js';
import { corgiCommand } from '../ui/commands/corgiCommand.js';
@@ -89,6 +90,7 @@ export class BuiltinCommandLoader implements ICommandLoader {
: chatCommand.subCommands,
},
clearCommand,
commandsCommand,
compressCommand,
copyCommand,
corgiCommand,