chore(coding-agent): replace exa with eza in plan-mode extension

- replace the plan-mode safe-command allowlist entry from `exa` to `eza`
- closes #3160
This commit is contained in:
Ramiz Wachtler 2026-04-15 20:02:11 +02:00
parent c623ada3e2
commit 9acbe3181a
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@
### Fixed
- Fixed the `plan-mode` example extension to allow `eza` in the read-only bash allowlist instead of the deprecated `exa` command ([#3160](https://github.com/badlogic/pi-mono/issues/3160))
- Fixed Alt keybindings inside Zellij by skipping the Kitty keyboard protocol query there and enabling xterm `modifyOtherKeys` mode 2 directly ([#3163](https://github.com/badlogic/pi-mono/issues/3163))
- Fixed `/scoped-models` reordering to propagate into the `/model` scoped tab, preserving the user-defined scoped model order instead of re-sorting it ([#3217](https://github.com/badlogic/pi-mono/issues/3217))
- Fixed `session_shutdown` to fire on `SIGHUP` and `SIGTERM` in interactive, print, and RPC modes so extensions can run shutdown cleanup on those signal-driven exits ([#3212](https://github.com/badlogic/pi-mono/issues/3212))

View file

@ -91,7 +91,7 @@ const SAFE_PATTERNS = [
/^\s*rg\b/,
/^\s*fd\b/,
/^\s*bat\b/,
/^\s*exa\b/,
/^\s*eza\b/,
];
export function isSafeCommand(command: string): boolean {