What problem does it solve? Pretrained models generate obsolete Mojo syntax for Python interoperability, producing code that fails to compile. This Skill provides current, correct patterns for bidirectional Mojo-Python interop so generated code works with the latest Mojo toolchain. ## Core Features & Use Cases - Python from Mojo: Import Python modules, convert between PythonObject and Mojo types with the py= keyword, build Python collections, evaluate Python code, and handle exceptions as Mojo Error. - Mojo from Python: Build Python extension modules with PythonModuleBuilder, export functions and types with methods, support kwargs, and auto-compile via mojo.importer. - Use Case: You want to expose a high-performance Mojo Counter struct to Python. The Skill shows the PyInit_<module> export pattern, def_method registration with manual or auto downcast, and compilation with mojo build --emit shared-lib. ## Quick Start Write a Mojo Python extension module that exports an add function and show me how to import it from Python using mojo.importer.