AgentHandoff.psm1
|
$Public = Get-ChildItem -Path "$PSScriptRoot\Public\*.ps1" -ErrorAction SilentlyContinue foreach ($file in $Public) { try { . $file.FullName } catch { Write-Error "Failed to load $($file.FullName): $_" } } Export-ModuleMember -Function @("Invoke-AgentHandoff", "Get-HandoffHealth", "Get-HandoffStats") |