dev-loop.psd1
|
@{ # Module identity RootModule = 'dev-loop.psm1' ModuleVersion = '0.3.0' GUID = '32c17d8f-3241-4f4e-b961-f2c2f2aed684' # Metadata Author = 'Mark Garner' Description = 'Automated development loop powered by GitHub Copilot CLI. Processes numbered spec files through plan, build, review, and test phases using autonomous agents.' PowerShellVersion = '7.0' # Exports FunctionsToExport = @('Invoke-DevLoop') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() # Gallery metadata PrivateData = @{ PSData = @{ Tags = @('copilot', 'automation', 'dev-loop', 'codegen', 'agents') LicenseUri = 'https://github.com/markgar/dev-loop/blob/main/LICENSE' ProjectUri = 'https://github.com/markgar/dev-loop' HelpUri = 'https://github.com/markgar/dev-loop#readme' } } } |