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",
|
|
|
|
|
]
|
|
|
|
|
|
2026-01-16 14:01:29 +09:00
|
|
|
export const INTERACTIVE_BASH_DESCRIPTION = `WARNING: This is TMUX ONLY. Pass tmux subcommands directly (without 'tmux' prefix).
|
2025-12-15 19:02:31 +09:00
|
|
|
|
2026-01-16 14:01:29 +09:00
|
|
|
Examples: new-session -d -s omo-dev, send-keys -t omo-dev "vim" Enter
|
2025-12-30 15:15:43 +09:00
|
|
|
|
2026-01-16 14:01:29 +09:00
|
|
|
For TUI apps needing ongoing interaction (vim, htop, pudb). One-shot commands → use Bash with &.`
|