// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.Tools.Shell; /// /// Identifies the shell family the agent is talking to. /// public enum ShellFamily { /// POSIX-style shell (bash, sh, zsh). Posix, /// PowerShell (pwsh or Windows PowerShell). PowerShell, }