feat(mma): Complete Phase 3 context features (injection, dependency mapping, logging)

This commit is contained in:
2026-02-25 20:21:12 -05:00
parent 9c229e14fd
commit 221374eed6
3 changed files with 85 additions and 27 deletions

View File

@@ -37,7 +37,7 @@ SYSTEM PROMPT: $SelectedPrompt
USER PROMPT: $Prompt
--------------------------------------------------
"@
$LogEntry | Out-File -FilePath $LogFile -Append
$LogEntry | Out-File -FilePath $LogFile -Append -Encoding utf8
if ($ShowContext) {
Write-Host "`n[MMA ORCHESTRATOR] Spawning Tier: $Role" -ForegroundColor Cyan
@@ -59,7 +59,7 @@ try {
$parsed = $cleanJsonString | ConvertFrom-Json
# Log response
"RESPONSE:`n$($parsed.response)" | Out-File -FilePath $LogFile -Append
"RESPONSE:`n$($parsed.response)" | Out-File -FilePath $LogFile -Append -Encoding utf8
# Output only the clean response text
Write-Output $parsed.response