PSUnifiedAgents.psd1

@{
    RootModule        = 'PSUnifiedAgents.psm1'
    ModuleVersion     = '0.1.0'
    GUID              = 'f0d7a9c6-4d92-4bd3-8f92-2d9b8f31e4d7'
    Author            = 'Douglas Finke'
    CompanyName       = 'Douglas Finke'
    Copyright         = '© 2026 Douglas Finke. All rights reserved.'
    Description       = 'Unified PowerShell agent sessions across multiple AI backends.'
    PowerShellVersion = '7.2'

    FunctionsToExport = @(
        'Get-AgentSession'
        'Receive-AgentSession'
        'Remove-AgentSession'
        'Start-AgentSession'
        'Wait-AgentSession'
    )

    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()

    PrivateData = @{
        PSData = @{
            Tags         = @('AI', 'Agents', 'Codex', 'Copilot', 'Claude', 'PowerShell')
            ProjectUri   = ''
            LicenseUri   = ''
            ReleaseNotes = 'Initial public skeleton for PSUnifiedAgents.'
        }
    }
}