Octa.psd1

@{
    RootModule        = 'Octa.psm1'
    ModuleVersion     = '0.3.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 = 'Major pre-release hardening pass across the whole codebase. Highlights: fixed multiple menu/console redraw bugs (stale text bleeding across screens, screens piling up instead of replacing in place, a Clear-OctaRows crash) on both ConPTY and classic conhost terminals; fixed 13+ real bugs from an exhaustive audit including a destructive silent-failure path where a category reported Success despite an action never actually applying; stopped claiming a restore point was skipped when none was ever offered; fixed a permanently broken (not flaky) Monthly scheduler trigger; fixed a real Int32 overflow in Recycle Bin size measurement; fixed an ExplorerStart elevation gap where HKLM-only registry actions were silently offered and silently failed without admin rights; fixed a regex false positive that misidentified a Microsoft system service as ASUS bloatware; fixed a 20x service-scan performance regression (bulk CIM query instead of one query per catalog entry); closed an automatic-variable-shadowing landmine ($matches vs $Matches); restored UTF-8 BOM/ASCII discipline on two files missing it. Full Pester suite: 229/229 passing.'
        }
    }
}