Octa.psd1

@{
    RootModule        = 'Octa.psm1'
    ModuleVersion     = '0.6.0'
    GUID              = '9c058d6c-875e-4c00-818e-9eefcc90c77b'
    Author            = 'Octa contributors'
    CompanyName       = 'Octa'
    Copyright         = '(c) Octa contributors. MIT License.'
    Description       = 'Open-source, local-only Windows 11 debloat toolkit. No telemetry, no ads, fully auditable PowerShell.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'Invoke-Octa',
        'Invoke-OctaCategory',
        'Invoke-OctaQuickClean',
        'Undo-OctaRun',
        'Get-OctaCategory',
        'Show-OctaDashboard',
        'Invoke-OctaStartupManager',
        'Invoke-OctaTaskBrowser',
        'Invoke-OctaDiskCleanup',
        'Get-OctaCleanupTargets',
        'Invoke-OctaUninstaller',
        'Invoke-OctaNetworkCleanup',
        'Invoke-OctaScheduler',
        'Invoke-OctaSoftwareUpdater',
        'Show-OctaHistory',
        'Show-OctaDiskUsage',
        'Show-OctaDiskHealth',
        'Invoke-OctaMalwareScan'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('windows11', 'debloat', 'privacy', 'cli')
            LicenseUri   = 'https://github.com/jpiribe/octa/blob/master/LICENSE'
            ProjectUri   = 'https://github.com/jpiribe/octa'
            ReleaseNotes = "New network-latency category: Nagle's Algorithm disabled per active network interface (TcpAckFrequency/TCPNoDelay), Energy Efficient Ethernet disabled per physical adapter (discovered via Get-NetAdapterAdvancedProperty, not hardcoded per vendor). Performance category extended with the documented MMCSS 'Games' task profile (GPU Priority/Priority/Scheduling Category) - honest drift-detection/repair, since these already match Windows' shipped defaults on most machines. Services category extended with SysMain (Superfetch). See specs/011-competitive-latency-tuning for full detail."
        }
    }
}