chore: rename /bashes to /bg (#232)

This commit is contained in:
Kian Jones
2025-12-16 11:44:44 -05:00
committed by GitHub
parent 0062090df3
commit 0630ac4508
6 changed files with 8 additions and 8 deletions

View File

@@ -2104,8 +2104,8 @@ export default function App({
return { submitted: true };
}
// Special handling for /bashes command - show background shell processes
if (msg.trim() === "/bashes") {
// Special handling for /bg command - show background shell processes
if (msg.trim() === "/bg") {
const { backgroundProcesses } = await import(
"../tools/impl/process_manager"
);

View File

@@ -94,7 +94,7 @@ export const commands: Record<string, Command> = {
return "Downloading agent file...";
},
},
"/bashes": {
"/bg": {
desc: "Show background shell processes",
handler: () => {
// Handled specially in App.tsx to show background processes