Infra-LivingDoc.psd1
|
@{ RootModule = 'Infra-LivingDoc.psm1' ModuleVersion = '1.0.0' GUID = 'b8c9d0e1-5f46-4bc2-a3d4-9f0a1b2c3d45' Author = 'Larry Roberts, Independent Consultant' CompanyName = 'Independent' Copyright = '(c) 2026 Larry Roberts. All rights reserved.' Description = 'Living documentation system for IT environments. Feed in old docs, AI extracts verifiable facts, PowerShell checks them against reality. Keeps documentation accurate forever.' PowerShellVersion = '5.1' FunctionsToExport = @( 'Import-Documentation', 'Extract-EnvironmentFacts', 'Test-EnvironmentFacts', 'Get-DocumentationDrift', 'Update-Documentation' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('Documentation', 'LivingDoc', 'Audit', 'AI', 'Drift', 'Compliance', 'Infrastructure', 'Automation') LicenseUri = 'https://github.com/larro1991/Infra-LivingDoc/blob/master/LICENSE' ProjectUri = 'https://github.com/larro1991/Infra-LivingDoc' ReleaseNotes = 'Initial release of Infra-LivingDoc living documentation system.' } } } |