From c3056ac4897af0ba3899417935b5febd821523eb Mon Sep 17 00:00:00 2001 From: Sam & Claude Date: Sun, 21 Jun 2026 20:12:45 +0200 Subject: [PATCH] fix(docs): mask Tailscale IPs with placeholder variables Replace live 100.x IPs with , per SOUL.md convention. Removed stale device IP from network-ssh-wifi-diagnostics reference. --- skills/iso-visuals/SKILL.md | 2 +- .../references/network-ssh-wifi-diagnostics.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/iso-visuals/SKILL.md b/skills/iso-visuals/SKILL.md index 685de51..ab386e2 100644 --- a/skills/iso-visuals/SKILL.md +++ b/skills/iso-visuals/SKILL.md @@ -100,7 +100,7 @@ Requires ImageMagick (`ImageMagick7` in the ISO package list; `magick` or │ Clawdie OS │ │ │ │ hostname osa │ -│ tailscale 100.72.229.63 │ +│ tailscale ${OSA_TS_IP} │ │ colibri socket 9190 │ │ jail 15.0-RELEASE-p4 │ │ │ diff --git a/skills/systematic-debugging/references/network-ssh-wifi-diagnostics.md b/skills/systematic-debugging/references/network-ssh-wifi-diagnostics.md index 03aee4c..77e02c5 100644 --- a/skills/systematic-debugging/references/network-ssh-wifi-diagnostics.md +++ b/skills/systematic-debugging/references/network-ssh-wifi-diagnostics.md @@ -81,7 +81,7 @@ LOG="$HOME/.local/state/hermes/net-tests/ssh-wifi-$(date +%Y%m%d-%H%M%S).log" ss -nti '( sport = :22 or dport = :22 )' 2>/dev/null || true GW=$(ip route show default | awk '{print $3; exit}') - for target in "$GW" 1.1.1.1 ${DOMEDOG_TS_IP} 100.110.184.11; do + for target in "$GW" 1.1.1.1 ${DOMEDOG_TS_IP}; do echo "--- ping $target" ping -c 30 -i 0.2 "$target" 2>&1 | tail -8 || true done