AI-PowerShell-Assistant.psd1
|
@{ RootModule = 'AI-PowerShell-Assistant.psm1' ModuleVersion = '1.3.7' GUID = '8b7c4d21-6f3a-4e92-a851-2d9c7b5e1046' Author = 'AI PowerShell Assistant' Description = 'A local AI assistant for PowerShell that detects command errors and suggests fixes using Ollama. Suggested commands are never executed automatically.' PowerShellVersion = '5.1' FunctionsToExport = @('Invoke-AI','Invoke-AIErrorCheck','Start-AIAssistant','Stop-AIAssistant','Get-AIAssistantStatus','Initialize-AIConfiguration','Show-AISetupMenu') CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @('AI-On','AI-Off','AI-PSA','AI-Setup') PrivateData = @{ PSData = @{ Tags = @('PowerShell','AI','Ollama','Qwen','Assistant','LocalAI','DeveloperTools') LicenseUri = 'https://opensource.org/licenses/MIT' ProjectUri = 'https://github.com/anopochkin/AI-PowerShell-Assistant' ReleaseNotes = 'Fixed single-element array unrolling bug in PowerShell.' } } } |