Merge pull request #722 from vrknetha/feat/slash-bash-command

feat(bash): add host-only /bash slash command
This commit is contained in:
Peter Steinberger
2026-01-13 07:18:35 +00:00
committed by GitHub
11 changed files with 551 additions and 1 deletions

View File

@@ -1244,6 +1244,10 @@ export type CommandsConfig = {
native?: NativeCommandsSetting;
/** Enable text command parsing (default: true). */
text?: boolean;
/** Allow bash chat command (`!`; `/bash` alias) (default: false). */
bash?: boolean;
/** How long bash waits before backgrounding (default: 2000; 0 backgrounds immediately). */
bashForegroundMs?: number;
/** Allow /config command (default: false). */
config?: boolean;
/** Allow /debug command (default: false). */