Homoglyph Detector Byte-level forensic analysis of code changes to detect Unicode homoglyph substitutions — characters that look identical to ASCII in every editor and diff tool but have different codepoints, silently breaking string comparisons, dictionary lookups, and identifier resolution. Purpose Homoglyph attacks (related to CVE-2021-42574 "Trojan Source") are the highest-stealth trojan technique. A Cyrillic (U+0440) looks identical to a Latin (U+0070) in every font, editor, and diff viewer. The only way to detect it is byte-level analysis via . This skill pipes git diffs through and sca…