Stop all running processes and proxies
Stops all running agnt processes and proxies globally. Use this to cleanly shut down all active sessions across all directories.
/plugin marketplace add standardbeagle/agnt/plugin install agnt@standardbeagle-toolsStop all running agnt processes and proxies.
List all running processes:
proc {action: "list", global: true}
List all running proxies:
proxy {action: "list", global: true}
Stop each proxy first (to cleanly disconnect browsers):
proxy {action: "stop", id: "<proxy_id>"}
Repeat for each proxy.
Stop each process:
proc {action: "stop", process_id: "<process_id>"}
Repeat for each process.
Confirm to the user that all processes and proxies have been stopped.
Note: This uses global: true to include items from all directories, not just the current one.