sync: auto-sync from HOWARD-HOME at 2026-07-04 22:38:31

Author: Howard Enos
Machine: HOWARD-HOME
Timestamp: 2026-07-04 22:38:31
This commit is contained in:
2026-07-04 22:39:06 -07:00
parent c8036d7e67
commit a0998fa255
2 changed files with 5 additions and 0 deletions

1
.gps-imc-listener.json Normal file
View File

@@ -0,0 +1 @@
{"command_type": "powershell", "command": "New-NetFirewallRule -DisplayName GPSDIAG-TMP -Direction Inbound -Protocol TCP -LocalPort 8765 -Action Allow | Out-Null\n$l = New-Object System.Net.HttpListener\n$l.Prefixes.Add('http://+:8765/')\n$l.Start()\n$sw = [Diagnostics.Stopwatch]::StartNew()\n$got = @()\nwhile ($sw.Elapsed.TotalSeconds -lt 150 -and $got.Count -lt 1) {\n $ar = $l.BeginGetContext($null, $null)\n if ($ar.AsyncWaitHandle.WaitOne(5000)) {\n $ctx = $l.EndGetContext($ar)\n $got += $ctx.Request.Url.Query\n $b = [Text.Encoding]::UTF8.GetBytes('ok')\n $ctx.Response.OutputStream.Write($b, 0, $b.Length)\n $ctx.Response.Close()\n }\n}\n$l.Stop()\nRemove-NetFirewallRule -DisplayName GPSDIAG-TMP | Out-Null\nif ($got.Count -eq 0) { Write-Output 'NO-CONTACT' } else { $got | ForEach-Object { [uri]::UnescapeDataString($_) } }", "timeout_seconds": 200}

View File

@@ -19,6 +19,10 @@ Categories (the `[type]` tag): _(none)_ = skill/command execution failure ·
<!-- Append entries below this line -->
2026-07-05 | Howard-Home | gururmm-build | server cargo check failed (rc=101) [ctx: os=windows]
2026-07-05 | Howard-Home | bash/env | [friction] reused $TOKEN/$RMM across Bash calls after fresh shell reset - curl HTTP:000; fix: re-auth or token file per call [ctx: ref=CLAUDE.md-windows-env-persistence]
2026-07-05 | Howard-Home | gps-rmm-audit/backup-verification | [correction] framed backup billed-qty vs machines-backing-up as 'under-covered' implying machines need backup added; correct = backup targets are a deliberate per-client choice (server/data machine), qty mismatches are BILLING questions for Mike/Winter, never guess which machine needs backup or deploy it
2026-07-05 | Howard-Home | output-formatting | [correction] used emoji checkmarks/warning symbols in verification tables despite the CLAUDE.md NO EMOJIS rule; rendered as ? in Howard's terminal. Correct = ASCII markers [OK]/[WARNING] only