missing-imports

Code uses a symbol that isn't imported, or imports a symbol that doesn't exist in the source module.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "missing-imports" with this command: npx skills add mvogt99/missing-imports

missing-imports

The 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.

Symptoms

  • Code uses 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.
  • Static analysis flags unused-import alongside undefined-name — common when the agent copy-pastes between files.

What to do

  • For every symbol used in the diff, confirm there is a corresponding import in the same file or that the symbol is defined locally.
  • For every new import, verify the target module actually exports that name. Open the module if needed.
  • Don't guess at package layout. When unsure, read the package's package.json exports, __init__.py, or equivalent.
  • Run the static checker (tsc, mypy, pyright, etc.) after every non-trivial change. Missing imports almost always surface there.
  • Remove unused imports in the same change so the surface stays honest — stale imports mask real failures.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Spicy Ai Video

Turn a 60-second talking head clip into 1080p high-energy edited videos just by typing what you need. Whether it's turning bland footage into visually intens...

Registry SourceRecently Updated
Coding

Video Maker Fast

Get polished MP4 videos ready to post, without touching a single slider. Upload your video clips (MP4, MOV, AVI, WebM, up to 500MB), say something like "trim...

Registry SourceRecently Updated
Coding

Generation Generator

generate text prompts or clips into AI generated videos with this skill. Works with MP4, MOV, PNG, JPG files up to 500MB. marketers, content creators, social...

Registry SourceRecently Updated
Coding

Editor On Android

Get edited MP4 clips ready to post, without touching a single slider. Upload your video clips (MP4, MOV, AVI, WebM, up to 500MB), say something like "trim th...

Registry SourceRecently Updated