sync: Multi-project updates - SolverBot, GuruRMM, Dataforth
SolverBot: - Inject active project path into agent system prompts so agents know which directory to scope file operations to GuruRMM: - Bump agent version to 0.6.0 - Add serde aliases for PowerShell/ClaudeTask command types - Add typed CommandType enum on server for proper serialization - Support claude_task command type in send_command API Dataforth: - Fix SCP space-escaping in Sync-FromNAS.ps1 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
9
tmp_readlog.ps1
Normal file
9
tmp_readlog.ps1
Normal file
@@ -0,0 +1,9 @@
|
||||
# Read sync log - last 60 lines
|
||||
try {
|
||||
$log = [System.IO.File]::ReadAllText("\\192.168.0.6\C$\Shares\test\scripts\sync-from-nas.log")
|
||||
$logLines = $log -split "`n"
|
||||
Write-Output "=== SYNC LOG (last 60 lines) ==="
|
||||
$logLines | Select-Object -Last 60 | ForEach-Object { Write-Output $_ }
|
||||
} catch {
|
||||
Write-Output "ERROR reading log: $_"
|
||||
}
|
||||
Reference in New Issue
Block a user