What problem does it solve? Mixing Jac and Python code raises practical questions: how to import PyPI packages from Jac, how to handle untyped Python values crossing into Jac's strict type system, how to subclass metaclass-driven Python types, and how to call Jac modules from plain Python scripts. This Skill provides the patterns and pitfalls for both directions of the bridge. ## Core Features & Use Cases - PyPI imports from Jac: Import numpy, pandas, sklearn, or local .py files with standard import syntax, including stub installation for typed packages via PEP 561. - Inline Python and class archetypes: Embed legacy Python verbatim in ::py:: blocks, or use the class archetype with static has to subclass metaclass-driven Python types like Pygments lexers. - Jac from Python scripts: Import .jac modules directly via the auto-registered import hook and use jaclang.lib primitives (Node, Walker, spawn, root, connect), or convert with jac2py. - Use Case: A team migrating a Python codebase to Jac keeps a tested validation function in a ::py:: block, imports sklearn for a regression model, and exposes the resulting graph walkers to a Python-only analytics script through jaclang.lib. ## Quick Start Ask the assistant to show how to import a PyPI package like numpy into a Jac file and call it from a with entry block.