Sync: Complete project state with all MEGA SPRINT V1-V3 features and Codex stubs

This commit is contained in:
renato97
2026-04-08 17:58:47 -03:00
parent c9d3528900
commit 6d080d43b3
372 changed files with 189715 additions and 8590 deletions

28
FIX_PERMISSIONS_ADMIN.ps1 Normal file
View File

@@ -0,0 +1,28 @@
# FIX PERMISSIONS - EJECUTAR COMO ADMINISTRADOR
# Clic derecho > Ejjecutar con PowerShell (Administrador)
Write-Host "========================================" -ForegroundColor Cyan
Write-Host "FIX PERMISSIONS - Sprint Granular" -ForegroundColor Cyan
Write-Host "========================================" -ForegroundColor Cyan
$filesToFix = @(
"C:\ProgramData\Ableton\Live 12 Suite\Resources\MIDI Remote Scripts\AbletonMCP_AI\AbletonMCP_AI\MCP_Server\coherence_analyzer.py",
"C:\ProgramData\Ableton\Live 12 Suite\Resources\MIDI Remote Scripts\KIMI_K2_ACTIVE_HANDOFF.md"
)
foreach ($file in $filesToFix) {
if (Test-Path $file) {
$fileName = Split-Path $file -Leaf
Write-Host "Fixing: $fileName" -ForegroundColor Yellow
icacls $file /grant Everyone:F
} else {
Write-Host "NOT FOUND: $file" -ForegroundColor Red
}
}
Write-Host "========================================" -ForegroundColor Green
Write-Host "Done! Ahora ejecuta en WSL:" -ForegroundColor Green
Write-Host "opencode (para reiniciar)" -ForegroundColor White
Write-Host "========================================" -ForegroundColor Green
Read-Host "Press Enter to exit"