src/Get-CciModule.ps1

function Get-CciModule {
<#
.SYNOPSIS
    List locally installed PowerShell modules whose name starts with 'Cci.' or matches -Name.
#>

    [CmdletBinding()]
    param(
        [string]$Name = 'Cci.*'
    )
    Get-InstalledPSResource -Name $Name -ErrorAction SilentlyContinue
}