Initial commit: AgentForceTest Salesforce DX project

This commit is contained in:
2026-01-23 20:27:42 +05:30
commit 5f4ee0506f
41 changed files with 10998 additions and 0 deletions

22
reset-terminal.ps1 Normal file
View File

@@ -0,0 +1,22 @@
# Reset VSCode Terminal Script
# This script clears the terminal and resets common issues
Write-Host "Resetting VSCode Terminal Environment..." -ForegroundColor Green
# Clear the host
Clear-Host
# Reset PowerShell console
Write-Host "Clearing console..." -ForegroundColor Yellow
Write-Host ""
# Show current directory
Write-Host "Current Directory: $(Get-Location)" -ForegroundColor Cyan
# List current files to verify everything is accessible
Write-Host "Current Files:" -ForegroundColor Yellow
Get-ChildItem -Force | Format-Table -AutoSize
Write-Host ""
Write-Host "Terminal reset complete!" -ForegroundColor Green
Write-Host "You can now try running commands again." -ForegroundColor Green