From 1917f194367a1d7e4d082897d70463c771caed71 Mon Sep 17 00:00:00 2001 From: Howard Enos Date: Thu, 25 Jun 2026 21:24:02 -0700 Subject: [PATCH] chore: untrack session scratch files (.bd2_*, .watch_targets.py) Swept in by git add -A during /save; added to .gitignore. .watch_targets.py kept on disk (in use by background reconnect watcher). --- .bd2_ids.txt | 7 ------- .bd2_res.txt | 0 .gitignore | 2 ++ .watch_targets.py | 5 ----- 4 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 .bd2_ids.txt delete mode 100644 .bd2_res.txt delete mode 100644 .watch_targets.py diff --git a/.bd2_ids.txt b/.bd2_ids.txt deleted file mode 100644 index bd103932..00000000 --- a/.bd2_ids.txt +++ /dev/null @@ -1,7 +0,0 @@ -f269118d-93cf-48a3-96ae-5a9acaf154c9 BD:DESKTOP-KQSL232 -811e345f-ba2f-45a4-bd6e-4dd1ccf37793 BD:DESKTOP-MD6UQI3 -455d1284-febc-4280-b4df-f44be051120e BD:DESKTOP-TRCIEJA -3baffe0b-f17a-46b6-a418-60cf3802c11b BD:SALES4-PC -b0cb408c-a699-4737-a772-525503e2dab1 BD:Laptop4 -a4623704-ec6e-4855-8a37-e463734f4293 INSTALL:DESKTOP-F94M8UT -d1806aa3-9711-4f54-9a41-fd334efd8fd3 INSTALL:NurseAssist diff --git a/.bd2_res.txt b/.bd2_res.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/.gitignore b/.gitignore index c4f8156f..bd3bd5ae 100644 --- a/.gitignore +++ b/.gitignore @@ -133,3 +133,5 @@ temp/ # Transient coord softfail queue (machine-local; drains on /sync, never committed) .claude/coord-queue.jsonl .boot.bin +.bd2_* +.watch_targets.py diff --git a/.watch_targets.py b/.watch_targets.py deleted file mode 100644 index a6ef6804..00000000 --- a/.watch_targets.py +++ /dev/null @@ -1,5 +0,0 @@ -import json,sys -d=json.load(sys.stdin) -t={'DESKTOP-F94M8UT','NurseAssist','DESKTOP-KQSL232','DESKTOP-MD6UQI3','DESKTOP-TRCIEJA','SALES4-PC','Laptop4'} -on=[a['hostname'] for a in d if a.get('hostname') in t and a.get('status')=='online'] -print(','.join(sorted(on)))