Install
openclaw skills install missing-importsCode uses a symbol that isn't imported, or imports a symbol that doesn't exist in the source module.
openclaw skills install missing-importsThe generated code uses a name that hasn't been brought into scope, or imports from a module that doesn't export the named symbol. A guaranteed runtime NameError / ReferenceError / ImportError.
Foo but Foo is never imported.from mod import X where mod exists but does not export X.import { x } from "pkg" with no matching named export.unused-import alongside undefined-name — common when the agent copy-pastes between files.package.json exports, __init__.py, or equivalent.