system-prompts-and-models-o.../PowerShell_AI_Agent/test.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

34 lines
1.1 KiB
PowerShell

# Simple test script for PowerShell AI Agent
Write-Host "PowerShell AI Agent Test" -ForegroundColor Green
Write-Host "========================" -ForegroundColor Green
# Test basic functionality
Write-Host "Testing basic functionality..." -ForegroundColor Yellow
# Test configuration loading
$configPath = ".\config\agent-config.json"
if (Test-Path $configPath) {
Write-Host "✅ Configuration file exists" -ForegroundColor Green
$config = Get-Content $configPath | ConvertFrom-Json
Write-Host "✅ Configuration loaded successfully" -ForegroundColor Green
} else {
Write-Host "❌ Configuration file not found" -ForegroundColor Red
}
# Test memory system
$memoryPath = ".\data\memory.json"
if (Test-Path $memoryPath) {
Write-Host "✅ Memory file exists" -ForegroundColor Green
} else {
Write-Host "❌ Memory file not found" -ForegroundColor Red
}
# Test main script
$mainScript = ".\scripts\main.ps1"
if (Test-Path $mainScript) {
Write-Host "✅ Main script exists" -ForegroundColor Green
} else {
Write-Host "❌ Main script not found" -ForegroundColor Red
}
Write-Host "`nTest completed!" -ForegroundColor Green