文件预览

sitecustomize.py

查看 Founder Signal 技能包中的文件内容。

文件内容

src/sitecustomize.py

"""Package-local Python startup hygiene for installed Founder Signal skill runs."""

from __future__ import annotations

import sys

# Keep installed skill trees clean during normal use. Runtime data belongs under
# FOUNDER_SIGNAL_HOME / ~/.founder-signal, and bytecode caches should not dirty the
# package payload.
sys.dont_write_bytecode = True