2025-12-15 19:02:31 +09:00
|
|
|
export const DEFAULT_TIMEOUT_MS = 60_000
|
|
|
|
|
|
2025-12-15 23:01:02 +09:00
|
|
|
export const BLOCKED_TMUX_SUBCOMMANDS = [
|
|
|
|
|
"capture-pane",
|
|
|
|
|
"capturep",
|
|
|
|
|
"save-buffer",
|
|
|
|
|
"saveb",
|
|
|
|
|
"show-buffer",
|
|
|
|
|
"showb",
|
|
|
|
|
"pipe-pane",
|
|
|
|
|
"pipep",
|
|
|
|
|
]
|
|
|
|
|
|
2025-12-17 00:38:38 +09:00
|
|
|
export const INTERACTIVE_BASH_DESCRIPTION = `Execute tmux commands. Use "omo-{name}" session pattern.
|
2025-12-15 19:02:31 +09:00
|
|
|
|
2025-12-17 00:38:38 +09:00
|
|
|
Blocked (use bash instead): capture-pane, save-buffer, show-buffer, pipe-pane.`
|