@symbeon/orbit-devops 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/.agent/skills/orbit-devops/SKILL.md +54 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +44 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +33 -0
  4. package/.github/PULL_REQUEST_TEMPLATE.md +51 -0
  5. package/.github/dependabot.yml +64 -0
  6. package/ARCHITECTURE.json +98 -0
  7. package/AdditionalCleanup.ps1 +70 -0
  8. package/AnalyzeCursor.ps1 +25 -0
  9. package/AppDataAudit.ps1 +16 -0
  10. package/CHANGELOG.md +83 -0
  11. package/CONFIG_LOG.md +35 -0
  12. package/CONTRIBUTING.md +203 -0
  13. package/CategorizedScan.ps1 +37 -0
  14. package/CategorizedScan_v2.ps1 +38 -0
  15. package/CheckAnaconda.ps1 +9 -0
  16. package/CheckAppData.ps1 +8 -0
  17. package/CheckAppDataRoaming.ps1 +8 -0
  18. package/CheckBackupSizes.ps1 +17 -0
  19. package/CheckCacheSize.ps1 +17 -0
  20. package/CheckNodeModules.ps1 +17 -0
  21. package/CheckSpace.ps1 +2 -0
  22. package/CheckTargetSizes.ps1 +17 -0
  23. package/CheckUserRoot.ps1 +10 -0
  24. package/DeepStorageAnalysis.ps1 +76 -0
  25. package/DetailedBloatAudit.ps1 +55 -0
  26. package/DetailedBloatAudit_v3.ps1 +50 -0
  27. package/DetailedProcessAudit.ps1 +43 -0
  28. package/DiagnosticoSistema.ps1 +155 -0
  29. package/ExecuteCleanup.ps1 +73 -0
  30. package/ExecuteTotalCleanup.ps1 +86 -0
  31. package/FinalCategorizedReport.ps1 +49 -0
  32. package/FinalDeepDive.ps1 +34 -0
  33. package/ForcePush.ps1 +31 -0
  34. package/ForensicRAMAudit.ps1 +26 -0
  35. package/ForensicRAMAudit_UTF8.ps1 +32 -0
  36. package/ForensicRAMAudit_v2.ps1 +25 -0
  37. package/ForensicRAMAudit_v3.ps1 +25 -0
  38. package/FullRAMReport_Local.txt +0 -0
  39. package/FullRAMReport_UTF8.txt +1400 -0
  40. package/GiantHunt.ps1 +26 -0
  41. package/GlobalRAMAudit.ps1 +57 -0
  42. package/LICENSE +21 -0
  43. package/MeasureSuspects.ps1 +17 -0
  44. package/NEXT_STEPS.md +35 -0
  45. package/Orbit.ps1 +40 -0
  46. package/PostRebootCleanup.ps1 +60 -0
  47. package/RAMAudit.ps1 +41 -0
  48. package/RAMAudit_v2.ps1 +24 -0
  49. package/README.md +58 -0
  50. package/RootAudit.ps1 +14 -0
  51. package/RunDiagnostic.ps1 +119 -0
  52. package/RunDiagnosticSimple.ps1 +42 -0
  53. package/SECURITY.md +67 -0
  54. package/SETUP.md +34 -0
  55. package/SafeSurgery.ps1 +69 -0
  56. package/ScanPrograms.ps1 +13 -0
  57. package/ScanRepoWaste.ps1 +45 -0
  58. package/ScanStorage.ps1 +41 -0
  59. package/ScanTargets.ps1 +39 -0
  60. package/SimpleSurgicalAudit.ps1 +22 -0
  61. package/SurgicalBloatAudit.ps1 +35 -0
  62. package/SurgicalScan.ps1 +28 -0
  63. package/SystemDiagnostic.ps1 +588 -0
  64. package/SystemDiagnosticSimple.ps1 +141 -0
  65. package/SystemDiagnosticUser.ps1 +92 -0
  66. package/SystemDiagnosticUser_v2.ps1 +36 -0
  67. package/UserAudit.ps1 +23 -0
  68. package/bin/orbit.js +99 -0
  69. package/check_environment.ps1 +104 -0
  70. package/deep_downloads_org_log.txt +15 -0
  71. package/diagnostic_error.txt +83 -0
  72. package/diskpart_log.txt +0 -0
  73. package/docs/DEPRECATED_USERNAME_CHANGE.md +138 -0
  74. package/docs/PROJECT_STRUCTURE.md +156 -0
  75. package/downloads_audit.txt +32 -0
  76. package/downloads_audit_clear.txt +27 -0
  77. package/downloads_org_log.txt +85 -0
  78. package/mcp/README.md +61 -0
  79. package/mcp/server.py +109 -0
  80. package/package.json +39 -0
  81. package/scripts/mac/diagnostic.sh +46 -0
  82. package/scripts/stack/Push-Stack.ps1 +41 -0
  83. package/scripts/stack/SnapshotEnv.ps1 +22 -0
  84. package/scripts/utils/DeepOrganizeDownloads.ps1 +82 -0
  85. package/scripts/utils/OrganizeDownloads.ps1 +40 -0
  86. package/scripts/wsl/CompactWSL.ps1 +60 -0
  87. package/setup_environment.ps1 +59 -0
  88. package/sizes.txt +6 -0
  89. package/verify_environment.ps1 +46 -0
@@ -0,0 +1,46 @@
1
+ #!/bin/bash
2
+
3
+ # WinDiagKit for Mac - Diagnostic Script
4
+ # Saves report to Desktop or current dir
5
+
6
+ TIMESTAMP=$(date +"%Y-%m-%d_%H-%M-%S")
7
+ REPORT_FILE="./Mac_Diagnostic_$TIMESTAMP.txt"
8
+
9
+ echo "=== System Diagnostic Report (Mac) ===" > "$REPORT_FILE"
10
+ echo "Date: $(date)" >> "$REPORT_FILE"
11
+ echo "" >> "$REPORT_FILE"
12
+
13
+ echo "gathering system info..."
14
+
15
+ # 1. System Info
16
+ echo "--- Hardware Information ---" >> "$REPORT_FILE"
17
+ sysctl hw.model hw.ncpu hw.memsize >> "$REPORT_FILE"
18
+ sw_vers >> "$REPORT_FILE"
19
+ echo "" >> "$REPORT_FILE"
20
+
21
+ # 2. Disk Usage
22
+ echo "--- Disk Usage ---" >> "$REPORT_FILE"
23
+ df -h / >> "$REPORT_FILE"
24
+ echo "" >> "$REPORT_FILE"
25
+
26
+ # 3. Memory Stats
27
+ echo "--- Memory Statistics ---" >> "$REPORT_FILE"
28
+ vm_stat >> "$REPORT_FILE"
29
+ echo "" >> "$REPORT_FILE"
30
+
31
+ # 4. Top Processes (CPU)
32
+ echo "--- Top 5 CPU Consumers ---" >> "$REPORT_FILE"
33
+ ps -Aceo pid,pcpu,comm -r | head -n 6 >> "$REPORT_FILE"
34
+ echo "" >> "$REPORT_FILE"
35
+
36
+ # 5. Home Directory Size
37
+ echo "--- User Home Directory Size ---" >> "$REPORT_FILE"
38
+ du -sh "$HOME" 2>/dev/null >> "$REPORT_FILE"
39
+ echo "" >> "$REPORT_FILE"
40
+
41
+ # 6. Large Cache Folders
42
+ echo "--- Large Cache Folders (>500M) ---" >> "$REPORT_FILE"
43
+ du -sh "$HOME/Library/Caches"/* 2>/dev/null | grep "[0-9]G\|[5-9][0-9][0-9]M" >> "$REPORT_FILE"
44
+
45
+ echo "Diagnostic complete! Report saved to: $REPORT_FILE"
46
+ cat "$REPORT_FILE"
@@ -0,0 +1,41 @@
1
+ # Orbit-DevOps: Sync Stack to GitHub
2
+ # Generates a fresh dev-stack.json and pushes it to the remote repository
3
+
4
+ $stackRepoPath = "c:\Users\João\Desktop\PROJETOS\stack"
5
+ $orbitStackPath = "$env:USERPROFILE\Desktop\PROJETOS\04_DEVELOPER_TOOLS\orbit-devops\dev-stack.json"
6
+
7
+ Write-Host "🪐 Orbit-DevOps: Stack Sync" -ForegroundColor Cyan
8
+
9
+ # 1. Generate Fresh Snapshot
10
+ Write-Host "Generating fresh environment snapshot..." -ForegroundColor Yellow
11
+ if (-not (Get-Command winget -ErrorAction SilentlyContinue)) {
12
+ Write-Error "Winget is not installed."
13
+ exit 1
14
+ }
15
+
16
+ # Export temporarily to orbit folder then move (safest way to ensure it exists)
17
+ winget export -o "$stackRepoPath\dev-stack.json" --include-versions --force
18
+
19
+ if (Test-Path "$stackRepoPath\dev-stack.json") {
20
+ Write-Host "Snapshot successfully generated in stack repo." -ForegroundColor Green
21
+ }
22
+ else {
23
+ Write-Error "Failed to generate snapshot."
24
+ exit 1
25
+ }
26
+
27
+ # 2. Git Sync
28
+ Write-Host "Syncing with GitHub..." -ForegroundColor Yellow
29
+ Set-Location -Path $stackRepoPath
30
+
31
+ $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm"
32
+ git add .
33
+ git commit -m "Auto-sync: Environment update ($timestamp)"
34
+ git push origin main
35
+
36
+ if ($LASTEXITCODE -eq 0) {
37
+ Write-Host "`n🚀 Environment Stack successfully synced to GitHub!" -ForegroundColor Green
38
+ }
39
+ else {
40
+ Write-Error "Git sync failed. Check your internet connection and permissions."
41
+ }
@@ -0,0 +1,22 @@
1
+ # Orbit-DevOps: Environment Snapshot
2
+ # Exports installed packages (Winget) to a JSON stack file
3
+
4
+ param (
5
+ [string]$OutputPath = ".\dev-stack.json"
6
+ )
7
+
8
+ Write-Host "🪐 Orbit-DevOps: Environment Snapshot" -ForegroundColor Cyan
9
+
10
+ if (-not (Get-Command winget -ErrorAction SilentlyContinue)) {
11
+ Write-Error "Winget is not installed or not in PATH."
12
+ exit 1
13
+ }
14
+
15
+ Write-Host "Exporting installed packages..." -ForegroundColor Yellow
16
+ try {
17
+ winget export -o $OutputPath --include-versions
18
+ Write-Host "Snapshot saved to: $OutputPath" -ForegroundColor Green
19
+ Write-Host "To restore on another machine: winget import -i $OutputPath" -ForegroundColor Gray
20
+ } catch {
21
+ Write-Error "Failed to export packages: $_"
22
+ }
@@ -0,0 +1,82 @@
1
+ # Orbit-DevOps: Deep Organize Downloads
2
+ # Reorganizes subdirectories in the Downloads folder into categorized subfolders
3
+
4
+ $downloadsPath = "$env:USERPROFILE\Downloads"
5
+ $logPath = ".\deep_downloads_org_log.txt"
6
+
7
+ function Write-Log {
8
+ param($Message)
9
+ $line = "[$(Get-Date -Format 'HH:mm:ss')] $Message"
10
+ Write-Output $line
11
+ $line | Out-File -FilePath $logPath -Append -Encoding utf8
12
+ }
13
+
14
+ function Ensure-Directory {
15
+ param($Path)
16
+ if (-not (Test-Path $Path)) {
17
+ Write-Log "Creating directory: $Path"
18
+ New-Item -ItemType Directory -Path $Path -Force | Out-Null
19
+ }
20
+ }
21
+
22
+ Write-Log "=== STARTING DEEP DOWNLOADS ORGANIZATION ==="
23
+
24
+ # 1. Project Consolidation
25
+ $projectTarget = Join-Path $downloadsPath "Develop\Projects"
26
+ Ensure-Directory $projectTarget
27
+
28
+ $projects = @(
29
+ @{ Name = "Missão com análise de arquivos enviados"; NewName = "DocSync-Legacy" },
30
+ @{ Name = "th3m1s-core" },
31
+ @{ Name = "AGILIZE-AI" },
32
+ @{ Name = "GuardFlow_AgilizeAI" },
33
+ @{ Name = "KRONOS" },
34
+ @{ Name = "GuardDrive" },
35
+ @{ Name = "SYMBEON DESIGN" }
36
+ )
37
+
38
+ foreach ($proj in $projects) {
39
+ $src = Join-Path $downloadsPath $proj.Name
40
+ if (Test-Path $src) {
41
+ $newName = if ($proj.NewName) { $proj.NewName } else { $proj.Name }
42
+ $dest = Join-Path $projectTarget $newName
43
+ Write-Log "Moving Project: $($proj.Name) -> Develop\Projects\$newName"
44
+ Move-Item -Path $src -Destination $dest -Force
45
+ }
46
+ }
47
+
48
+ # 2. Installer Cleanup
49
+ $installerTarget = Join-Path $downloadsPath "Applications\Extracted"
50
+ Ensure-Directory $installerTarget
51
+
52
+ $installers = @(
53
+ "Nitro Sense_Acer_5.0.1473_20241009_W11x64_A",
54
+ "Reset_L3250",
55
+ "temp_installers"
56
+ )
57
+
58
+ foreach ($inst in $installers) {
59
+ $src = Join-Path $downloadsPath $inst
60
+ if (Test-Path $src) {
61
+ $dest = Join-Path $installerTarget $inst
62
+ Write-Log "Moving Installer: $inst -> Applications\Extracted\$inst"
63
+ Move-Item -Path $src -Destination $dest -Force
64
+ }
65
+ }
66
+
67
+ # 3. Game Data
68
+ $gameTarget = Join-Path $downloadsPath "Archives\GameData"
69
+ Ensure-Directory $gameTarget
70
+
71
+ $games = @("The_matrix")
72
+
73
+ foreach ($game in $games) {
74
+ $src = Join-Path $downloadsPath $game
75
+ if (Test-Path $src) {
76
+ $dest = Join-Path $gameTarget $game
77
+ Write-Log "Moving Game Data: $game -> Archives\GameData\$game"
78
+ Move-Item -Path $src -Destination $dest -Force
79
+ }
80
+ }
81
+
82
+ Write-Log "=== DEEP ORGANIZATION COMPLETE ==="
@@ -0,0 +1,40 @@
1
+ # Orbit-DevOps: Organize Downloads
2
+ # Categorizes files in the Downloads folder into subfolders
3
+
4
+ $downloadsPath = "$env:USERPROFILE\Downloads"
5
+ $logPath = ".\downloads_org_log.txt"
6
+
7
+ $mapping = @{
8
+ "Archives" = @(".zip", ".rar", ".7z", ".tar", ".gz", ".iso")
9
+ "Applications" = @(".exe", ".msi", ".bin", ".appinstaller")
10
+ "Documents" = @(".pdf", ".txt", ".csv", ".tex", ".md", ".html", ".docx", ".xlsx", ".pptx")
11
+ "Images" = @(".png", ".jpg", ".jpeg", ".svg", ".gif", ".webp")
12
+ "Media" = @(".mp4", ".mov", ".avi", ".mkv", ".mp3", ".wav")
13
+ "Develop" = @(".py", ".json", ".js", ".ts", ".go", ".c", ".cpp")
14
+ }
15
+
16
+ function Write-Log {
17
+ param($Message)
18
+ $line = "[$(Get-Date -Format 'HH:mm:ss')] $Message"
19
+ Write-Output $line
20
+ $line | Out-File -FilePath $logPath -Append -Encoding utf8
21
+ }
22
+
23
+ Write-Log "=== STARTING DOWNLOADS ORGANIZATION ==="
24
+
25
+ foreach ($folder in $mapping.Keys) {
26
+ $targetDir = Join-Path $downloadsPath $folder
27
+ if (-not (Test-Path $targetDir)) {
28
+ Write-Log "Creating directory: $folder"
29
+ New-Item -ItemType Directory -Path $targetDir -Force | Out-Null
30
+ }
31
+
32
+ $extensions = $mapping[$folder]
33
+ Get-ChildItem -Path $downloadsPath -File | Where-Object { $extensions -contains $_.Extension.ToLower() } | ForEach-Object {
34
+ $dest = Join-Path $targetDir $_.Name
35
+ Write-Log "Moving: $($_.Name) -> $folder"
36
+ Move-Item -Path $_.FullName -Destination $dest -Force
37
+ }
38
+ }
39
+
40
+ Write-Log "=== ORGANIZATION COMPLETE ==="
@@ -0,0 +1,60 @@
1
+ # Orbit-DevOps: WSL Compact Tool
2
+ # Compacts WSL2 virtual disks (ext4.vhdx) to reclaim space
3
+ # REQUIRES: Administrator Privileges
4
+
5
+ param (
6
+ [switch]$DryRun
7
+ )
8
+
9
+ Write-Host "🪐 Orbit-DevOps: WSL Compact Tool" -ForegroundColor Cyan
10
+ Write-Host "Scanning for WSL distributions..." -ForegroundColor Gray
11
+
12
+ # Get all .vhdx files for WSL distros
13
+ # Typically in %LOCALAPPDATA%\Packages\...\LocalState\ext4.vhdx
14
+
15
+ $wslPath = "$env:LOCALAPPDATA\Packages"
16
+ $vhdxFiles = Get-ChildItem -Path $wslPath -Recurse -Filter "ext4.vhdx" -ErrorAction SilentlyContinue
17
+
18
+ if ($vhdxFiles.Count -eq 0) {
19
+ Write-Host "No WSL2 distributions found in standard location." -ForegroundColor Yellow
20
+ exit
21
+ }
22
+
23
+ foreach ($disk in $vhdxFiles) {
24
+ $sizeGB = [math]::Round($disk.Length / 1GB, 2)
25
+ Write-Host "`nFound Disk: $($disk.Name)" -ForegroundColor Green
26
+ Write-Host "Location: $($disk.DirectoryName)" -ForegroundColor Gray
27
+ Write-Host "Current Size: $sizeGB GB" -ForegroundColor Magenta
28
+
29
+ if ($DryRun) {
30
+ Write-Host "[Dry Run] Would compact this disk." -ForegroundColor Yellow
31
+ continue
32
+ }
33
+
34
+ Write-Host "Prepare to compact? (WSL will be shut down) [Y/N]" -ForegroundColor Yellow -NoNewline
35
+ $confirm = Read-Host
36
+ if ($confirm -ne "Y" -and $confirm -ne "y") { continue }
37
+
38
+ Write-Host "Stopping WSL..." -ForegroundColor Cyan
39
+ wsl --shutdown
40
+
41
+ $diskPath = $disk.FullName
42
+ $script = "select vdisk file=`"$diskPath`"`nattach vdisk readonly`ncompact vdisk`ndetach vdisk"
43
+ $scriptPath = "$env:TEMP\wsl_compact.txt"
44
+ $script | Out-File -FilePath $scriptPath -Encoding ASCII
45
+
46
+ Write-Host "Compacting... (This may take a while)" -ForegroundColor Cyan
47
+ try {
48
+ diskpart /s $scriptPath
49
+
50
+ $newSize = (Get-Item $diskPath).Length / 1GB
51
+ $saved = $sizeGB - $newSize
52
+ Write-Host "Compact Complete!" -ForegroundColor Green
53
+ Write-Host "New Size: $([math]::Round($newSize, 2)) GB (Saved: $([math]::Round($saved, 2)) GB)" -ForegroundColor Green
54
+ } catch {
55
+ Write-Host "Error compacting disk: $_" -ForegroundColor Red
56
+ Write-Host "Make sure you are running as Administrator." -ForegroundColor Red
57
+ } finally {
58
+ Remove-Item $scriptPath -ErrorAction SilentlyContinue
59
+ }
60
+ }
@@ -0,0 +1,59 @@
1
+ # Script de Configuração Inicial
2
+ # setup_environment.ps1
3
+
4
+ # Configurar PYTHONPATH
5
+ $symbeonPath = "C:\Users\JX\Desktop\PROJETOS\PLATAFORMAS\SYMBEON"
6
+ [System.Environment]::SetEnvironmentVariable('PYTHONPATH', $symbeonPath, [System.EnvironmentVariableTarget]::User)
7
+
8
+ # Criar ambiente virtual Python se não existir
9
+ $venvPath = ".venv"
10
+ if (-not (Test-Path $venvPath)) {
11
+ Write-Host "Criando ambiente virtual Python..." -ForegroundColor Cyan
12
+ python -m venv $venvPath
13
+ Write-Host "Ambiente virtual criado com sucesso!" -ForegroundColor Green
14
+ }
15
+
16
+ # Gerar relatório de configuração
17
+ $configLog = @"
18
+ # Relatório de Configuração do Ambiente
19
+ Data: $(Get-Date -Format 'yyyy-MM-dd HH:mm')
20
+
21
+ ## Configurações Realizadas
22
+ 1. PYTHONPATH configurado para: $symbeonPath
23
+ 2. Ambiente virtual Python criado em: $venvPath
24
+
25
+ ## Estado do Ambiente
26
+ - Python: $(python --version 2>&1)
27
+ - Rust: $(rustc --version 2>&1)
28
+ - WSL: Instalado
29
+
30
+ ## Próximos Passos
31
+ 1. Instalar ferramentas essenciais via Microsoft Store:
32
+ - App Installer (para winget)
33
+ - Windows Terminal (recomendado)
34
+
35
+ 2. Após instalar App Installer, executar:
36
+ ```powershell
37
+ winget install --id Git.Git
38
+ winget install --id Microsoft.VisualStudioCode
39
+ winget install --id OpenJS.NodeJS.LTS
40
+ winget install --id Docker.DockerDesktop
41
+ ```
42
+
43
+ 3. Configurar ambiente virtual:
44
+ ```powershell
45
+ .\.venv\Scripts\Activate.ps1
46
+ pip install fastapi uvicorn pandas numpy torch transformers pytest black mypy ruff
47
+ ```
48
+
49
+ ## Observações
50
+ - WSL já está instalado, facilitará a configuração do Docker posteriormente
51
+ - Rust está configurado corretamente com cargo no PATH
52
+ - Python está instalado e configurado corretamente
53
+ "@
54
+
55
+ # Salvar relatório
56
+ $configLog | Out-File -FilePath "$env:USERPROFILE\Desktop\DIAGNOSTIC_BACKUP\CONFIG_LOG.md" -Encoding utf8
57
+
58
+ Write-Host "`nConfigurações iniciais aplicadas. Verifique o relatório em CONFIG_LOG.md" -ForegroundColor Green
59
+ Get-Content "$env:USERPROFILE\Desktop\DIAGNOSTIC_BACKUP\CONFIG_LOG.md"
package/sizes.txt ADDED
@@ -0,0 +1,6 @@
1
+ === TARGETED FILE SIZES ===
2
+ ext4.vhdx : 0.12 GB
3
+ docker_data.vhdx : 24.75 GB
4
+ The_Matrix_Path_of_Neo_Win_ISO_EN.7z : 3.42 GB
5
+ The_Matrix_Path_of_Neo_Win_Files_EN.7z : 0.65 GB
6
+ 560.81-notebook-win10-win11-64bit-international-dch-whql.exe : 0.65 GB
@@ -0,0 +1,46 @@
1
+ # Script de Verificação do Ambiente
2
+ Write-Host "=== Verificação do Ambiente de Desenvolvimento ===" -ForegroundColor Cyan
3
+ Write-Host "Execute este script após reiniciar o terminal`n"
4
+
5
+ Write-Host "Verificando ferramentas instaladas:`n"
6
+
7
+ function Test-Tool {
8
+ param(
9
+ [string]$Name,
10
+ [string]$Command,
11
+ [string]$ExpectedOutput
12
+ )
13
+ Write-Host "$Name: " -NoNewline
14
+ try {
15
+ $result = Invoke-Expression $Command
16
+ Write-Host "✅ Instalado" -ForegroundColor Green
17
+ Write-Host " Versão: $result"
18
+ }
19
+ catch {
20
+ Write-Host "❌ Não encontrado ou não disponível" -ForegroundColor Red
21
+ }
22
+ }
23
+
24
+ # Ativar ambiente virtual Python
25
+ try {
26
+ .\.venv\Scripts\Activate.ps1
27
+ Write-Host "Ambiente Virtual Python: ✅ Ativo" -ForegroundColor Green
28
+ }
29
+ catch {
30
+ Write-Host "Ambiente Virtual Python: ❌ Erro ao ativar" -ForegroundColor Red
31
+ }
32
+
33
+ Write-Host "`nVerificando ferramentas principais:"
34
+ Test-Tool "Python" "python --version" "3.11.5"
35
+ Test-Tool "Git" "git --version" ""
36
+ Test-Tool "VS Code" "code --version" ""
37
+ Test-Tool "Node.js" "node --version" ""
38
+ Test-Tool "Docker" "docker --version" ""
39
+ Test-Tool "Rust" "rustc --version" ""
40
+
41
+ Write-Host "`nPróximos passos:"
42
+ Write-Host "1. Feche este terminal"
43
+ Write-Host "2. Abra um novo terminal"
44
+ Write-Host "3. Execute este script novamente para confirmar que todas as ferramentas estão disponíveis"
45
+ Write-Host "4. Se alguma ferramenta ainda não for encontrada, verifique se o computador precisa ser reiniciado"
46
+