Octa.psd1

@{
    RootModule        = 'Octa.psm1'
    ModuleVersion     = '0.4.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 = 'Interactive menu restructured into two primary paths: Quick Assist (the curated default bundle, applied directly - was "Quick Clean") and Quick Custom (browse categories/tools yourself, unchanged below that level). The System Restore Point decision moved from once-per-applied-category to once per interactive session, immediately after language resolves and before the main menu ever renders - Windows only allows a new restore point every 24 hours, so repeating the "proceed without one?" prompt before every category in the same session was pure friction with no new information. Non-interactive use (Invoke-OctaCategory -Apply -Yes, bin/octa.ps1) is unchanged - only the interactive Invoke-Octa loop centralizes the decision. Invoke-OctaDiskCleanup gained a -NoRestorePoint parameter for consistency. See specs/010-quick-assist-restore-point for full detail.'
        }
    }
}