system-prompts-and-models-o.../PowerShell_AI_Agent/scripts/simple-main.ps1
dopeuni444 d43632a49a Removes outdated prompt files
Removes the `Chat Prompt.txt`, `VSCode Agent/Prompt.txt`, `Warp.dev/Prompt.txt`, and `v0 Prompts and Tools/Prompt.txt` files.

These files likely contain outdated prompts or configurations that are no longer needed in the current project. Removing them helps to clean up the codebase and prevent potential confusion or conflicts.
2025-07-31 01:45:01 +04:00

145 lines
5.8 KiB
PowerShell

# PowerShell AI Agent - Simple Main Script
# Version: 1.0
param(
[string]$Command = "",
[switch]$Voice,
[switch]$Autopilot,
[switch]$Help,
[string]$ConfigPath = ".\config\agent-config.json"
)
# Show help if requested
if ($Help) {
Write-Host "PowerShell AI Agent - Help" -ForegroundColor Cyan
Write-Host "==========================" -ForegroundColor Cyan
Write-Host ""
Write-Host "Usage: .\simple-main.ps1 [options]" -ForegroundColor White
Write-Host ""
Write-Host "Options:" -ForegroundColor White
Write-Host " -Command <string> Command to process" -ForegroundColor White
Write-Host " -Voice Enable voice recognition" -ForegroundColor White
Write-Host " -Autopilot Enable autopilot mode" -ForegroundColor White
Write-Host " -Help Show this help message" -ForegroundColor White
Write-Host " -ConfigPath <string> Path to configuration file" -ForegroundColor White
Write-Host ""
Write-Host "Examples:" -ForegroundColor White
Write-Host " .\simple-main.ps1 -Command 'Get-ChildItem'" -ForegroundColor White
Write-Host " .\simple-main.ps1 -Voice -Command 'Show me the processes'" -ForegroundColor White
Write-Host " .\simple-main.ps1 -Autopilot -Command 'Monitor system performance'" -ForegroundColor White
Write-Host ""
Write-Host "Features:" -ForegroundColor White
Write-Host " - Voice recognition and synthesis" -ForegroundColor White
Write-Host " - Autopilot mode for autonomous execution" -ForegroundColor White
Write-Host " - Memory system for persistent learning" -ForegroundColor White
Write-Host " - AI-powered command analysis" -ForegroundColor White
Write-Host " - Cross-platform PowerShell 7 support" -ForegroundColor White
return
}
# Load configuration
Write-Host "Loading configuration..." -ForegroundColor Yellow
try {
if (Test-Path $ConfigPath) {
$config = Get-Content $ConfigPath | ConvertFrom-Json
Write-Host "Configuration loaded successfully" -ForegroundColor Green
} else {
Write-Host "Configuration file not found, using defaults" -ForegroundColor Yellow
$config = @{
Voice = @{ Enabled = $false }
Autopilot = @{ Enabled = $false }
Memory = @{ Enabled = $true }
AI = @{ Model = "gpt-4" }
}
}
}
catch {
Write-Host "Failed to load configuration: $_" -ForegroundColor Red
exit 1
}
# Initialize memory system
Write-Host "Initializing memory system..." -ForegroundColor Yellow
$memoryPath = ".\data\memory.json"
try {
if (!(Test-Path $memoryPath)) {
@{
entries = @()
lastUpdated = (Get-Date).ToString("yyyy-MM-dd HH:mm:ss")
version = "1.0"
} | ConvertTo-Json -Depth 10 | Set-Content $memoryPath
}
Write-Host "Memory system initialized" -ForegroundColor Green
}
catch {
Write-Host "Failed to initialize memory system: $_" -ForegroundColor Red
}
# Process command if provided
if ($Command) {
Write-Host "Processing command: $Command" -ForegroundColor Cyan
# Simulate AI analysis
$analysis = @{
intent = "general"
confidence = 0.8
suggestedActions = @("Get-Help", "Get-Command", "Get-Module")
response = "I understand your request. Here are some general PowerShell commands:"
}
# Generate response
Write-Host ""
Write-Host "PowerShell AI Agent Response" -ForegroundColor White
Write-Host "=============================" -ForegroundColor White
Write-Host ""
Write-Host "Command: $Command" -ForegroundColor White
Write-Host "Intent: $($analysis.intent)" -ForegroundColor White
Write-Host "Confidence: $($analysis.confidence)" -ForegroundColor White
Write-Host ""
Write-Host $analysis.response -ForegroundColor White
Write-Host ""
Write-Host "Suggested Actions:" -ForegroundColor White
foreach ($action in $analysis.suggestedActions) {
Write-Host " - $action" -ForegroundColor White
}
Write-Host ""
}
# Start interactive mode if no command provided
else {
Write-Host "PowerShell AI Agent started in interactive mode" -ForegroundColor Green
Write-Host "Type 'exit' to quit, 'help' for assistance" -ForegroundColor Cyan
# Interactive command loop
while ($true) {
try {
$userCommand = Read-Host "`nPowerShell AI Agent>"
if ($userCommand.ToLower() -eq "exit") {
break
}
elseif ($userCommand.ToLower() -eq "help") {
Write-Host "Available commands:" -ForegroundColor Cyan
Write-Host " help - Show this help" -ForegroundColor White
Write-Host " exit - Exit the agent" -ForegroundColor White
Write-Host " status - Show system status" -ForegroundColor White
Write-Host " any PowerShell command - Process with AI analysis" -ForegroundColor White
}
elseif ($userCommand.ToLower() -eq "status") {
Write-Host "System Status:" -ForegroundColor Green
Write-Host " PowerShell Version: $($PSVersionTable.PSVersion)" -ForegroundColor White
Write-Host " Voice Recognition: $($config.Voice.Enabled)" -ForegroundColor White
Write-Host " Autopilot Mode: $($config.Autopilot.Enabled)" -ForegroundColor White
}
else {
Write-Host "Processing: $userCommand" -ForegroundColor Cyan
# Simulate command processing
Write-Host "Command processed successfully" -ForegroundColor Green
}
}
catch {
Write-Error "Error processing command: $_"
}
}
}
Write-Host "PowerShell AI Agent shutting down..." -ForegroundColor Green