关于
This skill addresses a common pitfall in Python package refactoring where wildcard imports fail to export internal functions. When moving modules to new locations, standard compatibility shims often break because Python's 'import *' mechanism excludes names starting with an underscore. This skill provides a systematic approach to identifying these missing dependencies and generating explicit exports, allowing developers to reorganize codebases without breaking internal functionality or existing import paths.