CodeCompass.Repo.psd1

@{
    RootModule        = 'CodeCompass.Repo.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'c3a7f1d2-8e4b-4c6a-b9d5-2f1e7a3c8b4d'
    Author            = 'The Code Kitchen'
    CompanyName       = 'The Code Kitchen'
    Copyright         = '(c) 2026 The Code Kitchen. All rights reserved.'
    Description       = 'Platform-agnostic repository health validation. Checks file presence, folder structure, documentation standards, and development lifecycle artifacts against configurable standards.'
    PowerShellVersion = '7.0'
    FunctionsToExport = @(
        'Test-CCRepoHealth'
        'Test-CCFilePresence'
        'Test-CCFolderStructure'
        'Test-CCDocumentation'
        'Test-CCDependencies'
        'Test-CCCIConfiguration'
        'Get-CCStandard'
        'Repair-CCRepo'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('CodeCompass', 'governance', 'repository', 'compliance', 'health', 'audit')
            LicenseUri   = 'https://github.com/The-Code-Kitchen/CodeCompass.Repo/blob/main/LICENSE'
            ProjectUri   = 'https://github.com/The-Code-Kitchen/CodeCompass.Repo'
            ReleaseNotes = 'Initial release — file presence, folder structure, documentation, CI, dependency, and security checks with three standard tiers.'
        }
    }
}