Add Object B and self-growth canons with Cursor ledger rules; refresh connectivity and VPN runbooks.

Track day metrics/anamnesis HARD rules under .cursor/rules and personal docs so each screening updates days/{KIN}, dynamics, and big-data ledger.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
ahauimix
2026-07-26 10:22:56 +08:00
parent 4bc9629a09
commit 0238aa7c02
214 changed files with 121312 additions and 388 deletions

View File

@@ -0,0 +1,20 @@
// PAC для exit-via-ru / exit-via-ru-do: весь внешний трафик через SOCKS на 10809.
// Локальные/LAN — напрямую (Joplin, роутер, localhost).
function FindProxyForURL(url, host) {
if (isPlainHostName(host) ||
host === "localhost" ||
shExpMatch(host, "127.*") ||
shExpMatch(host, "10.*") ||
shExpMatch(host, "192.168.*") ||
shExpMatch(host, "172.16.*") ||
shExpMatch(host, "172.17.*") ||
shExpMatch(host, "172.18.*") ||
shExpMatch(host, "172.19.*") ||
shExpMatch(host, "172.2*.*") ||
shExpMatch(host, "172.30.*") ||
shExpMatch(host, "172.31.*") ||
shExpMatch(host, "*.local")) {
return "DIRECT";
}
return "SOCKS5 127.0.0.1:10809; SOCKS 127.0.0.1:10809";
}